From 8dbfab2274d2d8a5539bf4c6f9b375c0939a917b Mon Sep 17 00:00:00 2001 From: Jelle Licht Date: Tue, 23 Aug 2016 04:19:27 +0200 Subject: [PATCH] gnu: Add coffee-script. * gnu/packages/coffee-script.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. coffeescript crap To coffee-script 0.6 :D (boot10) We be stuck <0.7.0 Bootstrapped to 22 formatting changes Added up to 25 busy with backporting # support Bootstrapv28 Added CS bootstrap to version 1.0.0 prettify and final fixes --- gnu/local.mk | 1 + gnu/packages/coffee-script.scm | 843 +++++++++++++ ...feescript-backport-default-arguments.patch | 700 +++++++++++ .../coffeescript-backport-destructuring.patch | 90 ++ ...backport-dollar-string-interpolation.patch | 45 + ...cript-backport-executable-class-body.patch | 1054 +++++++++++++++++ ...backport-explicit-constructor-syntax.patch | 59 + ...t-backport-forall-loop-syntax-change.patch | 123 ++ .../coffeescript-backport-if-else-chain.patch | 53 + ...ckport-implicit-object-function-call.patch | 65 + ...ipt-backport-leading-then-expression.patch | 27 + ...eescript-backport-lexer-inof-forinof.patch | 145 +++ ...coffeescript-backport-not-instanceof.patch | 103 ++ ...offeescript-backport-optional-braces.patch | 520 ++++++++ ...offeescript-backport-prefixed-splats.patch | 65 + ...coffeescript-backport-range-literals.patch | 1017 ++++++++++++++++ ...escript-backport-static-value-syntax.patch | 74 ++ 17 files changed, 4984 insertions(+) create mode 100644 gnu/packages/coffee-script.scm create mode 100644 gnu/packages/patches/coffeescript-backport-default-arguments.patch create mode 100644 gnu/packages/patches/coffeescript-backport-destructuring.patch create mode 100644 gnu/packages/patches/coffeescript-backport-dollar-string-interpolation.patch create mode 100644 gnu/packages/patches/coffeescript-backport-executable-class-body.patch create mode 100644 gnu/packages/patches/coffeescript-backport-explicit-constructor-syntax.patch create mode 100644 gnu/packages/patches/coffeescript-backport-forall-loop-syntax-change.patch create mode 100644 gnu/packages/patches/coffeescript-backport-if-else-chain.patch create mode 100644 gnu/packages/patches/coffeescript-backport-implicit-object-function-call.patch create mode 100644 gnu/packages/patches/coffeescript-backport-leading-then-expression.patch create mode 100644 gnu/packages/patches/coffeescript-backport-lexer-inof-forinof.patch create mode 100644 gnu/packages/patches/coffeescript-backport-not-instanceof.patch create mode 100644 gnu/packages/patches/coffeescript-backport-optional-braces.patch create mode 100644 gnu/packages/patches/coffeescript-backport-prefixed-splats.patch create mode 100644 gnu/packages/patches/coffeescript-backport-range-literals.patch create mode 100644 gnu/packages/patches/coffeescript-backport-static-value-syntax.patch diff --git a/gnu/local.mk b/gnu/local.mk index b8c5378a1..b9d2a11c1 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -70,6 +70,7 @@ GNU_SYSTEM_MODULES = \ %D%/packages/ci.scm \ %D%/packages/cmake.scm \ %D%/packages/code.scm \ + %D%/packages/coffee-script.scm \ %D%/packages/commencement.scm \ %D%/packages/compression.scm \ %D%/packages/conkeror.scm \ diff --git a/gnu/packages/coffee-script.scm b/gnu/packages/coffee-script.scm new file mode 100644 index 000000000..ef8831073 --- /dev/null +++ b/gnu/packages/coffee-script.scm @@ -0,0 +1,843 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2016 Jelle Licht +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (gnu packages coffee-script) + #:use-module ((guix licenses) #:select (expat)) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix git-download) + #:use-module (guix build-system node) + #:use-module (guix build-system ruby) + #:use-module (guix build-system gnu) + #:use-module (gnu packages) + #:use-module (gnu packages ruby) + #:use-module (gnu packages node) + #:use-module (gnu packages base) + #:use-module (gnu packages linux)) + +(define (coffee-script-build-helper-wrap file lib-directory) + "Generates a post-`install' phase named `wrap-binary' that extends the +NODE_PATH environment variable with LIB-DIRECTORY for executable /FILE." + `(add-after 'install 'wrap-binary + (lambda* (#:key inputs outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bin (string-append out "/" ,file)) + (dir (string-append out + "/lib/node_modules/coffee-script/" + ,lib-directory)) + ;; FIXME: Use unbundled jison + (jison-vendor + (string-append + out + "/lib/node_modules/coffee-script/vendor/jison/lib"))) + (wrap-program bin + `("NODE_PATH" ":" prefix (,dir ,jison-vendor))) + #t)))) + + +(define (coffee-script-build-helper-backport backport-files) + "Generates a post-`unpack' phase named `backport-node' that disables +deprecated Node-js concepts used in the list of files BACKPORT-FILES." + `(add-after 'unpack 'backport-node + (lambda _ + (substitute* ',backport-files + (("#!/usr/bin/env node --") "#!/usr/bin/env node") + (("require\\.paths.*$") "")) + #t))) ;;to prevent NODE_PATH shenanigans + +(define (delete-generated-js-phase dir) + "Generates a post-`unpack' phase named `delete-generated-files' that removes +any (pre-compiled) JavaScript files in DIR." + `(add-after 'unpack 'delete-generated-files + (lambda _ + ;;FIXME: Regenerate parser, instead of keeping it + (copy-file (string-append ,dir "/parser.js") + (string-append ,dir "/parser.js.keep")) + (for-each + (lambda (file) + (format #t "deleting generated JavaScript file '~a'~%" file) + (delete-file file)) + (find-files ,dir ".*\\.js$")) + (copy-file (string-append ,dir "/parser.js.keep") + (string-append ,dir "/parser.js")) + (delete-file (string-append ,dir "/parser.js.keep")) + #t))) + +(define* (coffee-script-build-phase coffeescript-compiler target-dir #:optional (flags #f)) + "Generates a replacement `build' phase that uses a COFFEESCRIPT-COMPILER to +compile coffeescript sources in TARGET-DIR. Compiler FLAGS are passed on to +COFFEESCRIPT-COMPILER if available." + `(replace 'build + (lambda* (#:key inputs #:allow-other-keys) + (let* ((cs (assoc-ref inputs "coffee-script")) + (coffee (string-append cs "/" ,coffeescript-compiler))) + ,(if flags + `(zero? (apply system* coffee ,flags "-o" ,target-dir (find-files "src" ".*\\.coffee$"))) + `(zero? (apply system* coffee "-o" ,target-dir (find-files "src" ".*\\.coffee$")))))))) + +(define-public coffee-script-boot0 + (let ((commit "bedc005d67c1dc52a0a4909c439a6f6347738213")) ;;last ruby commit + (package ;(inherit coffee-script-boot0) + (name "coffee-script-boot0") + (version (string-append "0.3.2." (string-take commit 7))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jashkenas/coffeescript.git") + (commit commit))) + (sha256 + (base32 + "01yy0l5f4a51jxg2bxc6c69b08c72jz41ldgksvzsk0jh3cg0s8f")))) + (build-system ruby-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-gemspec-date + (lambda _ + ;;XXX: Fix incorrect date in gemspec + (substitute* "coffee-script.gemspec" + (("2010-2-8") "2010-02-08"))))))) + (synopsis "CoffeeScript is a little language that compiles into +JavaScript.") + (description "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.") + (home-page "http://jashkenas.github.com/coffee-script/") + (license expat)))) + +(define-public coffee-script-boot1 + (let ((commit + "e4bb6c91e70cd8386d76040d65e0669dd6d9a255")) + (package (inherit coffee-script-boot0) + (name "coffee-script-boot1") + (version (string-append "0.3.2." (string-take commit 7))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jashkenas/coffeescript.git") + (commit commit))) + (sha256 + (base32 + "0qq10i2znsa6xjp6p465qhyr3d2g4dr2zkph5jagnvgpnbgajpfm")) + (modules '((guix build utils))) + (snippet + '(begin + ;; Remove narwhal support + (delete-file "src/narwhal/coffee-script.coffee") + ;; Not easy to determine what node version was used, so + ;; translate the only incompatible function + (substitute* "src/command_line.coffee" + (("fs\\.cat") + "fs.readFile")))))) + (build-system node-build-system) + (arguments + `(#:tests? #f + #:global? #t + #:node ,node-0.1.29 + #:phases + (modify-phases %standard-phases + ,(delete-generated-js-phase "lib/coffee_script") + ,(coffee-script-build-helper-wrap "bin/node_coffee" + "lib/coffee_script") + ,(coffee-script-build-phase "bin/coffee" + "lib/coffee_script")))) + (inputs + `(("node" ,node-0.1.29))) + (native-inputs + `(("coffee-script" ,coffee-script-boot0) + ("ruby" ,ruby)))))) + +(define-public coffee-script-boot2 + (let ((commit "4ec7514d1056ff05b56ada79ba66ab2876a948e0")) + (package (inherit coffee-script-boot1) + (name "coffee-script-boot2") + (version (string-append "0.5.2." (string-take commit 7))) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jashkenas/coffeescript.git") + (commit commit))) + (sha256 + (base32 + "08cnyj62qr7vn08kqayn3krpp224vs5856g2r556mbn7mg9018kk")) + (modules '((guix build utils))) + (snippet + '(begin + ;; Remove narwhal support + (delete-file "src/narwhal.coffee"))))) + (arguments + `(#:tests? #f + #:global? #t + #:node ,node-0.1.30 + #:phases + (modify-phases %standard-phases + ,(coffee-script-build-helper-backport '("bin/coffee" "bin/cake")) + ,(delete-generated-js-phase "lib") + ,(coffee-script-build-helper-wrap "bin/coffee" "lib") + ,(coffee-script-build-phase "bin/node_coffee" "lib")))) + (inputs + `(("node" ,node-0.1.30))) + (native-inputs + `(("coffee-script" ,coffee-script-boot1)))))) + +(define-public coffee-script-0.5.3 + (package (inherit coffee-script-boot2) + (name "coffee-script") + (version "0.5.3") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/jashkenas/coffeescript/archive/" + version ".tar.gz")) + (sha256 + (base32 + "0zaflcffgb2l1linp1z9bk9ch6dq47kcj9lpm3iis9f1na1iknar")) + (modules '((guix build utils))) + (snippet + '(begin + ;; Remove narwhal support + (delete-file "src/narwhal.coffee"))))) + (arguments + `(#:tests? #f + #:global? #t + #:node ,node-0.1.30 + #:phases + (modify-phases %standard-phases + ,(coffee-script-build-helper-backport '("bin/coffee" "bin/cake")) + ,(delete-generated-js-phase "lib") + ,(coffee-script-build-helper-wrap "bin/coffee" "lib") + ,(coffee-script-build-phase "bin/coffee" "lib" "-c")))) + (native-inputs + `(("coffee-script" ,coffee-script-boot2))))) + +(define-public coffee-script-0.5.4 + (package (inherit coffee-script-boot2) + (name "coffee-script") + (version (string-append "0.5.4")) + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/jashkenas/coffeescript/archive/" + version ".tar.gz")) + (sha256 + (base32 + "05n7yq1qs8h4934mkln1k577yg6f5dn77sdbznva47gf4srsggna")))) + (arguments + `(#:tests? #f + #:global? #t + #:node ,node-0.1.31 + #:phases + (modify-phases %standard-phases + ,(coffee-script-build-helper-backport '("bin/coffee" "bin/cake")) + ,(delete-generated-js-phase "lib") + ,(coffee-script-build-helper-wrap "bin/coffee" "lib") + ,(coffee-script-build-phase "bin/coffee" "lib" "-c")))) + (inputs + `(("node" ,node-0.1.31))) + (native-inputs + `(("coffee-script" ,coffee-script-0.5.3))))) + +(define-public coffee-script-boot3 + (let ((commit "08341286a3f75a7be9faa0e942340e717a391fb8")) + (package (inherit coffee-script-0.5.4) + (name "coffee-script-boot3") + (version (string-append "0.5.4." (string-take commit 7))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jashkenas/coffeescript.git") + (commit commit))) + (sha256 + (base32 + "1cc0qd2qs46yrkwmlccy8byslzb9xkjx2knxwmjp2fq8rv06flrk")))) + (native-inputs + `(("coffee-script" ,coffee-script-0.5.4)))))) + +(define (coffee-replicate package-object key name) + (let ((ni (package-native-inputs package-object))) + (package (inherit package-object) + (name name) + (native-inputs + (cons `(,key ,package-object) ni))))) + +(define* (coffee-script-bootstrap previous nname #:optional (node #f)) + (lambda (commit version hash) + (let ((node (or node + (cadr (assoc "node" (package-inputs previous))))) + (revision "1")) + (package + (inherit previous) + (name nname) + (version (string-append version "-" revision "." + (string-take commit 7))) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jashkenas/coffeescript.git") + (commit commit))) + (sha256 (base32 hash)) + (file-name + (string-append "coffeescript-" version "-checkout")))) + (arguments + `(#:tests? #f + #:global? #t + #:node ,node + #:phases + (modify-phases %standard-phases + ,(coffee-script-build-helper-backport '("bin/coffee" "bin/cake")) + ,(delete-generated-js-phase "lib") + ,(coffee-script-build-helper-wrap "bin/coffee" "lib") + ,(coffee-script-build-phase "bin/coffee" "lib" "-c")))) + (inputs + `(("node" ,node))) + (native-inputs + `(("coffee-script" ,previous))))))) + +(define* (patch-sources #:key previous (snippet #f) (patch #f)) + (let ((base-origin (package-source previous)) + (patches (if patch (search-patches patch) '()))) + (package (inherit previous) + (source + (origin (inherit base-origin) + (modules '((guix build utils))) + (snippet snippet) + (patches patches)))))) + +(define boot4 (coffee-script-bootstrap coffee-script-boot3 + "coffee-script-boot4")) +(define-public coffee-script-boot4 + (boot4 "47682de0f02d5d444fbce34e3af02500fe8b9aa8" + "0.5.4" + "01r35xfd5mvv66zlm2lmhdj0dfjib58w8nlacyavq4cs6ycskc56")) + +(define boot5 + (coffee-script-bootstrap coffee-script-boot4 "coffee-script-boot5")) +(define-public coffee-script-boot5 + (boot5 + "90f2e0dbb9aeafb9ad4c37b886b924d09dff896f" + "0.5.4" + "1j9g35kgcwk6a0p17rxg9p3gw49ch5qx6wj8ypwf0wj419i4msd9")) + +(define boot6 + (coffee-script-bootstrap coffee-script-boot5 "coffee-script-boot6")) +(define-public coffee-script-boot6 + (boot6 + "b72641693df90e4ffee37c2c98f7d8675d68ce0e" + "0.5.5" + "00aws51vp3kak29kwbjzzbf5n1hwrymsljfjc8qh4dhvndcz61rl")) + +(define boot7 + (coffee-script-bootstrap coffee-script-boot6 "coffee-script-boot7")) +(define-public coffee-script-boot7 + (boot7 + "cbfe7f5822607e67563c98fe73e97b1475b702ac" + "0.5.5" + "1w9ml532nj3i9xklm9klfrwllapck84j5j8v4ymiblh0cg4lbbfm")) + +(define boot8 + (coffee-script-bootstrap coffee-script-boot7 "coffee-script-boot8")) +(define-public coffee-script-boot8 + (boot8 + "177ec92c399504fdff0bbea5e30fa474c7579d8f" + "0.5.6" + "02d8xj557nygvax6sv9gmhq8p2kfw7y5w1gfz2wc0imbxlw148dy")) + +(define boot9 + (coffee-script-bootstrap coffee-script-boot8 "coffee-script-boot9")) +(define-public coffee-script-boot9 + (boot9 + "572aa4e98f6b983b5775b03884d89a2f5c17fac9" + "0.5.6" + "15aw9lbrldwwpyq9fb6s48h0p91w73q67zqlw034i85dr0bxah43")) + +(define boot10 + (coffee-script-bootstrap coffee-script-boot9 "coffee-script-boot10")) +(define-public coffee-script-boot10 + (boot10 + "c067808b54e8f7d022156959e3aa47217cd96f88" + "0.6.0" + "1six1n162xhsjk2h49m4ccw0wma32z2fl4y8pib72s4lk060zcx3")) + +(define boot11 + (coffee-script-bootstrap coffee-script-boot10 + "coffee-script-boot11" + node-0.1.90)) +(define-public coffee-script-boot11 + (boot11 + "8317960f813e2eefd1271748730c5b621975571c" + "0.6.0" + "124wqh0w2i7p8q75qyjylxb4pdhw1z06z5wh6bvjsa47jvlh8d3i")) + +(define boot12 + (coffee-script-bootstrap coffee-script-boot11 "coffee-script-boot12")) +(define-public coffee-script-boot12 + (boot12 + "a894db35fd609b944df56375c3f0702fa70fe3ca" + "0.6.1" + "19cbqp8hjcrdlzxrb9lxzx9lz72y8pydz5v8m6731pdvgrr1b75p")) + +(define boot13 + (coffee-script-bootstrap coffee-script-boot12 "coffee-script-boot13")) +(define-public coffee-script-boot13 + (boot13 + "b746c9018e6c4c7d1c1028816f0b96c6b90c04ce" + "0.6.1" + "1vwnqi1m2h31m03xn7flp949x5wn7dqp3rp31dn05z54i1p3gxpi")) + +(define boot14 + (coffee-script-bootstrap coffee-script-boot13 "coffee-script-boot14" node-0.1.95)) +(define-public coffee-script-boot14 + (boot14 + "a133e018cc4d27eeec19a8296a7a0ce6f5d6552a" + "0.6.2" + "08dbl57b2l9pzfdmsdal7l33mg09ps3i1xb6qbg0s6j3r6ym51yd")) + +(define boot15 + (coffee-script-bootstrap coffee-script-boot14 + "coffee-script-boot15" + node-0.1.98)) +(define coffee-script-boot15-helper + (boot15 + "0222d90fa3c21c3f4c33f64e8e964d5366744cfc" + "0.6.2" + "18rn6s7xxjmsd3696c0gpvm1m028lcmd2kyladybw5las4d3cp0z")) + +(define-public coffee-script-boot15 + (patch-sources #:previous coffee-script-boot15-helper + #:snippet + '(begin + (substitute* '("src/lexer.coffee" "src/rewriter.coffee") + (("loop\n") + "while true\n"))))) + +(define boot17 + (coffee-script-bootstrap coffee-script-boot15 "coffee-script-boot17")) +(define-public coffee-script-boot17 + (boot17 + "4b284f6687920734c42792233b03ea0402e7cd5a" + "0.6.2" + "0bgqmhxw0vyhibdgi1pkljdx8qd548jcap9vd1fhrhm4r5kj625w")) + +(define-public coffee-script-boot18 + (patch-sources + #:previous coffee-script-boot17 + #:snippet '(begin + (substitute* "src/lexer.coffee" + (("^([ ]+)@tokens\\.pop\\(\\)\n" all spaces) + (string-append spaces + "@tokens.pop() if @tag() isnt '@'\n")))))) + +(define boot19 + (coffee-script-bootstrap coffee-script-boot18 "coffee-script-boot19")) +(define-public coffee-script-boot19 + (boot19 + "0fcfb80be47d42703270a77cb311daf276e4d70a" + "0.6.2" + "075xqmyivhfnv4v53jqz6migrxygx4ri4cikgaykvi9gy3dhli78")) + + +(define boot20 + (coffee-script-bootstrap coffee-script-boot19 "coffee-script-boot20")) +(define-public coffee-script-boot20 + (boot20 + "7c426db36a1e15d61b56a87739571909033c7d62" + "0.7.0" + "0ibsy7lcygvkg0pf1a4g19jh70f5hj8x0jyqybnxc1ix403in1rz")) + +(define boot21 + (coffee-script-bootstrap coffee-script-boot20 "coffee-script-boot21")) +(define coffee-script-boot21-helper + (boot21 + "7d79d73b58576658c88ff59df8fc45cab5cff6dc" + "0.7.0" + "1cppvxnvqip5yy7ms4p98xyydycg0iczshl75rbk1bm58n9cpca4")) + +(define-public coffee-script-boot21 + (patch-sources #:previous coffee-script-boot21-helper + #:snippet + '(begin + (substitute* '("src/grammar.coffee" + "src/coffee-script.coffee" + "src/lexer.coffee" + "src/nodes.coffee") + (("(new [a-zA-Z]+)\n" all identifier) + (string-append identifier "()\n")) + (("\\((new [a-zA-Z]+)\\)" all identifier) + (string-append "(" identifier "())")))))) + +(define boot22 + (coffee-script-bootstrap coffee-script-boot21 "coffee-script-boot22")) +(define-public coffee-script-boot22 + (boot22 + "2a932597e4d9f1adc8b8788f2ea2885728c78db1" + "0.7.2" + "0ynprqg3frhm6lw1aflmjzv7gsxy6g357j8ydi0rm3hczc40pgv3")) + +(define boot23 + (coffee-script-bootstrap coffee-script-boot22 "coffee-script-boot23")) +(define coffee-script-boot23-helper + (boot23 + "72c4efbc3966a9717eb2a79a6eeded64f30a4206" + "0.7.2" + "1iafv758mrh1b78qaciny87mk35qcd5r2m08nr19jmxi1bpxk0bf")) +(define-public coffee-script-boot23 + (patch-sources #:previous coffee-script-boot23-helper + #:snippet + '(begin + (substitute* "src/cake.coffee" + (("([ ]+)for all name, task of tasks" all spaces) + (string-append spaces "for name, task of tasks"))) + (substitute* "src/helpers.coffee" + (("for all key, val") "for key, val"))))) + +(define boot24 + (coffee-script-bootstrap coffee-script-boot23 + "coffee-script-boot24" + node-0.1.101)) +(define-public coffee-script-boot24 + (boot24 + "88847df70b5b21854616c0a14dad38ba4f426b91" + "0.7.2" + "17kb30sp85cddxbv20vc2nj2i2rk1j5fb7b6d704dpb9v7pa05py")) + +(define boot25 + (coffee-script-bootstrap coffee-script-boot24 "coffee-script-boot25")) +(define coffee-script-boot25-helper + (boot25 + "f9dff6ffc48d32dee6ff1f7748ce028d1ff88252" + "0.7.2" + "0smpnx42bx4bkvaa5km32klsxpwrad2viz990c7g19v10igcpg6c")) +(define-public coffee-script-boot25 + (patch-sources #:previous coffee-script-boot25-helper + #:snippet + '(begin + (substitute* '("src/coffee-script.coffee" + "src/command.coffee" + "src/lexer.coffee" + "src/nodes.coffee" + "src/rewriter.coffee") + (("or=") "||=") + (("and=") "&&="))) + #:patch "coffeescript-backport-optional-braces.patch")) + +(define boot26 + (coffee-script-bootstrap coffee-script-boot25 "coffee-script-boot26")) +(define coffee-script-boot26-helper + (boot26 + "9c8a22832cfa589a2f4bf7c340505c2754d09cdc" + "0.7.2" + "1ndfclfbdpqqpf18ixmx8h5v2ssh87hndhchxg5zwk0np3rydz3c")) +(define-public coffee-script-boot26 + (patch-sources #:previous coffee-script-boot26-helper + #:patch + "coffeescript-backport-dollar-string-interpolation.patch")) + +(define boot27 + (coffee-script-bootstrap coffee-script-boot26 "coffee-script-boot27")) +(define-public coffee-script-boot27 + (boot27 + "9be1453886beefe2fd1096568eb28d6942810a96" + "0.7.2" + "1586pfw4nn3sfkcqkbyisna2cwympd8cyqp4dz7s6ggi773nvqm8")) + +(define boot28 + (coffee-script-bootstrap coffee-script-boot27 "coffee-script-boot28")) +(define coffee-script-boot28-helper + (boot28 + "c9421cbfcdecad656e4be4002bc851303c83ca84" + "0.7.2" + "17v1c2p3yf2caplyn5xq7sk667yrh1f5g5m8wb6z6zclmahnfy52")) +(define-public coffee-script-boot28 + (patch-sources #:previous coffee-script-boot28-helper + #:patch "coffeescript-backport-prefixed-splats.patch")) + +(define boot29 + (coffee-script-bootstrap coffee-script-boot28 "coffee-script-boot29")) +(define coffee-script-boot29-helper + (boot29 + "129e950c59bde7fa529baf510f93e619a033a767" + "0.9.1" + "11r6mbnjvcyfmhz5xi9w9d9h0xhl12b6jh7w1i960jlzv8xrfb5v")) +(define-public coffee-script-boot29 + (patch-sources #:previous coffee-script-boot29-helper + #:patch + "coffeescript-backport-implicit-object-function-call.patch")) + +(define boot30 + (coffee-script-bootstrap coffee-script-boot29 "coffee-script-boot30")) +(define-public coffee-script-boot30 + (boot30 + "4ddd65a4c4df5baa4911bf095246a7829e9acca6" + "0.9.1" + "13zw49b373rkz1ynhwgb41q0n6rdazwbc23crmzgypdsm7cp7lw5")) + +(define boot31 + (coffee-script-bootstrap coffee-script-boot30 "coffee-script-boot31")) +(define coffee-script-boot31-helper + (boot31 + "87693d84cb9f0286503d36093c9e9e8ec6450a51" + "0.9.1" + "156rs10q5pg53aqz6xf97vmcz6cjsg02m3m5lgxmlivsrmrfx93x")) +(define-public coffee-script-boot31 + (patch-sources #:previous coffee-script-boot31-helper + #:patch "coffeescript-backport-not-instanceof.patch")) + +(define boot32 + (coffee-script-bootstrap coffee-script-boot31 "coffee-script-boot32")) +(define-public coffee-script-boot32 + (boot32 + "b2313beaf4a77649506371eb1ece1f4aea1ad23b" + "0.9.4" + "02kp2584ixxvwy1afsxrnpfwds66yqrcc6gbgvw4f03ygcx321hn")) + +(define boot33 + (coffee-script-bootstrap coffee-script-boot32 "coffee-script-boot33")) +(define-public coffee-script-boot33 + (boot33 + "493fa7d8fe3bdc604e2b7420c084b0873564a0a6" + "0.9.4" + "047qnx6qvrb3rypdl9ksn3pvr2hp9wgj99mw1six7gqhyc7ybf0l")) + +(define boot34 + (coffee-script-bootstrap coffee-script-boot33 "coffee-script-boot34")) +(define coffee-script-boot34-helper + (boot34 + "380bee97ddbab7677d83dc1018bf46b6f27fa3d9" + "0.9.4" + "0mn0gkp5hgmnv130vgr8affiidhk1ybr9xr2r4ah241v61563lis")) +(define-public coffee-script-boot34 + (patch-sources #:previous coffee-script-boot34-helper + #:patch "coffeescript-backport-lexer-inof-forinof.patch")) + +(define boot35 + (coffee-script-bootstrap coffee-script-boot34 "coffee-script-boot35")) +(define coffee-script-boot35-helper + (boot35 + "acafb1b53a9197555a6e5d38a08b884efd78c643" + "0.9.4" + "1ml8haprj0akifvnd26lsijp78s42j80bq77wh8rpamiv50bkqmf")) +(define-public coffee-script-boot35 + (patch-sources #:previous coffee-script-boot35-helper + #:patch "coffeescript-backport-if-else-chain.patch")) + +(define boot36 + (coffee-script-bootstrap coffee-script-boot35 "coffee-script-boot36")) +(define-public coffee-script-boot36 + (boot36 + "2f7c076a503ca00c19a0db599512010a89dde951" + "0.9.4" + "1gccmx8wi4s06vdr157h6lmqdqnjajs7brcri2f80pkbkx258frf")) + +(define boot37 + (coffee-script-bootstrap coffee-script-boot36 "coffee-script-boot37")) +(define-public coffee-script-boot37 + (boot37 + "a8da3218838c9ad23703430fe15334903bb9fd5e" + "0.9.4" + "1rngdd4y4f7mghbh7mm221d8ss6qaz9ksbd2hj7qk2gjvxm53y4v")) + +(define boot38 + (coffee-script-bootstrap coffee-script-boot37 "coffee-script-boot38")) +(define-public coffee-script-boot38 + (boot38 + "bfc236fca386a3cc438cfeec9ebc6ed2032c4abf" + "0.9.4" + "0nf4p2mzdbh847f88nxk6i4ynvjk35bz7x3zjq3gvzsilmkq0l4v")) + +(define boot39 + (coffee-script-bootstrap coffee-script-boot38 + "coffee-script-boot39" + node-0.3.0)) +(define coffee-script-boot39-helper + (boot39 + "85c8a6780a84dab00c98d14eaf03c86ca4acf2c8" + "0.9.4" + "1w08a6xc29xx7147ad65f7zf5d72ijj8rv75pz9avbnhy65afp15")) +(define-public coffee-script-boot39 + (patch-sources #:previous coffee-script-boot39-helper + #:patch "coffeescript-backport-destructuring.patch")) + +(define boot40 + (coffee-script-bootstrap coffee-script-boot39 "coffee-script-boot40")) +;; has a broken repl, fixed in later commit +(define-public coffee-script-boot40 + (boot40 + "b32a75858a469aa8971de0ad271fbaba3967e5d3" + "0.9.4" + "0ki3cp8yj1jy5sihyfzc09i7ll1w34pwkrjmmdjkmhhnf2wp6mw2")) + +(define boot41 + (coffee-script-bootstrap coffee-script-boot40 "coffee-script-boot41")) +(define coffee-script-boot41-helper + (boot41 + "b2be475f93f7ac940bc3591626f2db598b5e4cd1" + "0.9.4" + "1kj9wslyxddnb32i72y9jjx4701vjihyg2nk3fh7vj17qh23hd0z")) +(define-public coffee-script-boot41 + (patch-sources #:previous coffee-script-boot41-helper + #:patch "coffeescript-backport-leading-then-expression.patch")) + +(define boot42 + (coffee-script-bootstrap coffee-script-boot41 "coffee-script-boot42")) +(define coffee-script-boot42-helper + (boot42 + "ecd4722b7ce64fbef41d0240d972c76a07d5d127" + "0.9.4" + "0wal456lzsndknca347g8z1va10k5999dd788wc7lrib2zl2yawb")) +(define-public coffee-script-boot42 + (patch-sources #:previous coffee-script-boot42-helper + #:patch "coffeescript-backport-default-arguments.patch")) + +(define boot43 + (coffee-script-bootstrap coffee-script-boot42 "coffee-script-boot43")) +(define coffee-script-boot43-helper + (boot43 + "a2d33112b8cf0d4428b9d423a8edc02a8112e126" + "0.9.4" + "0qqj2jjr9lys9mvzk49hck588yh1qijlv80wab3gyjxpfj8n9anj")) +(define-public coffee-script-boot43 + (patch-sources #:previous coffee-script-boot43-helper + #:patch "coffeescript-backport-executable-class-body.patch")) + +(define boot44 + (coffee-script-bootstrap coffee-script-boot43 "coffee-script-boot44")) +(define-public coffee-script-boot44 + (boot44 + "3059db85156db5556119b3dd4fe72838bbe4798d" + "0.9.4" + "0cpqrnk2c6rpkip407xs4ly3rw0lv47gq6lgf34vsm5bv8spsrh9")) + +(define boot45 + (coffee-script-bootstrap coffee-script-boot44 "coffee-script-boot45")) +(define coffee-script-boot45-helper + (boot45 + "2aedbc2e42cc782e3e6f6b396dc04819ef790ae6" + "0.9.4" + "100qs8x25dbvf4mwj7kqz4j7p1py4917ykqndwmaagg47nyanrxv")) +(define-public coffee-script-boot45 + (patch-sources #:previous coffee-script-boot45-helper + #:patch "coffeescript-backport-static-value-syntax.patch")) + + +(define boot46 + (coffee-script-bootstrap coffee-script-boot45 "coffee-script-boot46")) +(define coffee-script-boot46-helper + (boot46 + "15bdcf79e6bdc90e062de49e5358911d70021a89" + "0.9.4" + "0jmlk3v9nhm1r0npx6dydaw8qsv2sndx0cfqbcpvybrsxhrbxr7q")) +(define-public coffee-script-boot46 + (patch-sources #:previous coffee-script-boot46-helper + #:patch + "coffeescript-backport-explicit-constructor-syntax.patch")) + +(define boot47 + (coffee-script-bootstrap coffee-script-boot46 "coffee-script-boot47")) +(define-public coffee-script-boot47 + (boot47 + "a1aaa4495cc2635db2f3ef12c43d6cfcfcf123a0" + "0.9.4" + "18f05apxvqqz3rdh3sxczdi3vw5nm9q29qs20idifgmf37j8dcr3")) + +(define boot48 + (coffee-script-bootstrap coffee-script-boot47 "coffee-script-boot48")) +(define coffee-script-boot48-helper + (boot48 + "9f708ad0c83628d2e2ffb9c9055816aff44f3fb6" + "0.9.4" + "17bkbxhf5gar8g5ciaqwmxswhz7p0dcp07vycw79wk0v2iq2q974")) +(define-public coffee-script-boot48 + (patch-sources #:previous coffee-script-boot48-helper + #:patch "coffeescript-backport-range-literals.patch")) + +(define boot49 + (coffee-script-bootstrap coffee-script-boot48 "coffee-script-boot49")) +(define-public coffee-script-boot49 + (boot49 + "fc64fa49ac0a0a1f6e51195b5eda377ccde232fc" + "0.9.5" + "00visn0j8zq11i9a5pc9f3ww06zwp8gn9y23linvyvxwh9fmmfyc")) + +(define boot50 + (coffee-script-bootstrap coffee-script-boot49 "coffee-script-boot50")) +(define coffee-script-boot50-helper + (boot50 + "4afa6a2887fe6ef6d1de5bb2a13a2edddc82649b" + "0.9.5" + "1sdl8w63l36hs3v1dj8xcg0kal6i5kmmg33j1rv6wpphn77mwf1j")) +(define-public coffee-script-boot50 + (patch-sources #:previous coffee-script-boot50-helper + #:patch + "coffeescript-backport-forall-loop-syntax-change.patch")) + +(define-public coffee-script + (package + (name "coffee-script") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/jashkenas/coffeescript/archive/" + version ".tar.gz")) + (sha256 + (base32 + "1ssg6lgyr36q7v0p25xpj7wgvz8qxq1cvnlvn5p3r1q8mj93048f")))) + (build-system node-build-system) + (arguments + `(#:global? #t + #:node ,node-0.3.0 + #:phases + (modify-phases %standard-phases + ,(delete-generated-js-phase "lib") + ,(coffee-script-build-phase "bin/coffee" "lib" "-c") + (add-after 'install 'wrap-binary + (lambda* (#:key inputs outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bindir (string-append out "/bin/")) + (libdir + (string-append out + "/lib/node_modules/coffee-script/lib"))) + (for-each (lambda (file) + (wrap-program file + `("NODE_PATH" ":" prefix (,libdir)))) + (find-files bindir)) + #t))) + (replace 'check + (lambda* _ + (zero? (system* "cake" "test"))))))) + (inputs + `(("node" ,node-0.3.0))) + (native-inputs + `(("coffee-script" ,coffee-script-boot50))) + (synopsis "CoffeeScript is a little language that compiles into +JavaScript.") + (description "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.") + (home-page "http://jashkenas.github.com/coffee-script/") + (license expat))) diff --git a/gnu/packages/patches/coffeescript-backport-default-arguments.patch b/gnu/packages/patches/coffeescript-backport-default-arguments.patch new file mode 100644 index 000000000..8b8509d1d --- /dev/null +++ b/gnu/packages/patches/coffeescript-backport-default-arguments.patch @@ -0,0 +1,700 @@ +From 2daa0fedaf50b5ba67e2d2c093839928d741dd67 Mon Sep 17 00:00:00 2001 +From: Jelle Licht +Date: Sun, 21 Aug 2016 07:13:08 +0200 +Subject: [PATCH] [BACKPORT] default arguments +To: guix-devel@gnu.org + +--- + lib/parser.js | 296 +++++++++++++++++++++++++++-------------------------- + src/grammar.coffee | 10 +- + src/lexer.coffee | 17 ++- + src/nodes.coffee | 55 +++++----- + 4 files changed, 195 insertions(+), 183 deletions(-) + +diff --git a/lib/parser.js b/lib/parser.js +index d6478e5..ad7f8ea 100755 +--- a/lib/parser.js ++++ b/lib/parser.js +@@ -2,9 +2,9 @@ + var parser = (function(){ + var parser = {trace: function trace() { }, + yy: {}, +-symbols_: {"error":2,"Root":3,"TERMINATOR":4,"Body":5,"Block":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"Throw":11,"BREAK":12,"CONTINUE":13,"DEBUGGER":14,"Value":15,"Invocation":16,"Code":17,"Operation":18,"Assign":19,"If":20,"Try":21,"While":22,"For":23,"Switch":24,"Extends":25,"Class":26,"Comment":27,"INDENT":28,"OUTDENT":29,"Identifier":30,"IDENTIFIER":31,"AlphaNumeric":32,"NUMBER":33,"STRING":34,"Literal":35,"JS":36,"REGEX":37,"BOOL":38,"Assignable":39,"=":40,"AssignObj":41,"ObjAssignable":42,":":43,"ThisProperty":44,"Parenthetical":45,"RETURN":46,"HERECOMMENT":47,"PARAM_START":48,"ParamList":49,"PARAM_END":50,"FuncGlyph":51,"->":52,"=>":53,"OptComma":54,",":55,"Param":56,"PARAM":57,"...":58,"@":59,"Splat":60,"SimpleAssignable":61,"Accessor":62,"Array":63,"Object":64,"This":65,".":66,"?.":67,"::":68,"Index":69,"INDEX_START":70,"INDEX_END":71,"INDEX_SOAK":72,"INDEX_PROTO":73,"{":74,"AssignList":75,"}":76,"CLASS":77,"EXTENDS":78,"ClassBody":79,"ClassAssign":80,"OptFuncExist":81,"Arguments":82,"SUPER":83,"FUNC_EXIST":84,"CALL_START":85,"CALL_END":86,"ArgList":87,"THIS":88,"[":89,"]":90,"Arg":91,"SimpleArgs":92,"TRY":93,"Catch":94,"FINALLY":95,"CATCH":96,"THROW":97,"(":98,")":99,"WhileSource":100,"WHILE":101,"WHEN":102,"UNTIL":103,"Loop":104,"LOOP":105,"ForBody":106,"ForValue":107,"ForIn":108,"FORIN":109,"BY":110,"ForOf":111,"FOROF":112,"ForTo":113,"TO":114,"FOR":115,"ALL":116,"FROM":117,"SWITCH":118,"Whens":119,"ELSE":120,"When":121,"LEADING_WHEN":122,"IfBlock":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":139,"$accept":0,"$end":1}, +-terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","14":"DEBUGGER","28":"INDENT","29":"OUTDENT","31":"IDENTIFIER","33":"NUMBER","34":"STRING","36":"JS","37":"REGEX","38":"BOOL","40":"=","43":":","46":"RETURN","47":"HERECOMMENT","48":"PARAM_START","50":"PARAM_END","52":"->","53":"=>","55":",","57":"PARAM","58":"...","59":"@","66":".","67":"?.","68":"::","70":"INDEX_START","71":"INDEX_END","72":"INDEX_SOAK","73":"INDEX_PROTO","74":"{","76":"}","77":"CLASS","78":"EXTENDS","83":"SUPER","84":"FUNC_EXIST","85":"CALL_START","86":"CALL_END","88":"THIS","89":"[","90":"]","93":"TRY","95":"FINALLY","96":"CATCH","97":"THROW","98":"(","99":")","101":"WHILE","102":"WHEN","103":"UNTIL","105":"LOOP","109":"FORIN","110":"BY","112":"FOROF","114":"TO","115":"FOR","116":"ALL","117":"FROM","118":"SWITCH","120":"ELSE","122":"LEADING_WHEN","124":"IF","125":"UNLESS","126":"POST_IF","127":"POST_UNLESS","128":"UNARY","129":"-","130":"+","131":"--","132":"++","133":"?","134":"MATH","135":"SHIFT","136":"COMPARE","137":"LOGIC","138":"RELATION","139":"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],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[19,3],[19,5],[41,1],[41,3],[41,5],[41,1],[41,1],[42,1],[42,1],[42,1],[10,2],[10,1],[27,1],[17,5],[17,2],[51,1],[51,1],[54,0],[54,1],[49,0],[49,1],[49,3],[56,1],[56,2],[56,2],[56,3],[60,2],[61,1],[61,2],[61,2],[61,1],[39,1],[39,1],[39,1],[15,1],[15,1],[15,1],[15,1],[62,2],[62,2],[62,2],[62,1],[62,1],[69,3],[69,2],[69,2],[64,4],[75,0],[75,1],[75,3],[75,4],[75,6],[26,2],[26,4],[26,5],[26,7],[26,4],[26,1],[26,3],[26,6],[80,1],[80,3],[80,5],[79,0],[79,1],[79,3],[79,3],[25,3],[16,3],[16,3],[16,1],[16,2],[81,0],[81,1],[82,2],[82,4],[65,1],[65,1],[44,2],[63,2],[63,4],[87,1],[87,3],[87,4],[87,4],[87,6],[91,1],[91,1],[92,1],[92,3],[21,2],[21,3],[21,4],[21,5],[94,3],[11,2],[45,3],[100,2],[100,4],[100,2],[100,4],[22,2],[22,2],[22,2],[22,1],[104,2],[104,2],[23,2],[23,2],[23,2],[107,1],[107,1],[107,1],[108,2],[108,4],[108,4],[108,6],[111,2],[111,4],[113,2],[113,4],[113,4],[113,6],[106,3],[106,5],[106,3],[106,5],[106,4],[106,6],[106,5],[24,5],[24,7],[24,4],[24,6],[119,1],[119,2],[121,3],[121,4],[123,3],[123,3],[123,5],[123,3],[20,1],[20,3],[20,3],[20,3],[20,3],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,5]], ++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,"Value":15,"Invocation":16,"Code":17,"Operation":18,"Assign":19,"If":20,"Try":21,"While":22,"For":23,"Switch":24,"Extends":25,"Class":26,"Comment":27,"INDENT":28,"OUTDENT":29,"Identifier":30,"IDENTIFIER":31,"AlphaNumeric":32,"NUMBER":33,"STRING":34,"Literal":35,"JS":36,"REGEX":37,"BOOL":38,"Assignable":39,"=":40,"AssignObj":41,"ObjAssignable":42,":":43,"ThisProperty":44,"Parenthetical":45,"RETURN":46,"HERECOMMENT":47,"PARAM_START":48,"ParamList":49,"PARAM_END":50,"FuncGlyph":51,"->":52,"=>":53,"OptComma":54,",":55,"Param":56,"...":57,"Splat":58,"SimpleAssignable":59,"Accessor":60,"Array":61,"Object":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","28":"INDENT","29":"OUTDENT","31":"IDENTIFIER","33":"NUMBER","34":"STRING","36":"JS","37":"REGEX","38":"BOOL","40":"=","43":":","46":"RETURN","47":"HERECOMMENT","48":"PARAM_START","50":"PARAM_END","52":"->","53":"=>","55":",","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],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[19,3],[19,5],[41,1],[41,3],[41,5],[41,1],[41,1],[42,1],[42,1],[42,1],[10,2],[10,1],[27,1],[17,5],[17,2],[51,1],[51,1],[54,0],[54,1],[49,0],[49,1],[49,3],[56,1],[56,2],[56,3],[56,1],[56,2],[56,3],[58,2],[59,1],[59,2],[59,2],[59,1],[39,1],[39,1],[39,1],[15,1],[15,1],[15,1],[15,1],[60,2],[60,2],[60,2],[60,1],[60,1],[67,3],[67,2],[67,2],[62,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],[25,3],[16,3],[16,3],[16,1],[16,2],[79,0],[79,1],[80,2],[80,4],[63,1],[63,1],[44,2],[61,2],[61,4],[85,1],[85,3],[85,4],[85,4],[85,6],[90,1],[90,1],[91,1],[91,3],[21,2],[21,3],[21,4],[21,5],[93,3],[11,2],[45,3],[99,2],[99,4],[99,2],[99,4],[22,2],[22,2],[22,2],[22,1],[103,2],[103,2],[23,2],[23,2],[23,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],[24,5],[24,7],[24,4],[24,6],[118,1],[118,2],[120,3],[120,4],[122,3],[122,3],[122,5],[122,3],[20,1],[20,3],[20,3],[20,3],[20,3],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,5]], + performAction: function anonymous(yytext,yyleng,yylineno,yy) { + + var $$ = arguments[5],$0=arguments[5].length; +@@ -127,368 +127,372 @@ case 58:this.$ = [$$[$0-1+1-1]]; + break; + case 59:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); + break; +-case 60:this.$ = new yy.Literal($$[$0-1+1-1]); ++case 60:this.$ = new yy.Param($$[$0-1+1-1]); + break; +-case 61:this.$ = new yy.Param($$[$0-2+1-1], false, true); ++case 61:this.$ = new yy.Param($$[$0-2+1-1], null, true); + break; +-case 62:this.$ = new yy.Param($$[$0-2+2-1], true); ++case 62:this.$ = new yy.Param($$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 63:this.$ = new yy.Param($$[$0-3+2-1], true, true); ++case 63:this.$ = new yy.Param($$[$0-1+1-1], null); + break; +-case 64:this.$ = new yy.Splat($$[$0-2+1-1]); ++case 64:this.$ = new yy.Param($$[$0-2+1-1], null, true); + break; +-case 65:this.$ = new yy.Value($$[$0-1+1-1]); ++case 65:this.$ = new yy.Param($$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 66:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); ++case 66:this.$ = new yy.Splat($$[$0-2+1-1]); + break; +-case 67:this.$ = new yy.Value($$[$0-2+1-1], [$$[$0-2+2-1]]); ++case 67:this.$ = new yy.Value($$[$0-1+1-1]); + break; +-case 68:this.$ = $$[$0-1+1-1]; ++case 68:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); + break; +-case 69:this.$ = $$[$0-1+1-1]; ++case 69:this.$ = new yy.Value($$[$0-2+1-1], [$$[$0-2+2-1]]); + break; +-case 70:this.$ = new yy.Value($$[$0-1+1-1]); ++case 70:this.$ = $$[$0-1+1-1]; + break; +-case 71:this.$ = new yy.Value($$[$0-1+1-1]); ++case 71:this.$ = $$[$0-1+1-1]; + break; +-case 72:this.$ = $$[$0-1+1-1]; ++case 72:this.$ = new yy.Value($$[$0-1+1-1]); + break; + case 73:this.$ = new yy.Value($$[$0-1+1-1]); + break; +-case 74:this.$ = new yy.Value($$[$0-1+1-1]); ++case 74:this.$ = $$[$0-1+1-1]; + break; +-case 75:this.$ = $$[$0-1+1-1]; ++case 75:this.$ = new yy.Value($$[$0-1+1-1]); + break; +-case 76:this.$ = new yy.Accessor($$[$0-2+2-1]); ++case 76:this.$ = new yy.Value($$[$0-1+1-1]); + break; +-case 77:this.$ = new yy.Accessor($$[$0-2+2-1], 'soak'); ++case 77:this.$ = $$[$0-1+1-1]; + break; +-case 78:this.$ = new yy.Accessor($$[$0-2+2-1], 'proto'); ++case 78:this.$ = new yy.Accessor($$[$0-2+2-1]); + break; +-case 79:this.$ = new yy.Accessor(new yy.Literal('prototype')); ++case 79:this.$ = new yy.Accessor($$[$0-2+2-1], 'soak'); + break; +-case 80:this.$ = $$[$0-1+1-1]; ++case 80:this.$ = new yy.Accessor($$[$0-2+2-1], 'proto'); + break; +-case 81:this.$ = new yy.Index($$[$0-3+2-1]); ++case 81:this.$ = new yy.Accessor(new yy.Literal('prototype')); + break; +-case 82:this.$ = yy.extend($$[$0-2+2-1], { ++case 82:this.$ = $$[$0-1+1-1]; ++break; ++case 83:this.$ = new yy.Index($$[$0-3+2-1]); ++break; ++case 84:this.$ = yy.extend($$[$0-2+2-1], { + soak: true + }); + break; +-case 83:this.$ = yy.extend($$[$0-2+2-1], { ++case 85:this.$ = yy.extend($$[$0-2+2-1], { + proto: true + }); + break; +-case 84:this.$ = new yy.Obj($$[$0-4+2-1]); ++case 86:this.$ = new yy.Obj($$[$0-4+2-1]); + break; +-case 85:this.$ = []; ++case 87:this.$ = []; + break; +-case 86:this.$ = [$$[$0-1+1-1]]; ++case 88:this.$ = [$$[$0-1+1-1]]; + break; +-case 87:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); ++case 89:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); + break; +-case 88:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); ++case 90:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); + break; +-case 89:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); ++case 91:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); + break; +-case 90:this.$ = new yy.Class($$[$0-2+2-1]); ++case 92:this.$ = new yy.Class($$[$0-2+2-1]); + break; +-case 91:this.$ = new yy.Class($$[$0-4+2-1], $$[$0-4+4-1]); ++case 93:this.$ = new yy.Class($$[$0-4+2-1], $$[$0-4+4-1]); + break; +-case 92:this.$ = new yy.Class($$[$0-5+2-1], null, $$[$0-5+4-1]); ++case 94:this.$ = new yy.Class($$[$0-5+2-1], null, $$[$0-5+4-1]); + break; +-case 93:this.$ = new yy.Class($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); ++case 95:this.$ = new yy.Class($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); + break; +-case 94:this.$ = new yy.Class(null, null, $$[$0-4+3-1]); ++case 96:this.$ = new yy.Class(null, null, $$[$0-4+3-1]); + break; +-case 95:this.$ = new yy.Class(null, null, new yy.Expressions); ++case 97:this.$ = new yy.Class(null, null, new yy.Expressions); + break; +-case 96:this.$ = new yy.Class(null, $$[$0-3+3-1], new yy.Expressions); ++case 98:this.$ = new yy.Class(null, $$[$0-3+3-1], new yy.Expressions); + break; +-case 97:this.$ = new yy.Class(null, $$[$0-6+3-1], $$[$0-6+5-1]); ++case 99:this.$ = new yy.Class(null, $$[$0-6+3-1], $$[$0-6+5-1]); + break; +-case 98:this.$ = $$[$0-1+1-1]; ++case 100:this.$ = $$[$0-1+1-1]; + break; +-case 99:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'this'); ++case 101:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'this'); + break; +-case 100:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'this'); ++case 102:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'this'); + break; +-case 101:this.$ = []; ++case 103:this.$ = []; + break; +-case 102:this.$ = [$$[$0-1+1-1]]; ++case 104:this.$ = [$$[$0-1+1-1]]; + break; +-case 103:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); ++case 105:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); + break; +-case 104:this.$ = $$[$0-3+2-1]; ++case 106:this.$ = $$[$0-3+2-1]; + break; +-case 105:this.$ = new yy.Extends($$[$0-3+1-1], $$[$0-3+3-1]); ++case 107:this.$ = new yy.Extends($$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 106:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); ++case 108:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); + break; +-case 107:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); ++case 109:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); + break; +-case 108:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); ++case 110:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); + break; +-case 109:this.$ = new yy.Call('super', $$[$0-2+2-1]); ++case 111:this.$ = new yy.Call('super', $$[$0-2+2-1]); + break; +-case 110:this.$ = false; ++case 112:this.$ = false; + break; +-case 111:this.$ = true; ++case 113:this.$ = true; + break; +-case 112:this.$ = []; ++case 114:this.$ = []; + break; +-case 113:this.$ = $$[$0-4+2-1]; ++case 115:this.$ = $$[$0-4+2-1]; + break; +-case 114:this.$ = new yy.Value(new yy.Literal('this')); ++case 116:this.$ = new yy.Value(new yy.Literal('this')); + break; +-case 115:this.$ = new yy.Value(new yy.Literal('this')); ++case 117:this.$ = new yy.Value(new yy.Literal('this')); + break; +-case 116:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Accessor($$[$0-2+2-1])], 'this'); ++case 118:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Accessor($$[$0-2+2-1])], 'this'); + break; +-case 117:this.$ = new yy.Arr([]); ++case 119:this.$ = new yy.Arr([]); + break; +-case 118:this.$ = new yy.Arr($$[$0-4+2-1]); ++case 120:this.$ = new yy.Arr($$[$0-4+2-1]); + break; +-case 119:this.$ = [$$[$0-1+1-1]]; ++case 121:this.$ = [$$[$0-1+1-1]]; + break; +-case 120:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); ++case 122:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); + break; +-case 121:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); ++case 123:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); + break; +-case 122:this.$ = $$[$0-4+2-1]; ++case 124:this.$ = $$[$0-4+2-1]; + break; +-case 123:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); ++case 125:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); + break; +-case 124:this.$ = $$[$0-1+1-1]; ++case 126:this.$ = $$[$0-1+1-1]; + break; +-case 125:this.$ = $$[$0-1+1-1]; ++case 127:this.$ = $$[$0-1+1-1]; + break; +-case 126:this.$ = $$[$0-1+1-1]; ++case 128:this.$ = $$[$0-1+1-1]; + break; +-case 127:this.$ = [].concat($$[$0-3+1-1], $$[$0-3+3-1]); ++case 129:this.$ = [].concat($$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 128:this.$ = new yy.Try($$[$0-2+2-1]); ++case 130:this.$ = new yy.Try($$[$0-2+2-1]); + break; +-case 129:this.$ = new yy.Try($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); ++case 131:this.$ = new yy.Try($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); + break; +-case 130:this.$ = new yy.Try($$[$0-4+2-1], null, null, $$[$0-4+4-1]); ++case 132:this.$ = new yy.Try($$[$0-4+2-1], null, null, $$[$0-4+4-1]); + break; +-case 131:this.$ = new yy.Try($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); ++case 133:this.$ = new yy.Try($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); + break; +-case 132:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; ++case 134:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; + break; +-case 133:this.$ = new yy.Throw($$[$0-2+2-1]); ++case 135:this.$ = new yy.Throw($$[$0-2+2-1]); + break; +-case 134:this.$ = new yy.Parens($$[$0-3+2-1]); ++case 136:this.$ = new yy.Parens($$[$0-3+2-1]); + break; +-case 135:this.$ = new yy.While($$[$0-2+2-1]); ++case 137:this.$ = new yy.While($$[$0-2+2-1]); + break; +-case 136:this.$ = new yy.While($$[$0-4+2-1], { ++case 138:this.$ = new yy.While($$[$0-4+2-1], { + guard: $$[$0-4+4-1] + }); + break; +-case 137:this.$ = new yy.While($$[$0-2+2-1], { ++case 139:this.$ = new yy.While($$[$0-2+2-1], { + invert: true + }); + break; +-case 138:this.$ = new yy.While($$[$0-4+2-1], { ++case 140:this.$ = new yy.While($$[$0-4+2-1], { + invert: true, + guard: $$[$0-4+4-1] + }); + break; +-case 139:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); ++case 141:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); + break; +-case 140:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); ++case 142:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); + break; +-case 141:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); ++case 143:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); + break; +-case 142:this.$ = $$[$0-1+1-1]; ++case 144:this.$ = $$[$0-1+1-1]; + break; +-case 143:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0-2+2-1]); ++case 145:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0-2+2-1]); + break; +-case 144:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Expressions.wrap([$$[$0-2+2-1]])); ++case 146:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Expressions.wrap([$$[$0-2+2-1]])); + break; +-case 145:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); ++case 147:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); + break; +-case 146:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); ++case 148:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); + break; +-case 147:this.$ = new yy.For($$[$0-2+2-1], $$[$0-2+1-1]); ++case 149:this.$ = new yy.For($$[$0-2+2-1], $$[$0-2+1-1]); + break; +-case 148:this.$ = $$[$0-1+1-1]; ++case 150:this.$ = $$[$0-1+1-1]; + break; +-case 149:this.$ = new yy.Value($$[$0-1+1-1]); ++case 151:this.$ = new yy.Value($$[$0-1+1-1]); + break; +-case 150:this.$ = new yy.Value($$[$0-1+1-1]); ++case 152:this.$ = new yy.Value($$[$0-1+1-1]); + break; +-case 151:this.$ = { ++case 153:this.$ = { + source: $$[$0-2+2-1] + }; + break; +-case 152:this.$ = { ++case 154:this.$ = { + source: $$[$0-4+2-1], + guard: $$[$0-4+4-1] + }; + break; +-case 153:this.$ = { ++case 155:this.$ = { + source: $$[$0-4+2-1], + step: $$[$0-4+4-1] + }; + break; +-case 154:this.$ = { ++case 156:this.$ = { + source: $$[$0-6+2-1], + step: $$[$0-6+4-1], + guard: $$[$0-6+6-1] + }; + break; +-case 155:this.$ = { ++case 157:this.$ = { + object: true, + source: $$[$0-2+2-1] + }; + break; +-case 156:this.$ = { ++case 158:this.$ = { + object: true, + source: $$[$0-4+2-1], + guard: $$[$0-4+4-1] + }; + break; +-case 157:this.$ = { ++case 159:this.$ = { + to: $$[$0-2+2-1] + }; + break; +-case 158:this.$ = { ++case 160:this.$ = { + to: $$[$0-4+2-1], + guard: $$[$0-4+4-1] + }; + break; +-case 159:this.$ = { ++case 161:this.$ = { + to: $$[$0-4+2-1], + step: $$[$0-4+4-1] + }; + break; +-case 160:this.$ = { ++case 162:this.$ = { + to: $$[$0-6+2-1], + step: $$[$0-6+4-1], + guard: $$[$0-6+6-1] + }; + break; +-case 161:this.$ = yy.extend($$[$0-3+3-1], { ++case 163:this.$ = yy.extend($$[$0-3+3-1], { + name: $$[$0-3+2-1] + }); + break; +-case 162:this.$ = yy.extend($$[$0-5+5-1], { ++case 164:this.$ = yy.extend($$[$0-5+5-1], { + name: $$[$0-5+2-1], + index: $$[$0-5+4-1] + }); + break; +-case 163:this.$ = yy.extend($$[$0-3+3-1], { ++case 165:this.$ = yy.extend($$[$0-3+3-1], { + index: $$[$0-3+2-1] + }); + break; +-case 164:this.$ = yy.extend($$[$0-5+5-1], { ++case 166:this.$ = yy.extend($$[$0-5+5-1], { + index: $$[$0-5+2-1], + name: $$[$0-5+4-1] + }); + break; +-case 165:this.$ = yy.extend($$[$0-4+4-1], { ++case 167:this.$ = yy.extend($$[$0-4+4-1], { + raw: true, + index: $$[$0-4+3-1] + }); + break; +-case 166:this.$ = yy.extend($$[$0-6+6-1], { ++case 168:this.$ = yy.extend($$[$0-6+6-1], { + raw: true, + index: $$[$0-6+3-1], + name: $$[$0-6+5-1] + }); + break; +-case 167:this.$ = yy.extend($$[$0-5+5-1], { ++case 169:this.$ = yy.extend($$[$0-5+5-1], { + index: $$[$0-5+2-1], + from: $$[$0-5+4-1] + }); + break; +-case 168:this.$ = new yy.Switch($$[$0-5+2-1], $$[$0-5+4-1]); ++case 170:this.$ = new yy.Switch($$[$0-5+2-1], $$[$0-5+4-1]); + break; +-case 169:this.$ = new yy.Switch($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); ++case 171:this.$ = new yy.Switch($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); + break; +-case 170:this.$ = new yy.Switch(null, $$[$0-4+3-1]); ++case 172:this.$ = new yy.Switch(null, $$[$0-4+3-1]); + break; +-case 171:this.$ = new yy.Switch(null, $$[$0-6+3-1], $$[$0-6+5-1]); ++case 173:this.$ = new yy.Switch(null, $$[$0-6+3-1], $$[$0-6+5-1]); + break; +-case 172:this.$ = $$[$0-1+1-1]; ++case 174:this.$ = $$[$0-1+1-1]; + break; +-case 173:this.$ = $$[$0-2+1-1].concat($$[$0-2+2-1]); ++case 175:this.$ = $$[$0-2+1-1].concat($$[$0-2+2-1]); + break; +-case 174:this.$ = [[$$[$0-3+2-1], $$[$0-3+3-1]]]; ++case 176:this.$ = [[$$[$0-3+2-1], $$[$0-3+3-1]]]; + break; +-case 175:this.$ = [[$$[$0-4+2-1], $$[$0-4+3-1]]]; ++case 177:this.$ = [[$$[$0-4+2-1], $$[$0-4+3-1]]]; + break; +-case 176:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1]); ++case 178:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1]); + break; +-case 177:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1], { ++case 179:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1], { + invert: true + }); + break; +-case 178:this.$ = $$[$0-5+1-1].addElse(new yy.If($$[$0-5+4-1], $$[$0-5+5-1])); ++case 180:this.$ = $$[$0-5+1-1].addElse(new yy.If($$[$0-5+4-1], $$[$0-5+5-1])); + break; +-case 179:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); ++case 181:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); + break; +-case 180:this.$ = $$[$0-1+1-1]; ++case 182:this.$ = $$[$0-1+1-1]; + break; +-case 181:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { ++case 183:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true + }); + break; +-case 182:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { ++case 184:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true + }); + break; +-case 183:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { ++case 185:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true, + invert: true + }); + break; +-case 184:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { ++case 186:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true, + invert: true + }); + break; +-case 185:this.$ = new yy.Op($$[$0-2+1-1], $$[$0-2+2-1]); ++case 187:this.$ = new yy.Op($$[$0-2+1-1], $$[$0-2+2-1]); + break; +-case 186:this.$ = new yy.Op('-', $$[$0-2+2-1]); ++case 188:this.$ = new yy.Op('-', $$[$0-2+2-1]); + break; +-case 187:this.$ = new yy.Op('+', $$[$0-2+2-1]); ++case 189:this.$ = new yy.Op('+', $$[$0-2+2-1]); + break; +-case 188:this.$ = new yy.Op('--', $$[$0-2+2-1]); ++case 190:this.$ = new yy.Op('--', $$[$0-2+2-1]); + break; +-case 189:this.$ = new yy.Op('++', $$[$0-2+2-1]); ++case 191:this.$ = new yy.Op('++', $$[$0-2+2-1]); + break; +-case 190:this.$ = new yy.Op('--', $$[$0-2+1-1], null, true); ++case 192:this.$ = new yy.Op('--', $$[$0-2+1-1], null, true); + break; +-case 191:this.$ = new yy.Op('++', $$[$0-2+1-1], null, true); ++case 193:this.$ = new yy.Op('++', $$[$0-2+1-1], null, true); + break; +-case 192:this.$ = new yy.Existence($$[$0-2+1-1]); ++case 194:this.$ = new yy.Existence($$[$0-2+1-1]); + break; +-case 193:this.$ = new yy.Op('+', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 195:this.$ = new yy.Op('+', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 194:this.$ = new yy.Op('-', $$[$0-3+1-1], $$[$0-3+3-1]); +-break; +-case 195:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); +-break; +-case 196:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); ++case 196:this.$ = new yy.Op('-', $$[$0-3+1-1], $$[$0-3+3-1]); + break; + case 197:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); + break; + case 198:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 199:this.$ = $$[$0-3+2-1].charAt(0) === '!' ? new yy.Op($$[$0-3+2-1].slice(1), $$[$0-3+1-1], $$[$0-3+3-1]).invert() : new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); ++case 199:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); ++break; ++case 200:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); ++break; ++case 201:this.$ = $$[$0-3+2-1].charAt(0) === '!' ? new yy.Op($$[$0-3+2-1].slice(1), $$[$0-3+1-1], $$[$0-3+3-1]).invert() : new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 200:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); ++case 202:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); + break; +-case 201:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1], $$[$0-5+2-1]); ++case 203:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1], $$[$0-5+2-1]); + break; + } + }, +-table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[3]},{"1":[2,2],"27":74,"47":[1,47]},{"1":[2,3],"4":[1,75]},{"4":[1,76]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":77,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[1,78],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,8],"4":[2,8],"29":[2,8],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,9],"4":[2,9],"29":[2,9],"100":93,"101":[1,65],"103":[1,66],"106":94,"115":[1,68],"126":[1,91],"127":[1,92]},{"1":[2,15],"4":[2,15],"28":[2,15],"29":[2,15],"55":[2,15],"58":[2,15],"62":96,"66":[1,98],"67":[1,99],"68":[1,100],"69":101,"70":[1,102],"71":[2,15],"72":[1,103],"73":[1,104],"76":[2,15],"81":95,"84":[1,97],"85":[2,110],"86":[2,15],"90":[2,15],"99":[2,15],"101":[2,15],"102":[2,15],"103":[2,15],"110":[2,15],"114":[2,15],"115":[2,15],"126":[2,15],"127":[2,15],"129":[2,15],"130":[2,15],"133":[2,15],"134":[2,15],"135":[2,15],"136":[2,15],"137":[2,15],"138":[2,15]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"55":[2,16],"58":[2,16],"62":106,"66":[1,98],"67":[1,99],"68":[1,100],"69":101,"70":[1,102],"71":[2,16],"72":[1,103],"73":[1,104],"76":[2,16],"81":105,"84":[1,97],"85":[2,110],"86":[2,16],"90":[2,16],"99":[2,16],"101":[2,16],"102":[2,16],"103":[2,16],"110":[2,16],"114":[2,16],"115":[2,16],"126":[2,16],"127":[2,16],"129":[2,16],"130":[2,16],"133":[2,16],"134":[2,16],"135":[2,16],"136":[2,16],"137":[2,16],"138":[2,16]},{"1":[2,17],"4":[2,17],"28":[2,17],"29":[2,17],"55":[2,17],"58":[2,17],"71":[2,17],"76":[2,17],"86":[2,17],"90":[2,17],"99":[2,17],"101":[2,17],"102":[2,17],"103":[2,17],"110":[2,17],"114":[2,17],"115":[2,17],"126":[2,17],"127":[2,17],"129":[2,17],"130":[2,17],"133":[2,17],"134":[2,17],"135":[2,17],"136":[2,17],"137":[2,17],"138":[2,17]},{"1":[2,18],"4":[2,18],"28":[2,18],"29":[2,18],"55":[2,18],"58":[2,18],"71":[2,18],"76":[2,18],"86":[2,18],"90":[2,18],"99":[2,18],"101":[2,18],"102":[2,18],"103":[2,18],"110":[2,18],"114":[2,18],"115":[2,18],"126":[2,18],"127":[2,18],"129":[2,18],"130":[2,18],"133":[2,18],"134":[2,18],"135":[2,18],"136":[2,18],"137":[2,18],"138":[2,18]},{"1":[2,19],"4":[2,19],"28":[2,19],"29":[2,19],"55":[2,19],"58":[2,19],"71":[2,19],"76":[2,19],"86":[2,19],"90":[2,19],"99":[2,19],"101":[2,19],"102":[2,19],"103":[2,19],"110":[2,19],"114":[2,19],"115":[2,19],"126":[2,19],"127":[2,19],"129":[2,19],"130":[2,19],"133":[2,19],"134":[2,19],"135":[2,19],"136":[2,19],"137":[2,19],"138":[2,19]},{"1":[2,20],"4":[2,20],"28":[2,20],"29":[2,20],"55":[2,20],"58":[2,20],"71":[2,20],"76":[2,20],"86":[2,20],"90":[2,20],"99":[2,20],"101":[2,20],"102":[2,20],"103":[2,20],"110":[2,20],"114":[2,20],"115":[2,20],"126":[2,20],"127":[2,20],"129":[2,20],"130":[2,20],"133":[2,20],"134":[2,20],"135":[2,20],"136":[2,20],"137":[2,20],"138":[2,20]},{"1":[2,21],"4":[2,21],"28":[2,21],"29":[2,21],"55":[2,21],"58":[2,21],"71":[2,21],"76":[2,21],"86":[2,21],"90":[2,21],"99":[2,21],"101":[2,21],"102":[2,21],"103":[2,21],"110":[2,21],"114":[2,21],"115":[2,21],"126":[2,21],"127":[2,21],"129":[2,21],"130":[2,21],"133":[2,21],"134":[2,21],"135":[2,21],"136":[2,21],"137":[2,21],"138":[2,21]},{"1":[2,22],"4":[2,22],"28":[2,22],"29":[2,22],"55":[2,22],"58":[2,22],"71":[2,22],"76":[2,22],"86":[2,22],"90":[2,22],"99":[2,22],"101":[2,22],"102":[2,22],"103":[2,22],"110":[2,22],"114":[2,22],"115":[2,22],"126":[2,22],"127":[2,22],"129":[2,22],"130":[2,22],"133":[2,22],"134":[2,22],"135":[2,22],"136":[2,22],"137":[2,22],"138":[2,22]},{"1":[2,23],"4":[2,23],"28":[2,23],"29":[2,23],"55":[2,23],"58":[2,23],"71":[2,23],"76":[2,23],"86":[2,23],"90":[2,23],"99":[2,23],"101":[2,23],"102":[2,23],"103":[2,23],"110":[2,23],"114":[2,23],"115":[2,23],"126":[2,23],"127":[2,23],"129":[2,23],"130":[2,23],"133":[2,23],"134":[2,23],"135":[2,23],"136":[2,23],"137":[2,23],"138":[2,23]},{"1":[2,24],"4":[2,24],"28":[2,24],"29":[2,24],"55":[2,24],"58":[2,24],"71":[2,24],"76":[2,24],"86":[2,24],"90":[2,24],"99":[2,24],"101":[2,24],"102":[2,24],"103":[2,24],"110":[2,24],"114":[2,24],"115":[2,24],"126":[2,24],"127":[2,24],"129":[2,24],"130":[2,24],"133":[2,24],"134":[2,24],"135":[2,24],"136":[2,24],"137":[2,24],"138":[2,24]},{"1":[2,25],"4":[2,25],"28":[2,25],"29":[2,25],"55":[2,25],"58":[2,25],"71":[2,25],"76":[2,25],"86":[2,25],"90":[2,25],"99":[2,25],"101":[2,25],"102":[2,25],"103":[2,25],"110":[2,25],"114":[2,25],"115":[2,25],"126":[2,25],"127":[2,25],"129":[2,25],"130":[2,25],"133":[2,25],"134":[2,25],"135":[2,25],"136":[2,25],"137":[2,25],"138":[2,25]},{"1":[2,26],"4":[2,26],"28":[2,26],"29":[2,26],"55":[2,26],"58":[2,26],"71":[2,26],"76":[2,26],"86":[2,26],"90":[2,26],"99":[2,26],"101":[2,26],"102":[2,26],"103":[2,26],"110":[2,26],"114":[2,26],"115":[2,26],"126":[2,26],"127":[2,26],"129":[2,26],"130":[2,26],"133":[2,26],"134":[2,26],"135":[2,26],"136":[2,26],"137":[2,26],"138":[2,26]},{"1":[2,27],"4":[2,27],"28":[2,27],"29":[2,27],"55":[2,27],"58":[2,27],"71":[2,27],"76":[2,27],"86":[2,27],"90":[2,27],"99":[2,27],"101":[2,27],"102":[2,27],"103":[2,27],"110":[2,27],"114":[2,27],"115":[2,27],"126":[2,27],"127":[2,27],"129":[2,27],"130":[2,27],"133":[2,27],"134":[2,27],"135":[2,27],"136":[2,27],"137":[2,27],"138":[2,27]},{"1":[2,10],"4":[2,10],"29":[2,10],"101":[2,10],"103":[2,10],"115":[2,10],"126":[2,10],"127":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"101":[2,11],"103":[2,11],"115":[2,11],"126":[2,11],"127":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"101":[2,12],"103":[2,12],"115":[2,12],"126":[2,12],"127":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"101":[2,13],"103":[2,13],"115":[2,13],"126":[2,13],"127":[2,13]},{"1":[2,14],"4":[2,14],"29":[2,14],"101":[2,14],"103":[2,14],"115":[2,14],"126":[2,14],"127":[2,14]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"40":[1,107],"55":[2,72],"58":[2,72],"66":[2,72],"67":[2,72],"68":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"73":[2,72],"76":[2,72],"84":[2,72],"85":[2,72],"86":[2,72],"90":[2,72],"99":[2,72],"101":[2,72],"102":[2,72],"103":[2,72],"110":[2,72],"114":[2,72],"115":[2,72],"126":[2,72],"127":[2,72],"129":[2,72],"130":[2,72],"133":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"55":[2,73],"58":[2,73],"66":[2,73],"67":[2,73],"68":[2,73],"70":[2,73],"71":[2,73],"72":[2,73],"73":[2,73],"76":[2,73],"84":[2,73],"85":[2,73],"86":[2,73],"90":[2,73],"99":[2,73],"101":[2,73],"102":[2,73],"103":[2,73],"110":[2,73],"114":[2,73],"115":[2,73],"126":[2,73],"127":[2,73],"129":[2,73],"130":[2,73],"133":[2,73],"134":[2,73],"135":[2,73],"136":[2,73],"137":[2,73],"138":[2,73]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"55":[2,74],"58":[2,74],"66":[2,74],"67":[2,74],"68":[2,74],"70":[2,74],"71":[2,74],"72":[2,74],"73":[2,74],"76":[2,74],"84":[2,74],"85":[2,74],"86":[2,74],"90":[2,74],"99":[2,74],"101":[2,74],"102":[2,74],"103":[2,74],"110":[2,74],"114":[2,74],"115":[2,74],"126":[2,74],"127":[2,74],"129":[2,74],"130":[2,74],"133":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74],"138":[2,74]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"55":[2,75],"58":[2,75],"66":[2,75],"67":[2,75],"68":[2,75],"70":[2,75],"71":[2,75],"72":[2,75],"73":[2,75],"76":[2,75],"84":[2,75],"85":[2,75],"86":[2,75],"90":[2,75],"99":[2,75],"101":[2,75],"102":[2,75],"103":[2,75],"110":[2,75],"114":[2,75],"115":[2,75],"126":[2,75],"127":[2,75],"129":[2,75],"130":[2,75],"133":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75],"138":[2,75]},{"1":[2,108],"4":[2,108],"28":[2,108],"29":[2,108],"55":[2,108],"58":[2,108],"66":[2,108],"67":[2,108],"68":[2,108],"70":[2,108],"71":[2,108],"72":[2,108],"73":[2,108],"76":[2,108],"82":108,"84":[2,108],"85":[1,109],"86":[2,108],"90":[2,108],"99":[2,108],"101":[2,108],"102":[2,108],"103":[2,108],"110":[2,108],"114":[2,108],"115":[2,108],"126":[2,108],"127":[2,108],"129":[2,108],"130":[2,108],"133":[2,108],"134":[2,108],"135":[2,108],"136":[2,108],"137":[2,108],"138":[2,108]},{"49":110,"50":[2,57],"55":[2,57],"56":111,"57":[1,112],"59":[1,113]},{"4":[1,115],"6":114,"28":[1,6]},{"8":116,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":118,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":119,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"15":121,"16":122,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":123,"44":62,"45":29,"59":[1,58],"61":120,"63":50,"64":51,"65":30,"74":[1,70],"83":[1,31],"88":[1,57],"89":[1,69],"98":[1,56]},{"15":121,"16":122,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":123,"44":62,"45":29,"59":[1,58],"61":124,"63":50,"64":51,"65":30,"74":[1,70],"83":[1,31],"88":[1,57],"89":[1,69],"98":[1,56]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"40":[2,69],"55":[2,69],"58":[2,69],"66":[2,69],"67":[2,69],"68":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"78":[1,128],"84":[2,69],"85":[2,69],"86":[2,69],"90":[2,69],"99":[2,69],"101":[2,69],"102":[2,69],"103":[2,69],"110":[2,69],"114":[2,69],"115":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"131":[1,125],"132":[1,126],"133":[2,69],"134":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[1,127]},{"1":[2,180],"4":[2,180],"28":[2,180],"29":[2,180],"55":[2,180],"58":[2,180],"71":[2,180],"76":[2,180],"86":[2,180],"90":[2,180],"99":[2,180],"101":[2,180],"102":[2,180],"103":[2,180],"110":[2,180],"114":[2,180],"115":[2,180],"120":[1,129],"126":[2,180],"127":[2,180],"129":[2,180],"130":[2,180],"133":[2,180],"134":[2,180],"135":[2,180],"136":[2,180],"137":[2,180],"138":[2,180]},{"4":[1,115],"6":130,"28":[1,6]},{"4":[1,115],"6":131,"28":[1,6]},{"1":[2,142],"4":[2,142],"28":[2,142],"29":[2,142],"55":[2,142],"58":[2,142],"71":[2,142],"76":[2,142],"86":[2,142],"90":[2,142],"99":[2,142],"101":[2,142],"102":[2,142],"103":[2,142],"110":[2,142],"114":[2,142],"115":[2,142],"126":[2,142],"127":[2,142],"129":[2,142],"130":[2,142],"133":[2,142],"134":[2,142],"135":[2,142],"136":[2,142],"137":[2,142],"138":[2,142]},{"4":[1,115],"6":132,"28":[1,6]},{"8":133,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,134],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,95],"4":[2,95],"15":121,"16":122,"28":[1,136],"29":[2,95],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":123,"44":62,"45":29,"55":[2,95],"58":[2,95],"59":[1,58],"61":135,"63":50,"64":51,"65":30,"71":[2,95],"74":[1,70],"76":[2,95],"78":[1,137],"83":[1,31],"86":[2,95],"88":[1,57],"89":[1,69],"90":[2,95],"98":[1,56],"99":[2,95],"101":[2,95],"102":[2,95],"103":[2,95],"110":[2,95],"114":[2,95],"115":[2,95],"126":[2,95],"127":[2,95],"129":[2,95],"130":[2,95],"133":[2,95],"134":[2,95],"135":[2,95],"136":[2,95],"137":[2,95],"138":[2,95]},{"1":[2,50],"4":[2,50],"28":[2,50],"29":[2,50],"55":[2,50],"58":[2,50],"71":[2,50],"76":[2,50],"86":[2,50],"90":[2,50],"95":[2,50],"96":[2,50],"99":[2,50],"101":[2,50],"102":[2,50],"103":[2,50],"110":[2,50],"114":[2,50],"115":[2,50],"120":[2,50],"122":[2,50],"126":[2,50],"127":[2,50],"129":[2,50],"130":[2,50],"133":[2,50],"134":[2,50],"135":[2,50],"136":[2,50],"137":[2,50],"138":[2,50]},{"1":[2,49],"4":[2,49],"8":138,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,49],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[2,49],"103":[2,49],"104":43,"105":[1,67],"106":44,"115":[2,49],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"126":[2,49],"127":[2,49],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":139,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"40":[2,70],"55":[2,70],"58":[2,70],"66":[2,70],"67":[2,70],"68":[2,70],"70":[2,70],"71":[2,70],"72":[2,70],"73":[2,70],"76":[2,70],"84":[2,70],"85":[2,70],"86":[2,70],"90":[2,70],"99":[2,70],"101":[2,70],"102":[2,70],"103":[2,70],"110":[2,70],"114":[2,70],"115":[2,70],"126":[2,70],"127":[2,70],"129":[2,70],"130":[2,70],"133":[2,70],"134":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"40":[2,71],"55":[2,71],"58":[2,71],"66":[2,71],"67":[2,71],"68":[2,71],"70":[2,71],"71":[2,71],"72":[2,71],"73":[2,71],"76":[2,71],"84":[2,71],"85":[2,71],"86":[2,71],"90":[2,71],"99":[2,71],"101":[2,71],"102":[2,71],"103":[2,71],"110":[2,71],"114":[2,71],"115":[2,71],"126":[2,71],"127":[2,71],"129":[2,71],"130":[2,71],"133":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71],"138":[2,71]},{"1":[2,34],"4":[2,34],"28":[2,34],"29":[2,34],"55":[2,34],"58":[2,34],"66":[2,34],"67":[2,34],"68":[2,34],"70":[2,34],"71":[2,34],"72":[2,34],"73":[2,34],"76":[2,34],"84":[2,34],"85":[2,34],"86":[2,34],"90":[2,34],"99":[2,34],"101":[2,34],"102":[2,34],"103":[2,34],"110":[2,34],"114":[2,34],"115":[2,34],"126":[2,34],"127":[2,34],"129":[2,34],"130":[2,34],"133":[2,34],"134":[2,34],"135":[2,34],"136":[2,34],"137":[2,34],"138":[2,34]},{"1":[2,35],"4":[2,35],"28":[2,35],"29":[2,35],"55":[2,35],"58":[2,35],"66":[2,35],"67":[2,35],"68":[2,35],"70":[2,35],"71":[2,35],"72":[2,35],"73":[2,35],"76":[2,35],"84":[2,35],"85":[2,35],"86":[2,35],"90":[2,35],"99":[2,35],"101":[2,35],"102":[2,35],"103":[2,35],"110":[2,35],"114":[2,35],"115":[2,35],"126":[2,35],"127":[2,35],"129":[2,35],"130":[2,35],"133":[2,35],"134":[2,35],"135":[2,35],"136":[2,35],"137":[2,35],"138":[2,35]},{"1":[2,36],"4":[2,36],"28":[2,36],"29":[2,36],"55":[2,36],"58":[2,36],"66":[2,36],"67":[2,36],"68":[2,36],"70":[2,36],"71":[2,36],"72":[2,36],"73":[2,36],"76":[2,36],"84":[2,36],"85":[2,36],"86":[2,36],"90":[2,36],"99":[2,36],"101":[2,36],"102":[2,36],"103":[2,36],"110":[2,36],"114":[2,36],"115":[2,36],"126":[2,36],"127":[2,36],"129":[2,36],"130":[2,36],"133":[2,36],"134":[2,36],"135":[2,36],"136":[2,36],"137":[2,36],"138":[2,36]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"55":[2,37],"58":[2,37],"66":[2,37],"67":[2,37],"68":[2,37],"70":[2,37],"71":[2,37],"72":[2,37],"73":[2,37],"76":[2,37],"84":[2,37],"85":[2,37],"86":[2,37],"90":[2,37],"99":[2,37],"101":[2,37],"102":[2,37],"103":[2,37],"110":[2,37],"114":[2,37],"115":[2,37],"126":[2,37],"127":[2,37],"129":[2,37],"130":[2,37],"133":[2,37],"134":[2,37],"135":[2,37],"136":[2,37],"137":[2,37],"138":[2,37]},{"8":140,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,114],"4":[2,114],"28":[2,114],"29":[2,114],"55":[2,114],"58":[2,114],"66":[2,114],"67":[2,114],"68":[2,114],"70":[2,114],"71":[2,114],"72":[2,114],"73":[2,114],"76":[2,114],"84":[2,114],"85":[2,114],"86":[2,114],"90":[2,114],"99":[2,114],"101":[2,114],"102":[2,114],"103":[2,114],"110":[2,114],"114":[2,114],"115":[2,114],"126":[2,114],"127":[2,114],"129":[2,114],"130":[2,114],"133":[2,114],"134":[2,114],"135":[2,114],"136":[2,114],"137":[2,114],"138":[2,114]},{"1":[2,115],"4":[2,115],"28":[2,115],"29":[2,115],"30":141,"31":[1,73],"55":[2,115],"58":[2,115],"66":[2,115],"67":[2,115],"68":[2,115],"70":[2,115],"71":[2,115],"72":[2,115],"73":[2,115],"76":[2,115],"84":[2,115],"85":[2,115],"86":[2,115],"90":[2,115],"99":[2,115],"101":[2,115],"102":[2,115],"103":[2,115],"110":[2,115],"114":[2,115],"115":[2,115],"126":[2,115],"127":[2,115],"129":[2,115],"130":[2,115],"133":[2,115],"134":[2,115],"135":[2,115],"136":[2,115],"137":[2,115],"138":[2,115]},{"4":[2,53],"28":[2,53]},{"4":[2,54],"28":[2,54]},{"1":[2,65],"4":[2,65],"28":[2,65],"29":[2,65],"40":[2,65],"55":[2,65],"58":[2,65],"66":[2,65],"67":[2,65],"68":[2,65],"70":[2,65],"71":[2,65],"72":[2,65],"73":[2,65],"76":[2,65],"78":[2,65],"84":[2,65],"85":[2,65],"86":[2,65],"90":[2,65],"99":[2,65],"101":[2,65],"102":[2,65],"103":[2,65],"110":[2,65],"114":[2,65],"115":[2,65],"126":[2,65],"127":[2,65],"129":[2,65],"130":[2,65],"131":[2,65],"132":[2,65],"133":[2,65],"134":[2,65],"135":[2,65],"136":[2,65],"137":[2,65],"138":[2,65],"139":[2,65]},{"1":[2,68],"4":[2,68],"28":[2,68],"29":[2,68],"40":[2,68],"55":[2,68],"58":[2,68],"66":[2,68],"67":[2,68],"68":[2,68],"70":[2,68],"71":[2,68],"72":[2,68],"73":[2,68],"76":[2,68],"78":[2,68],"84":[2,68],"85":[2,68],"86":[2,68],"90":[2,68],"99":[2,68],"101":[2,68],"102":[2,68],"103":[2,68],"110":[2,68],"114":[2,68],"115":[2,68],"126":[2,68],"127":[2,68],"129":[2,68],"130":[2,68],"131":[2,68],"132":[2,68],"133":[2,68],"134":[2,68],"135":[2,68],"136":[2,68],"137":[2,68],"138":[2,68],"139":[2,68]},{"8":142,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":143,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":144,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":145,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[1,115],"6":146,"8":147,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"30":149,"31":[1,73],"63":151,"64":152,"74":[1,70],"89":[1,69],"107":148,"116":[1,150]},{"8":157,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,156],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":158,"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"87":154,"88":[1,57],"89":[1,69],"90":[1,153],"91":155,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,85],"27":163,"28":[2,85],"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":160,"42":161,"44":162,"45":166,"47":[1,47],"55":[2,85],"59":[1,167],"75":159,"76":[2,85],"98":[1,56]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"43":[2,32],"55":[2,32],"58":[2,32],"66":[2,32],"67":[2,32],"68":[2,32],"70":[2,32],"71":[2,32],"72":[2,32],"73":[2,32],"76":[2,32],"84":[2,32],"85":[2,32],"86":[2,32],"90":[2,32],"99":[2,32],"101":[2,32],"102":[2,32],"103":[2,32],"110":[2,32],"114":[2,32],"115":[2,32],"126":[2,32],"127":[2,32],"129":[2,32],"130":[2,32],"133":[2,32],"134":[2,32],"135":[2,32],"136":[2,32],"137":[2,32],"138":[2,32]},{"1":[2,33],"4":[2,33],"28":[2,33],"29":[2,33],"43":[2,33],"55":[2,33],"58":[2,33],"66":[2,33],"67":[2,33],"68":[2,33],"70":[2,33],"71":[2,33],"72":[2,33],"73":[2,33],"76":[2,33],"84":[2,33],"85":[2,33],"86":[2,33],"90":[2,33],"99":[2,33],"101":[2,33],"102":[2,33],"103":[2,33],"110":[2,33],"114":[2,33],"115":[2,33],"126":[2,33],"127":[2,33],"129":[2,33],"130":[2,33],"133":[2,33],"134":[2,33],"135":[2,33],"136":[2,33],"137":[2,33],"138":[2,33]},{"1":[2,31],"4":[2,31],"28":[2,31],"29":[2,31],"40":[2,31],"43":[2,31],"55":[2,31],"58":[2,31],"66":[2,31],"67":[2,31],"68":[2,31],"70":[2,31],"71":[2,31],"72":[2,31],"73":[2,31],"76":[2,31],"78":[2,31],"84":[2,31],"85":[2,31],"86":[2,31],"90":[2,31],"99":[2,31],"101":[2,31],"102":[2,31],"103":[2,31],"109":[2,31],"110":[2,31],"112":[2,31],"114":[2,31],"115":[2,31],"117":[2,31],"126":[2,31],"127":[2,31],"129":[2,31],"130":[2,31],"131":[2,31],"132":[2,31],"133":[2,31],"134":[2,31],"135":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"55":[2,30],"58":[2,30],"71":[2,30],"76":[2,30],"86":[2,30],"90":[2,30],"95":[2,30],"96":[2,30],"99":[2,30],"101":[2,30],"102":[2,30],"103":[2,30],"110":[2,30],"114":[2,30],"115":[2,30],"120":[2,30],"122":[2,30],"126":[2,30],"127":[2,30],"129":[2,30],"130":[2,30],"133":[2,30],"134":[2,30],"135":[2,30],"136":[2,30],"137":[2,30],"138":[2,30]},{"1":[2,7],"4":[2,7],"7":168,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,7],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,4]},{"4":[1,75],"29":[1,169]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"55":[2,29],"58":[2,29],"71":[2,29],"76":[2,29],"86":[2,29],"90":[2,29],"95":[2,29],"96":[2,29],"99":[2,29],"101":[2,29],"102":[2,29],"103":[2,29],"110":[2,29],"114":[2,29],"115":[2,29],"120":[2,29],"122":[2,29],"126":[2,29],"127":[2,29],"129":[2,29],"130":[2,29],"133":[2,29],"134":[2,29],"135":[2,29],"136":[2,29],"137":[2,29],"138":[2,29]},{"1":[2,192],"4":[2,192],"28":[2,192],"29":[2,192],"55":[2,192],"58":[2,192],"71":[2,192],"76":[2,192],"86":[2,192],"90":[2,192],"99":[2,192],"101":[2,192],"102":[2,192],"103":[2,192],"110":[2,192],"114":[2,192],"115":[2,192],"126":[2,192],"127":[2,192],"129":[2,192],"130":[2,192],"133":[2,192],"134":[2,192],"135":[2,192],"136":[2,192],"137":[2,192],"138":[2,192]},{"8":170,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":171,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":172,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":173,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":174,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":175,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":176,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":177,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":178,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,141],"4":[2,141],"28":[2,141],"29":[2,141],"55":[2,141],"58":[2,141],"71":[2,141],"76":[2,141],"86":[2,141],"90":[2,141],"99":[2,141],"101":[2,141],"102":[2,141],"103":[2,141],"110":[2,141],"114":[2,141],"115":[2,141],"126":[2,141],"127":[2,141],"129":[2,141],"130":[2,141],"133":[2,141],"134":[2,141],"135":[2,141],"136":[2,141],"137":[2,141],"138":[2,141]},{"1":[2,146],"4":[2,146],"28":[2,146],"29":[2,146],"55":[2,146],"58":[2,146],"71":[2,146],"76":[2,146],"86":[2,146],"90":[2,146],"99":[2,146],"101":[2,146],"102":[2,146],"103":[2,146],"110":[2,146],"114":[2,146],"115":[2,146],"126":[2,146],"127":[2,146],"129":[2,146],"130":[2,146],"133":[2,146],"134":[2,146],"135":[2,146],"136":[2,146],"137":[2,146],"138":[2,146]},{"8":179,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":180,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"55":[2,140],"58":[2,140],"71":[2,140],"76":[2,140],"86":[2,140],"90":[2,140],"99":[2,140],"101":[2,140],"102":[2,140],"103":[2,140],"110":[2,140],"114":[2,140],"115":[2,140],"126":[2,140],"127":[2,140],"129":[2,140],"130":[2,140],"133":[2,140],"134":[2,140],"135":[2,140],"136":[2,140],"137":[2,140],"138":[2,140]},{"1":[2,145],"4":[2,145],"28":[2,145],"29":[2,145],"55":[2,145],"58":[2,145],"71":[2,145],"76":[2,145],"86":[2,145],"90":[2,145],"99":[2,145],"101":[2,145],"102":[2,145],"103":[2,145],"110":[2,145],"114":[2,145],"115":[2,145],"126":[2,145],"127":[2,145],"129":[2,145],"130":[2,145],"133":[2,145],"134":[2,145],"135":[2,145],"136":[2,145],"137":[2,145],"138":[2,145]},{"82":181,"85":[1,109]},{"1":[2,66],"4":[2,66],"28":[2,66],"29":[2,66],"40":[2,66],"55":[2,66],"58":[2,66],"66":[2,66],"67":[2,66],"68":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"78":[2,66],"84":[2,66],"85":[2,66],"86":[2,66],"90":[2,66],"99":[2,66],"101":[2,66],"102":[2,66],"103":[2,66],"110":[2,66],"114":[2,66],"115":[2,66],"126":[2,66],"127":[2,66],"129":[2,66],"130":[2,66],"131":[2,66],"132":[2,66],"133":[2,66],"134":[2,66],"135":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66]},{"85":[2,111]},{"30":182,"31":[1,73]},{"30":183,"31":[1,73]},{"1":[2,79],"4":[2,79],"28":[2,79],"29":[2,79],"30":184,"31":[1,73],"40":[2,79],"55":[2,79],"58":[2,79],"66":[2,79],"67":[2,79],"68":[2,79],"70":[2,79],"71":[2,79],"72":[2,79],"73":[2,79],"76":[2,79],"78":[2,79],"84":[2,79],"85":[2,79],"86":[2,79],"90":[2,79],"99":[2,79],"101":[2,79],"102":[2,79],"103":[2,79],"110":[2,79],"114":[2,79],"115":[2,79],"126":[2,79],"127":[2,79],"129":[2,79],"130":[2,79],"131":[2,79],"132":[2,79],"133":[2,79],"134":[2,79],"135":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79]},{"1":[2,80],"4":[2,80],"28":[2,80],"29":[2,80],"40":[2,80],"55":[2,80],"58":[2,80],"66":[2,80],"67":[2,80],"68":[2,80],"70":[2,80],"71":[2,80],"72":[2,80],"73":[2,80],"76":[2,80],"78":[2,80],"84":[2,80],"85":[2,80],"86":[2,80],"90":[2,80],"99":[2,80],"101":[2,80],"102":[2,80],"103":[2,80],"110":[2,80],"114":[2,80],"115":[2,80],"126":[2,80],"127":[2,80],"129":[2,80],"130":[2,80],"131":[2,80],"132":[2,80],"133":[2,80],"134":[2,80],"135":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80]},{"8":185,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"69":186,"70":[1,102],"72":[1,103],"73":[1,104]},{"69":187,"70":[1,102],"72":[1,103],"73":[1,104]},{"82":188,"85":[1,109]},{"1":[2,67],"4":[2,67],"28":[2,67],"29":[2,67],"40":[2,67],"55":[2,67],"58":[2,67],"66":[2,67],"67":[2,67],"68":[2,67],"70":[2,67],"71":[2,67],"72":[2,67],"73":[2,67],"76":[2,67],"78":[2,67],"84":[2,67],"85":[2,67],"86":[2,67],"90":[2,67],"99":[2,67],"101":[2,67],"102":[2,67],"103":[2,67],"110":[2,67],"114":[2,67],"115":[2,67],"126":[2,67],"127":[2,67],"129":[2,67],"130":[2,67],"131":[2,67],"132":[2,67],"133":[2,67],"134":[2,67],"135":[2,67],"136":[2,67],"137":[2,67],"138":[2,67],"139":[2,67]},{"8":189,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,190],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,109],"4":[2,109],"28":[2,109],"29":[2,109],"55":[2,109],"58":[2,109],"66":[2,109],"67":[2,109],"68":[2,109],"70":[2,109],"71":[2,109],"72":[2,109],"73":[2,109],"76":[2,109],"84":[2,109],"85":[2,109],"86":[2,109],"90":[2,109],"99":[2,109],"101":[2,109],"102":[2,109],"103":[2,109],"110":[2,109],"114":[2,109],"115":[2,109],"126":[2,109],"127":[2,109],"129":[2,109],"130":[2,109],"133":[2,109],"134":[2,109],"135":[2,109],"136":[2,109],"137":[2,109],"138":[2,109]},{"8":157,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,156],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":158,"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"86":[1,191],"87":192,"88":[1,57],"89":[1,69],"91":155,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"50":[1,193],"55":[1,194]},{"50":[2,58],"55":[2,58]},{"50":[2,60],"55":[2,60],"58":[1,195]},{"57":[1,196]},{"1":[2,52],"4":[2,52],"28":[2,52],"29":[2,52],"55":[2,52],"58":[2,52],"71":[2,52],"76":[2,52],"86":[2,52],"90":[2,52],"99":[2,52],"101":[2,52],"102":[2,52],"103":[2,52],"110":[2,52],"114":[2,52],"115":[2,52],"126":[2,52],"127":[2,52],"129":[2,52],"130":[2,52],"133":[2,52],"134":[2,52],"135":[2,52],"136":[2,52],"137":[2,52],"138":[2,52]},{"27":74,"47":[1,47]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"55":[2,185],"58":[2,185],"71":[2,185],"76":[2,185],"86":[2,185],"90":[2,185],"99":[2,185],"100":89,"101":[2,185],"102":[2,185],"103":[2,185],"106":90,"110":[2,185],"114":[2,185],"115":[2,185],"126":[2,185],"127":[2,185],"129":[2,185],"130":[2,185],"133":[1,79],"134":[2,185],"135":[2,185],"136":[2,185],"137":[2,185],"138":[2,185]},{"100":93,"101":[1,65],"103":[1,66],"106":94,"115":[1,68],"126":[1,91],"127":[1,92]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"55":[2,186],"58":[2,186],"71":[2,186],"76":[2,186],"86":[2,186],"90":[2,186],"99":[2,186],"100":89,"101":[2,186],"102":[2,186],"103":[2,186],"106":90,"110":[2,186],"114":[2,186],"115":[2,186],"126":[2,186],"127":[2,186],"129":[2,186],"130":[2,186],"133":[1,79],"134":[2,186],"135":[2,186],"136":[2,186],"137":[2,186],"138":[2,186]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"55":[2,187],"58":[2,187],"71":[2,187],"76":[2,187],"86":[2,187],"90":[2,187],"99":[2,187],"100":89,"101":[2,187],"102":[2,187],"103":[2,187],"106":90,"110":[2,187],"114":[2,187],"115":[2,187],"126":[2,187],"127":[2,187],"129":[2,187],"130":[2,187],"133":[1,79],"134":[2,187],"135":[2,187],"136":[2,187],"137":[2,187],"138":[2,187]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"55":[2,188],"58":[2,188],"66":[2,69],"67":[2,69],"68":[2,69],"70":[2,69],"71":[2,188],"72":[2,69],"73":[2,69],"76":[2,188],"84":[2,69],"85":[2,69],"86":[2,188],"90":[2,188],"99":[2,188],"101":[2,188],"102":[2,188],"103":[2,188],"110":[2,188],"114":[2,188],"115":[2,188],"126":[2,188],"127":[2,188],"129":[2,188],"130":[2,188],"133":[2,188],"134":[2,188],"135":[2,188],"136":[2,188],"137":[2,188],"138":[2,188]},{"62":96,"66":[1,98],"67":[1,99],"68":[1,100],"69":101,"70":[1,102],"72":[1,103],"73":[1,104],"81":95,"84":[1,97],"85":[2,110]},{"62":106,"66":[1,98],"67":[1,99],"68":[1,100],"69":101,"70":[1,102],"72":[1,103],"73":[1,104],"81":105,"84":[1,97],"85":[2,110]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"55":[2,72],"58":[2,72],"66":[2,72],"67":[2,72],"68":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"73":[2,72],"76":[2,72],"84":[2,72],"85":[2,72],"86":[2,72],"90":[2,72],"99":[2,72],"101":[2,72],"102":[2,72],"103":[2,72],"110":[2,72],"114":[2,72],"115":[2,72],"126":[2,72],"127":[2,72],"129":[2,72],"130":[2,72],"133":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"55":[2,189],"58":[2,189],"66":[2,69],"67":[2,69],"68":[2,69],"70":[2,69],"71":[2,189],"72":[2,69],"73":[2,69],"76":[2,189],"84":[2,69],"85":[2,69],"86":[2,189],"90":[2,189],"99":[2,189],"101":[2,189],"102":[2,189],"103":[2,189],"110":[2,189],"114":[2,189],"115":[2,189],"126":[2,189],"127":[2,189],"129":[2,189],"130":[2,189],"133":[2,189],"134":[2,189],"135":[2,189],"136":[2,189],"137":[2,189],"138":[2,189]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"55":[2,190],"58":[2,190],"71":[2,190],"76":[2,190],"86":[2,190],"90":[2,190],"99":[2,190],"101":[2,190],"102":[2,190],"103":[2,190],"110":[2,190],"114":[2,190],"115":[2,190],"126":[2,190],"127":[2,190],"129":[2,190],"130":[2,190],"133":[2,190],"134":[2,190],"135":[2,190],"136":[2,190],"137":[2,190],"138":[2,190]},{"1":[2,191],"4":[2,191],"28":[2,191],"29":[2,191],"55":[2,191],"58":[2,191],"71":[2,191],"76":[2,191],"86":[2,191],"90":[2,191],"99":[2,191],"101":[2,191],"102":[2,191],"103":[2,191],"110":[2,191],"114":[2,191],"115":[2,191],"126":[2,191],"127":[2,191],"129":[2,191],"130":[2,191],"133":[2,191],"134":[2,191],"135":[2,191],"136":[2,191],"137":[2,191],"138":[2,191]},{"8":197,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,198],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"15":199,"16":122,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":123,"44":62,"45":29,"59":[1,58],"61":200,"63":50,"64":51,"65":30,"74":[1,70],"83":[1,31],"88":[1,57],"89":[1,69],"98":[1,56]},{"4":[1,115],"6":202,"28":[1,6],"124":[1,201]},{"1":[2,128],"4":[2,128],"28":[2,128],"29":[2,128],"55":[2,128],"58":[2,128],"71":[2,128],"76":[2,128],"86":[2,128],"90":[2,128],"94":203,"95":[1,204],"96":[1,205],"99":[2,128],"101":[2,128],"102":[2,128],"103":[2,128],"110":[2,128],"114":[2,128],"115":[2,128],"126":[2,128],"127":[2,128],"129":[2,128],"130":[2,128],"133":[2,128],"134":[2,128],"135":[2,128],"136":[2,128],"137":[2,128],"138":[2,128]},{"1":[2,139],"4":[2,139],"28":[2,139],"29":[2,139],"55":[2,139],"58":[2,139],"71":[2,139],"76":[2,139],"86":[2,139],"90":[2,139],"99":[2,139],"101":[2,139],"102":[2,139],"103":[2,139],"110":[2,139],"114":[2,139],"115":[2,139],"126":[2,139],"127":[2,139],"129":[2,139],"130":[2,139],"133":[2,139],"134":[2,139],"135":[2,139],"136":[2,139],"137":[2,139],"138":[2,139]},{"1":[2,147],"4":[2,147],"28":[2,147],"29":[2,147],"55":[2,147],"58":[2,147],"71":[2,147],"76":[2,147],"86":[2,147],"90":[2,147],"99":[2,147],"101":[2,147],"102":[2,147],"103":[2,147],"110":[2,147],"114":[2,147],"115":[2,147],"126":[2,147],"127":[2,147],"129":[2,147],"130":[2,147],"133":[2,147],"134":[2,147],"135":[2,147],"136":[2,147],"137":[2,147],"138":[2,147]},{"28":[1,206],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"119":207,"121":208,"122":[1,209]},{"1":[2,90],"4":[2,90],"28":[1,211],"29":[2,90],"55":[2,90],"58":[2,90],"66":[2,69],"67":[2,69],"68":[2,69],"70":[2,69],"71":[2,90],"72":[2,69],"73":[2,69],"76":[2,90],"78":[1,210],"84":[2,69],"85":[2,69],"86":[2,90],"90":[2,90],"99":[2,90],"101":[2,90],"102":[2,90],"103":[2,90],"110":[2,90],"114":[2,90],"115":[2,90],"126":[2,90],"127":[2,90],"129":[2,90],"130":[2,90],"133":[2,90],"134":[2,90],"135":[2,90],"136":[2,90],"137":[2,90],"138":[2,90]},{"4":[2,101],"27":163,"29":[2,101],"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":215,"42":161,"44":216,"45":166,"47":[1,47],"59":[1,167],"74":[1,214],"79":212,"80":213,"98":[1,56]},{"15":217,"16":122,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":123,"44":62,"45":29,"59":[1,58],"61":200,"63":50,"64":51,"65":30,"74":[1,70],"83":[1,31],"88":[1,57],"89":[1,69],"98":[1,56]},{"1":[2,48],"4":[2,48],"29":[2,48],"100":89,"101":[2,48],"103":[2,48],"106":90,"115":[2,48],"126":[2,48],"127":[2,48],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,133],"4":[2,133],"29":[2,133],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[2,133],"127":[2,133],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"99":[1,218],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,116],"4":[2,116],"28":[2,116],"29":[2,116],"40":[2,116],"43":[2,116],"55":[2,116],"58":[2,116],"66":[2,116],"67":[2,116],"68":[2,116],"70":[2,116],"71":[2,116],"72":[2,116],"73":[2,116],"76":[2,116],"78":[2,116],"84":[2,116],"85":[2,116],"86":[2,116],"90":[2,116],"99":[2,116],"101":[2,116],"102":[2,116],"103":[2,116],"110":[2,116],"114":[2,116],"115":[2,116],"126":[2,116],"127":[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],"137":[2,116],"138":[2,116],"139":[2,116]},{"4":[1,115],"6":219,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,115],"6":220,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,135],"4":[2,135],"28":[2,135],"29":[2,135],"55":[2,135],"58":[2,135],"71":[2,135],"76":[2,135],"86":[2,135],"90":[2,135],"99":[2,135],"100":89,"101":[1,65],"102":[1,221],"103":[1,66],"106":90,"110":[2,135],"114":[2,135],"115":[1,68],"126":[2,135],"127":[2,135],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,137],"4":[2,137],"28":[2,137],"29":[2,137],"55":[2,137],"58":[2,137],"71":[2,137],"76":[2,137],"86":[2,137],"90":[2,137],"99":[2,137],"100":89,"101":[1,65],"102":[1,222],"103":[1,66],"106":90,"110":[2,137],"114":[2,137],"115":[1,68],"126":[2,137],"127":[2,137],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,143],"4":[2,143],"28":[2,143],"29":[2,143],"55":[2,143],"58":[2,143],"71":[2,143],"76":[2,143],"86":[2,143],"90":[2,143],"99":[2,143],"101":[2,143],"102":[2,143],"103":[2,143],"110":[2,143],"114":[2,143],"115":[2,143],"126":[2,143],"127":[2,143],"129":[2,143],"130":[2,143],"133":[2,143],"134":[2,143],"135":[2,143],"136":[2,143],"137":[2,143],"138":[2,143]},{"1":[2,144],"4":[2,144],"28":[2,144],"29":[2,144],"55":[2,144],"58":[2,144],"71":[2,144],"76":[2,144],"86":[2,144],"90":[2,144],"99":[2,144],"100":89,"101":[1,65],"102":[2,144],"103":[1,66],"106":90,"110":[2,144],"114":[2,144],"115":[1,68],"126":[2,144],"127":[2,144],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"55":[1,224],"108":223,"109":[1,225]},{"55":[2,148],"109":[2,148],"111":226,"112":[1,228],"117":[1,227]},{"30":229,"31":[1,73]},{"55":[2,149],"109":[2,149],"112":[2,149]},{"55":[2,150],"109":[2,150],"112":[2,150]},{"1":[2,117],"4":[2,117],"28":[2,117],"29":[2,117],"40":[2,117],"55":[2,117],"58":[2,117],"66":[2,117],"67":[2,117],"68":[2,117],"70":[2,117],"71":[2,117],"72":[2,117],"73":[2,117],"76":[2,117],"84":[2,117],"85":[2,117],"86":[2,117],"90":[2,117],"99":[2,117],"101":[2,117],"102":[2,117],"103":[2,117],"109":[2,117],"110":[2,117],"112":[2,117],"114":[2,117],"115":[2,117],"126":[2,117],"127":[2,117],"129":[2,117],"130":[2,117],"133":[2,117],"134":[2,117],"135":[2,117],"136":[2,117],"137":[2,117],"138":[2,117]},{"4":[2,55],"28":[2,55],"54":230,"55":[1,231],"90":[2,55]},{"4":[2,119],"28":[2,119],"29":[2,119],"55":[2,119],"86":[2,119],"90":[2,119]},{"8":157,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,156],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":158,"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"87":232,"88":[1,57],"89":[1,69],"91":155,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,124],"28":[2,124],"29":[2,124],"55":[2,124],"58":[1,233],"86":[2,124],"90":[2,124],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[2,125],"28":[2,125],"29":[2,125],"55":[2,125],"86":[2,125],"90":[2,125]},{"4":[2,55],"28":[2,55],"54":234,"55":[1,235],"76":[2,55]},{"4":[2,86],"28":[2,86],"29":[2,86],"55":[2,86],"76":[2,86]},{"4":[2,40],"28":[2,40],"29":[2,40],"43":[1,236],"55":[2,40],"76":[2,40]},{"4":[2,43],"28":[2,43],"29":[2,43],"55":[2,43],"76":[2,43]},{"4":[2,44],"28":[2,44],"29":[2,44],"55":[2,44],"76":[2,44]},{"4":[2,45],"28":[2,45],"29":[2,45],"43":[2,45],"55":[2,45],"76":[2,45]},{"4":[2,46],"28":[2,46],"29":[2,46],"43":[2,46],"55":[2,46],"76":[2,46]},{"4":[2,47],"28":[2,47],"29":[2,47],"43":[2,47],"55":[2,47],"76":[2,47]},{"30":141,"31":[1,73]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"55":[2,28],"58":[2,28],"71":[2,28],"76":[2,28],"86":[2,28],"90":[2,28],"95":[2,28],"96":[2,28],"99":[2,28],"101":[2,28],"102":[2,28],"103":[2,28],"110":[2,28],"114":[2,28],"115":[2,28],"120":[2,28],"122":[2,28],"126":[2,28],"127":[2,28],"129":[2,28],"130":[2,28],"133":[2,28],"134":[2,28],"135":[2,28],"136":[2,28],"137":[2,28],"138":[2,28]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"55":[2,193],"58":[2,193],"71":[2,193],"76":[2,193],"86":[2,193],"90":[2,193],"99":[2,193],"100":89,"101":[2,193],"102":[2,193],"103":[2,193],"106":90,"110":[2,193],"114":[2,193],"115":[2,193],"126":[2,193],"127":[2,193],"129":[2,193],"130":[2,193],"133":[1,79],"134":[1,82],"135":[2,193],"136":[2,193],"137":[2,193],"138":[2,193]},{"1":[2,194],"4":[2,194],"28":[2,194],"29":[2,194],"55":[2,194],"58":[2,194],"71":[2,194],"76":[2,194],"86":[2,194],"90":[2,194],"99":[2,194],"100":89,"101":[2,194],"102":[2,194],"103":[2,194],"106":90,"110":[2,194],"114":[2,194],"115":[2,194],"126":[2,194],"127":[2,194],"129":[2,194],"130":[2,194],"133":[1,79],"134":[1,82],"135":[2,194],"136":[2,194],"137":[2,194],"138":[2,194]},{"1":[2,195],"4":[2,195],"28":[2,195],"29":[2,195],"55":[2,195],"58":[2,195],"71":[2,195],"76":[2,195],"86":[2,195],"90":[2,195],"99":[2,195],"100":89,"101":[2,195],"102":[2,195],"103":[2,195],"106":90,"110":[2,195],"114":[2,195],"115":[2,195],"126":[2,195],"127":[2,195],"129":[2,195],"130":[2,195],"133":[1,79],"134":[2,195],"135":[2,195],"136":[2,195],"137":[2,195],"138":[2,195]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"55":[2,196],"58":[2,196],"71":[2,196],"76":[2,196],"86":[2,196],"90":[2,196],"99":[2,196],"100":89,"101":[2,196],"102":[2,196],"103":[2,196],"106":90,"110":[2,196],"114":[2,196],"115":[2,196],"126":[2,196],"127":[2,196],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[2,196],"136":[2,196],"137":[2,196],"138":[2,196]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"55":[2,197],"58":[2,197],"71":[2,197],"76":[2,197],"86":[2,197],"90":[2,197],"99":[2,197],"100":89,"101":[2,197],"102":[2,197],"103":[2,197],"106":90,"110":[2,197],"114":[2,197],"115":[2,197],"126":[2,197],"127":[2,197],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[2,197],"137":[2,197],"138":[1,86]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"55":[2,198],"58":[2,198],"71":[2,198],"76":[2,198],"86":[2,198],"90":[2,198],"99":[2,198],"100":89,"101":[2,198],"102":[2,198],"103":[2,198],"106":90,"110":[2,198],"114":[2,198],"115":[2,198],"126":[2,198],"127":[2,198],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[2,198],"138":[1,86]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"55":[2,199],"58":[2,199],"71":[2,199],"76":[2,199],"86":[2,199],"90":[2,199],"99":[2,199],"100":89,"101":[2,199],"102":[2,199],"103":[2,199],"106":90,"110":[2,199],"114":[2,199],"115":[2,199],"126":[2,199],"127":[2,199],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[2,199],"137":[2,199],"138":[2,199]},{"1":[2,182],"4":[2,182],"28":[2,182],"29":[2,182],"55":[2,182],"58":[2,182],"71":[2,182],"76":[2,182],"86":[2,182],"90":[2,182],"99":[2,182],"100":89,"101":[1,65],"102":[2,182],"103":[1,66],"106":90,"110":[2,182],"114":[2,182],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"55":[2,184],"58":[2,184],"71":[2,184],"76":[2,184],"86":[2,184],"90":[2,184],"99":[2,184],"100":89,"101":[1,65],"102":[2,184],"103":[1,66],"106":90,"110":[2,184],"114":[2,184],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,181],"4":[2,181],"28":[2,181],"29":[2,181],"55":[2,181],"58":[2,181],"71":[2,181],"76":[2,181],"86":[2,181],"90":[2,181],"99":[2,181],"100":89,"101":[1,65],"102":[2,181],"103":[1,66],"106":90,"110":[2,181],"114":[2,181],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,183],"4":[2,183],"28":[2,183],"29":[2,183],"55":[2,183],"58":[2,183],"71":[2,183],"76":[2,183],"86":[2,183],"90":[2,183],"99":[2,183],"100":89,"101":[1,65],"102":[2,183],"103":[1,66],"106":90,"110":[2,183],"114":[2,183],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,106],"4":[2,106],"28":[2,106],"29":[2,106],"55":[2,106],"58":[2,106],"66":[2,106],"67":[2,106],"68":[2,106],"70":[2,106],"71":[2,106],"72":[2,106],"73":[2,106],"76":[2,106],"84":[2,106],"85":[2,106],"86":[2,106],"90":[2,106],"99":[2,106],"101":[2,106],"102":[2,106],"103":[2,106],"110":[2,106],"114":[2,106],"115":[2,106],"126":[2,106],"127":[2,106],"129":[2,106],"130":[2,106],"133":[2,106],"134":[2,106],"135":[2,106],"136":[2,106],"137":[2,106],"138":[2,106]},{"1":[2,76],"4":[2,76],"28":[2,76],"29":[2,76],"40":[2,76],"55":[2,76],"58":[2,76],"66":[2,76],"67":[2,76],"68":[2,76],"70":[2,76],"71":[2,76],"72":[2,76],"73":[2,76],"76":[2,76],"78":[2,76],"84":[2,76],"85":[2,76],"86":[2,76],"90":[2,76],"99":[2,76],"101":[2,76],"102":[2,76],"103":[2,76],"110":[2,76],"114":[2,76],"115":[2,76],"126":[2,76],"127":[2,76],"129":[2,76],"130":[2,76],"131":[2,76],"132":[2,76],"133":[2,76],"134":[2,76],"135":[2,76],"136":[2,76],"137":[2,76],"138":[2,76],"139":[2,76]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"40":[2,77],"55":[2,77],"58":[2,77],"66":[2,77],"67":[2,77],"68":[2,77],"70":[2,77],"71":[2,77],"72":[2,77],"73":[2,77],"76":[2,77],"78":[2,77],"84":[2,77],"85":[2,77],"86":[2,77],"90":[2,77],"99":[2,77],"101":[2,77],"102":[2,77],"103":[2,77],"110":[2,77],"114":[2,77],"115":[2,77],"126":[2,77],"127":[2,77],"129":[2,77],"130":[2,77],"131":[2,77],"132":[2,77],"133":[2,77],"134":[2,77],"135":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77]},{"1":[2,78],"4":[2,78],"28":[2,78],"29":[2,78],"40":[2,78],"55":[2,78],"58":[2,78],"66":[2,78],"67":[2,78],"68":[2,78],"70":[2,78],"71":[2,78],"72":[2,78],"73":[2,78],"76":[2,78],"78":[2,78],"84":[2,78],"85":[2,78],"86":[2,78],"90":[2,78],"99":[2,78],"101":[2,78],"102":[2,78],"103":[2,78],"110":[2,78],"114":[2,78],"115":[2,78],"126":[2,78],"127":[2,78],"129":[2,78],"130":[2,78],"131":[2,78],"132":[2,78],"133":[2,78],"134":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78]},{"71":[1,237],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,82],"4":[2,82],"28":[2,82],"29":[2,82],"40":[2,82],"55":[2,82],"58":[2,82],"66":[2,82],"67":[2,82],"68":[2,82],"70":[2,82],"71":[2,82],"72":[2,82],"73":[2,82],"76":[2,82],"78":[2,82],"84":[2,82],"85":[2,82],"86":[2,82],"90":[2,82],"99":[2,82],"101":[2,82],"102":[2,82],"103":[2,82],"110":[2,82],"114":[2,82],"115":[2,82],"126":[2,82],"127":[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],"139":[2,82]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"40":[2,83],"55":[2,83],"58":[2,83],"66":[2,83],"67":[2,83],"68":[2,83],"70":[2,83],"71":[2,83],"72":[2,83],"73":[2,83],"76":[2,83],"78":[2,83],"84":[2,83],"85":[2,83],"86":[2,83],"90":[2,83],"99":[2,83],"101":[2,83],"102":[2,83],"103":[2,83],"110":[2,83],"114":[2,83],"115":[2,83],"126":[2,83],"127":[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],"139":[2,83]},{"1":[2,107],"4":[2,107],"28":[2,107],"29":[2,107],"55":[2,107],"58":[2,107],"66":[2,107],"67":[2,107],"68":[2,107],"70":[2,107],"71":[2,107],"72":[2,107],"73":[2,107],"76":[2,107],"84":[2,107],"85":[2,107],"86":[2,107],"90":[2,107],"99":[2,107],"101":[2,107],"102":[2,107],"103":[2,107],"110":[2,107],"114":[2,107],"115":[2,107],"126":[2,107],"127":[2,107],"129":[2,107],"130":[2,107],"133":[2,107],"134":[2,107],"135":[2,107],"136":[2,107],"137":[2,107],"138":[2,107]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"55":[2,38],"58":[2,38],"71":[2,38],"76":[2,38],"86":[2,38],"90":[2,38],"99":[2,38],"100":89,"101":[2,38],"102":[2,38],"103":[2,38],"106":90,"110":[2,38],"114":[2,38],"115":[2,38],"126":[2,38],"127":[2,38],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":238,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,112],"4":[2,112],"28":[2,112],"29":[2,112],"55":[2,112],"58":[2,112],"66":[2,112],"67":[2,112],"68":[2,112],"70":[2,112],"71":[2,112],"72":[2,112],"73":[2,112],"76":[2,112],"84":[2,112],"85":[2,112],"86":[2,112],"90":[2,112],"99":[2,112],"101":[2,112],"102":[2,112],"103":[2,112],"110":[2,112],"114":[2,112],"115":[2,112],"126":[2,112],"127":[2,112],"129":[2,112],"130":[2,112],"133":[2,112],"134":[2,112],"135":[2,112],"136":[2,112],"137":[2,112],"138":[2,112]},{"4":[2,55],"28":[2,55],"54":239,"55":[1,231],"86":[2,55]},{"51":240,"52":[1,59],"53":[1,60]},{"56":241,"57":[1,112],"59":[1,113]},{"50":[2,61],"55":[2,61]},{"50":[2,62],"55":[2,62],"58":[1,242]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"55":[2,200],"58":[2,200],"71":[2,200],"76":[2,200],"86":[2,200],"90":[2,200],"99":[2,200],"100":89,"101":[2,200],"102":[2,200],"103":[2,200],"106":90,"110":[2,200],"114":[2,200],"115":[2,200],"126":[2,200],"127":[2,200],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":243,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,105],"4":[2,105],"28":[2,105],"29":[2,105],"55":[2,105],"58":[2,105],"62":96,"66":[1,98],"67":[1,99],"68":[1,100],"69":101,"70":[1,102],"71":[2,105],"72":[1,103],"73":[1,104],"76":[2,105],"81":95,"84":[1,97],"85":[2,110],"86":[2,105],"90":[2,105],"99":[2,105],"101":[2,105],"102":[2,105],"103":[2,105],"110":[2,105],"114":[2,105],"115":[2,105],"126":[2,105],"127":[2,105],"129":[2,105],"130":[2,105],"133":[2,105],"134":[2,105],"135":[2,105],"136":[2,105],"137":[2,105],"138":[2,105]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"55":[2,69],"58":[2,69],"66":[2,69],"67":[2,69],"68":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"84":[2,69],"85":[2,69],"86":[2,69],"90":[2,69],"99":[2,69],"101":[2,69],"102":[2,69],"103":[2,69],"110":[2,69],"114":[2,69],"115":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"133":[2,69],"134":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69]},{"8":244,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"55":[2,179],"58":[2,179],"71":[2,179],"76":[2,179],"86":[2,179],"90":[2,179],"99":[2,179],"101":[2,179],"102":[2,179],"103":[2,179],"110":[2,179],"114":[2,179],"115":[2,179],"120":[2,179],"126":[2,179],"127":[2,179],"129":[2,179],"130":[2,179],"133":[2,179],"134":[2,179],"135":[2,179],"136":[2,179],"137":[2,179],"138":[2,179]},{"1":[2,129],"4":[2,129],"28":[2,129],"29":[2,129],"55":[2,129],"58":[2,129],"71":[2,129],"76":[2,129],"86":[2,129],"90":[2,129],"95":[1,245],"99":[2,129],"101":[2,129],"102":[2,129],"103":[2,129],"110":[2,129],"114":[2,129],"115":[2,129],"126":[2,129],"127":[2,129],"129":[2,129],"130":[2,129],"133":[2,129],"134":[2,129],"135":[2,129],"136":[2,129],"137":[2,129],"138":[2,129]},{"4":[1,115],"6":246,"28":[1,6]},{"30":247,"31":[1,73]},{"119":248,"121":208,"122":[1,209]},{"29":[1,249],"120":[1,250],"121":251,"122":[1,209]},{"29":[2,172],"120":[2,172],"122":[2,172]},{"8":253,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"92":252,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"15":254,"16":122,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":123,"44":62,"45":29,"59":[1,58],"61":200,"63":50,"64":51,"65":30,"74":[1,70],"83":[1,31],"88":[1,57],"89":[1,69],"98":[1,56]},{"4":[2,101],"27":163,"29":[2,101],"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":215,"42":161,"44":216,"45":166,"47":[1,47],"59":[1,167],"74":[1,214],"79":255,"80":213,"98":[1,56]},{"4":[1,257],"29":[1,256]},{"4":[2,102],"29":[2,102],"76":[2,102]},{"4":[2,101],"27":163,"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":215,"42":161,"44":216,"45":166,"47":[1,47],"59":[1,167],"74":[1,214],"76":[2,101],"79":258,"80":213,"98":[1,56]},{"4":[2,98],"29":[2,98],"76":[2,98]},{"4":[2,43],"29":[2,43],"43":[1,259],"76":[2,43]},{"1":[2,96],"4":[2,96],"28":[1,260],"29":[2,96],"55":[2,96],"58":[2,96],"62":96,"66":[1,98],"67":[1,99],"68":[1,100],"69":101,"70":[1,102],"71":[2,96],"72":[1,103],"73":[1,104],"76":[2,96],"81":95,"84":[1,97],"85":[2,110],"86":[2,96],"90":[2,96],"99":[2,96],"101":[2,96],"102":[2,96],"103":[2,96],"110":[2,96],"114":[2,96],"115":[2,96],"126":[2,96],"127":[2,96],"129":[2,96],"130":[2,96],"133":[2,96],"134":[2,96],"135":[2,96],"136":[2,96],"137":[2,96],"138":[2,96]},{"1":[2,134],"4":[2,134],"28":[2,134],"29":[2,134],"43":[2,134],"55":[2,134],"58":[2,134],"66":[2,134],"67":[2,134],"68":[2,134],"70":[2,134],"71":[2,134],"72":[2,134],"73":[2,134],"76":[2,134],"84":[2,134],"85":[2,134],"86":[2,134],"90":[2,134],"99":[2,134],"101":[2,134],"102":[2,134],"103":[2,134],"110":[2,134],"114":[2,134],"115":[2,134],"126":[2,134],"127":[2,134],"129":[2,134],"130":[2,134],"133":[2,134],"134":[2,134],"135":[2,134],"136":[2,134],"137":[2,134],"138":[2,134]},{"1":[2,176],"4":[2,176],"28":[2,176],"29":[2,176],"55":[2,176],"58":[2,176],"71":[2,176],"76":[2,176],"86":[2,176],"90":[2,176],"99":[2,176],"101":[2,176],"102":[2,176],"103":[2,176],"110":[2,176],"114":[2,176],"115":[2,176],"120":[2,176],"126":[2,176],"127":[2,176],"129":[2,176],"130":[2,176],"133":[2,176],"134":[2,176],"135":[2,176],"136":[2,176],"137":[2,176],"138":[2,176]},{"1":[2,177],"4":[2,177],"28":[2,177],"29":[2,177],"55":[2,177],"58":[2,177],"71":[2,177],"76":[2,177],"86":[2,177],"90":[2,177],"99":[2,177],"101":[2,177],"102":[2,177],"103":[2,177],"110":[2,177],"114":[2,177],"115":[2,177],"120":[2,177],"126":[2,177],"127":[2,177],"129":[2,177],"130":[2,177],"133":[2,177],"134":[2,177],"135":[2,177],"136":[2,177],"137":[2,177],"138":[2,177]},{"8":261,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":262,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,161],"4":[2,161],"28":[2,161],"29":[2,161],"55":[2,161],"58":[2,161],"71":[2,161],"76":[2,161],"86":[2,161],"90":[2,161],"99":[2,161],"101":[2,161],"102":[2,161],"103":[2,161],"110":[2,161],"114":[2,161],"115":[2,161],"126":[2,161],"127":[2,161],"129":[2,161],"130":[2,161],"133":[2,161],"134":[2,161],"135":[2,161],"136":[2,161],"137":[2,161],"138":[2,161]},{"30":263,"31":[1,73],"63":151,"64":152,"74":[1,70],"89":[1,69],"107":264},{"8":265,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,163],"4":[2,163],"28":[2,163],"29":[2,163],"55":[2,163],"58":[2,163],"71":[2,163],"76":[2,163],"86":[2,163],"90":[2,163],"99":[2,163],"101":[2,163],"102":[2,163],"103":[2,163],"110":[2,163],"114":[2,163],"115":[2,163],"126":[2,163],"127":[2,163],"129":[2,163],"130":[2,163],"133":[2,163],"134":[2,163],"135":[2,163],"136":[2,163],"137":[2,163],"138":[2,163]},{"8":266,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":267,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"55":[1,269],"111":268,"112":[1,228]},{"4":[1,271],"28":[1,272],"90":[1,270]},{"4":[2,56],"8":157,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[2,56],"29":[2,56],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":158,"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"86":[2,56],"88":[1,57],"89":[1,69],"90":[2,56],"91":273,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":274,"55":[1,231]},{"4":[2,64],"28":[2,64],"29":[2,64],"55":[2,64],"86":[2,64],"90":[2,64]},{"4":[1,276],"28":[1,277],"76":[1,275]},{"4":[2,56],"27":163,"28":[2,56],"29":[2,56],"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":278,"42":161,"44":162,"45":166,"47":[1,47],"59":[1,167],"76":[2,56],"98":[1,56]},{"8":279,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,280],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"40":[2,81],"55":[2,81],"58":[2,81],"66":[2,81],"67":[2,81],"68":[2,81],"70":[2,81],"71":[2,81],"72":[2,81],"73":[2,81],"76":[2,81],"78":[2,81],"84":[2,81],"85":[2,81],"86":[2,81],"90":[2,81],"99":[2,81],"101":[2,81],"102":[2,81],"103":[2,81],"110":[2,81],"114":[2,81],"115":[2,81],"126":[2,81],"127":[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],"139":[2,81]},{"29":[1,281],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,271],"28":[1,272],"86":[1,282]},{"4":[1,115],"6":283,"28":[1,6]},{"50":[2,59],"55":[2,59]},{"50":[2,63],"55":[2,63]},{"29":[1,284],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,115],"6":285,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,115],"6":286,"28":[1,6]},{"1":[2,130],"4":[2,130],"28":[2,130],"29":[2,130],"55":[2,130],"58":[2,130],"71":[2,130],"76":[2,130],"86":[2,130],"90":[2,130],"99":[2,130],"101":[2,130],"102":[2,130],"103":[2,130],"110":[2,130],"114":[2,130],"115":[2,130],"126":[2,130],"127":[2,130],"129":[2,130],"130":[2,130],"133":[2,130],"134":[2,130],"135":[2,130],"136":[2,130],"137":[2,130],"138":[2,130]},{"4":[1,115],"6":287,"28":[1,6]},{"29":[1,288],"120":[1,289],"121":251,"122":[1,209]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"55":[2,170],"58":[2,170],"71":[2,170],"76":[2,170],"86":[2,170],"90":[2,170],"99":[2,170],"101":[2,170],"102":[2,170],"103":[2,170],"110":[2,170],"114":[2,170],"115":[2,170],"126":[2,170],"127":[2,170],"129":[2,170],"130":[2,170],"133":[2,170],"134":[2,170],"135":[2,170],"136":[2,170],"137":[2,170],"138":[2,170]},{"4":[1,115],"6":290,"28":[1,6]},{"29":[2,173],"120":[2,173],"122":[2,173]},{"4":[1,115],"6":291,"28":[1,6],"55":[1,292]},{"4":[2,126],"28":[2,126],"55":[2,126],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,91],"4":[2,91],"28":[1,293],"29":[2,91],"55":[2,91],"58":[2,91],"62":96,"66":[1,98],"67":[1,99],"68":[1,100],"69":101,"70":[1,102],"71":[2,91],"72":[1,103],"73":[1,104],"76":[2,91],"81":95,"84":[1,97],"85":[2,110],"86":[2,91],"90":[2,91],"99":[2,91],"101":[2,91],"102":[2,91],"103":[2,91],"110":[2,91],"114":[2,91],"115":[2,91],"126":[2,91],"127":[2,91],"129":[2,91],"130":[2,91],"133":[2,91],"134":[2,91],"135":[2,91],"136":[2,91],"137":[2,91],"138":[2,91]},{"4":[1,257],"29":[1,294]},{"1":[2,94],"4":[2,94],"28":[2,94],"29":[2,94],"55":[2,94],"58":[2,94],"71":[2,94],"76":[2,94],"86":[2,94],"90":[2,94],"99":[2,94],"101":[2,94],"102":[2,94],"103":[2,94],"110":[2,94],"114":[2,94],"115":[2,94],"126":[2,94],"127":[2,94],"129":[2,94],"130":[2,94],"133":[2,94],"134":[2,94],"135":[2,94],"136":[2,94],"137":[2,94],"138":[2,94]},{"27":163,"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":215,"42":161,"44":216,"45":166,"47":[1,47],"59":[1,167],"80":295,"98":[1,56]},{"4":[1,257],"76":[1,296]},{"8":297,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,298],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,101],"27":163,"29":[2,101],"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":215,"42":161,"44":216,"45":166,"47":[1,47],"59":[1,167],"74":[1,214],"79":299,"80":213,"98":[1,56]},{"1":[2,136],"4":[2,136],"28":[2,136],"29":[2,136],"55":[2,136],"58":[2,136],"71":[2,136],"76":[2,136],"86":[2,136],"90":[2,136],"99":[2,136],"100":89,"101":[1,65],"102":[2,136],"103":[1,66],"106":90,"110":[2,136],"114":[2,136],"115":[1,68],"126":[2,136],"127":[2,136],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,138],"4":[2,138],"28":[2,138],"29":[2,138],"55":[2,138],"58":[2,138],"71":[2,138],"76":[2,138],"86":[2,138],"90":[2,138],"99":[2,138],"100":89,"101":[1,65],"102":[2,138],"103":[1,66],"106":90,"110":[2,138],"114":[2,138],"115":[1,68],"126":[2,138],"127":[2,138],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"108":300,"109":[1,225],"112":[2,148]},{"111":301,"112":[1,228]},{"1":[2,151],"4":[2,151],"28":[2,151],"29":[2,151],"55":[2,151],"58":[2,151],"71":[2,151],"76":[2,151],"86":[2,151],"90":[2,151],"99":[2,151],"100":89,"101":[1,65],"102":[1,302],"103":[1,66],"106":90,"110":[1,303],"114":[2,151],"115":[1,68],"126":[2,151],"127":[2,151],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"100":89,"101":[1,65],"103":[1,66],"106":90,"113":304,"114":[1,305],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"55":[2,155],"58":[2,155],"71":[2,155],"76":[2,155],"86":[2,155],"90":[2,155],"99":[2,155],"100":89,"101":[1,65],"102":[1,306],"103":[1,66],"106":90,"110":[2,155],"114":[2,155],"115":[1,68],"126":[2,155],"127":[2,155],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,165],"4":[2,165],"28":[2,165],"29":[2,165],"55":[2,165],"58":[2,165],"71":[2,165],"76":[2,165],"86":[2,165],"90":[2,165],"99":[2,165],"101":[2,165],"102":[2,165],"103":[2,165],"110":[2,165],"114":[2,165],"115":[2,165],"126":[2,165],"127":[2,165],"129":[2,165],"130":[2,165],"133":[2,165],"134":[2,165],"135":[2,165],"136":[2,165],"137":[2,165],"138":[2,165]},{"30":308,"31":[1,73],"63":151,"64":152,"74":[1,70],"89":[1,69],"107":307},{"1":[2,118],"4":[2,118],"28":[2,118],"29":[2,118],"40":[2,118],"55":[2,118],"58":[2,118],"66":[2,118],"67":[2,118],"68":[2,118],"70":[2,118],"71":[2,118],"72":[2,118],"73":[2,118],"76":[2,118],"84":[2,118],"85":[2,118],"86":[2,118],"90":[2,118],"99":[2,118],"101":[2,118],"102":[2,118],"103":[2,118],"109":[2,118],"110":[2,118],"112":[2,118],"114":[2,118],"115":[2,118],"126":[2,118],"127":[2,118],"129":[2,118],"130":[2,118],"133":[2,118],"134":[2,118],"135":[2,118],"136":[2,118],"137":[2,118],"138":[2,118]},{"8":157,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":158,"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"91":309,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":157,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,156],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":158,"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"87":310,"88":[1,57],"89":[1,69],"91":155,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,120],"28":[2,120],"29":[2,120],"55":[2,120],"86":[2,120],"90":[2,120]},{"4":[1,271],"28":[1,272],"29":[1,311]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"40":[2,84],"55":[2,84],"58":[2,84],"66":[2,84],"67":[2,84],"68":[2,84],"70":[2,84],"71":[2,84],"72":[2,84],"73":[2,84],"76":[2,84],"84":[2,84],"85":[2,84],"86":[2,84],"90":[2,84],"99":[2,84],"101":[2,84],"102":[2,84],"103":[2,84],"109":[2,84],"110":[2,84],"112":[2,84],"114":[2,84],"115":[2,84],"126":[2,84],"127":[2,84],"129":[2,84],"130":[2,84],"133":[2,84],"134":[2,84],"135":[2,84],"136":[2,84],"137":[2,84],"138":[2,84]},{"27":163,"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":312,"42":161,"44":162,"45":166,"47":[1,47],"59":[1,167],"98":[1,56]},{"4":[2,85],"27":163,"28":[2,85],"29":[2,85],"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":160,"42":161,"44":162,"45":166,"47":[1,47],"55":[2,85],"59":[1,167],"75":313,"98":[1,56]},{"4":[2,87],"28":[2,87],"29":[2,87],"55":[2,87],"76":[2,87]},{"4":[2,41],"28":[2,41],"29":[2,41],"55":[2,41],"76":[2,41],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":314,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"55":[2,39],"58":[2,39],"71":[2,39],"76":[2,39],"86":[2,39],"90":[2,39],"99":[2,39],"101":[2,39],"102":[2,39],"103":[2,39],"110":[2,39],"114":[2,39],"115":[2,39],"126":[2,39],"127":[2,39],"129":[2,39],"130":[2,39],"133":[2,39],"134":[2,39],"135":[2,39],"136":[2,39],"137":[2,39],"138":[2,39]},{"1":[2,113],"4":[2,113],"28":[2,113],"29":[2,113],"55":[2,113],"58":[2,113],"66":[2,113],"67":[2,113],"68":[2,113],"70":[2,113],"71":[2,113],"72":[2,113],"73":[2,113],"76":[2,113],"84":[2,113],"85":[2,113],"86":[2,113],"90":[2,113],"99":[2,113],"101":[2,113],"102":[2,113],"103":[2,113],"110":[2,113],"114":[2,113],"115":[2,113],"126":[2,113],"127":[2,113],"129":[2,113],"130":[2,113],"133":[2,113],"134":[2,113],"135":[2,113],"136":[2,113],"137":[2,113],"138":[2,113]},{"1":[2,51],"4":[2,51],"28":[2,51],"29":[2,51],"55":[2,51],"58":[2,51],"71":[2,51],"76":[2,51],"86":[2,51],"90":[2,51],"99":[2,51],"101":[2,51],"102":[2,51],"103":[2,51],"110":[2,51],"114":[2,51],"115":[2,51],"126":[2,51],"127":[2,51],"129":[2,51],"130":[2,51],"133":[2,51],"134":[2,51],"135":[2,51],"136":[2,51],"137":[2,51],"138":[2,51]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"55":[2,201],"58":[2,201],"71":[2,201],"76":[2,201],"86":[2,201],"90":[2,201],"99":[2,201],"101":[2,201],"102":[2,201],"103":[2,201],"110":[2,201],"114":[2,201],"115":[2,201],"126":[2,201],"127":[2,201],"129":[2,201],"130":[2,201],"133":[2,201],"134":[2,201],"135":[2,201],"136":[2,201],"137":[2,201],"138":[2,201]},{"1":[2,178],"4":[2,178],"28":[2,178],"29":[2,178],"55":[2,178],"58":[2,178],"71":[2,178],"76":[2,178],"86":[2,178],"90":[2,178],"99":[2,178],"101":[2,178],"102":[2,178],"103":[2,178],"110":[2,178],"114":[2,178],"115":[2,178],"120":[2,178],"126":[2,178],"127":[2,178],"129":[2,178],"130":[2,178],"133":[2,178],"134":[2,178],"135":[2,178],"136":[2,178],"137":[2,178],"138":[2,178]},{"1":[2,131],"4":[2,131],"28":[2,131],"29":[2,131],"55":[2,131],"58":[2,131],"71":[2,131],"76":[2,131],"86":[2,131],"90":[2,131],"99":[2,131],"101":[2,131],"102":[2,131],"103":[2,131],"110":[2,131],"114":[2,131],"115":[2,131],"126":[2,131],"127":[2,131],"129":[2,131],"130":[2,131],"133":[2,131],"134":[2,131],"135":[2,131],"136":[2,131],"137":[2,131],"138":[2,131]},{"1":[2,132],"4":[2,132],"28":[2,132],"29":[2,132],"55":[2,132],"58":[2,132],"71":[2,132],"76":[2,132],"86":[2,132],"90":[2,132],"95":[2,132],"99":[2,132],"101":[2,132],"102":[2,132],"103":[2,132],"110":[2,132],"114":[2,132],"115":[2,132],"126":[2,132],"127":[2,132],"129":[2,132],"130":[2,132],"133":[2,132],"134":[2,132],"135":[2,132],"136":[2,132],"137":[2,132],"138":[2,132]},{"1":[2,168],"4":[2,168],"28":[2,168],"29":[2,168],"55":[2,168],"58":[2,168],"71":[2,168],"76":[2,168],"86":[2,168],"90":[2,168],"99":[2,168],"101":[2,168],"102":[2,168],"103":[2,168],"110":[2,168],"114":[2,168],"115":[2,168],"126":[2,168],"127":[2,168],"129":[2,168],"130":[2,168],"133":[2,168],"134":[2,168],"135":[2,168],"136":[2,168],"137":[2,168],"138":[2,168]},{"4":[1,115],"6":315,"28":[1,6]},{"29":[1,316]},{"4":[1,317],"29":[2,174],"120":[2,174],"122":[2,174]},{"8":318,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,101],"27":163,"29":[2,101],"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":215,"42":161,"44":216,"45":166,"47":[1,47],"59":[1,167],"74":[1,214],"79":319,"80":213,"98":[1,56]},{"1":[2,92],"4":[2,92],"28":[2,92],"29":[2,92],"55":[2,92],"58":[2,92],"71":[2,92],"76":[2,92],"86":[2,92],"90":[2,92],"99":[2,92],"101":[2,92],"102":[2,92],"103":[2,92],"110":[2,92],"114":[2,92],"115":[2,92],"126":[2,92],"127":[2,92],"129":[2,92],"130":[2,92],"133":[2,92],"134":[2,92],"135":[2,92],"136":[2,92],"137":[2,92],"138":[2,92]},{"4":[2,103],"29":[2,103],"76":[2,103]},{"4":[2,104],"29":[2,104],"76":[2,104]},{"4":[2,99],"29":[2,99],"76":[2,99],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":320,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[1,257],"29":[1,321]},{"1":[2,162],"4":[2,162],"28":[2,162],"29":[2,162],"55":[2,162],"58":[2,162],"71":[2,162],"76":[2,162],"86":[2,162],"90":[2,162],"99":[2,162],"101":[2,162],"102":[2,162],"103":[2,162],"110":[2,162],"114":[2,162],"115":[2,162],"126":[2,162],"127":[2,162],"129":[2,162],"130":[2,162],"133":[2,162],"134":[2,162],"135":[2,162],"136":[2,162],"137":[2,162],"138":[2,162]},{"1":[2,164],"4":[2,164],"28":[2,164],"29":[2,164],"55":[2,164],"58":[2,164],"71":[2,164],"76":[2,164],"86":[2,164],"90":[2,164],"99":[2,164],"101":[2,164],"102":[2,164],"103":[2,164],"110":[2,164],"114":[2,164],"115":[2,164],"126":[2,164],"127":[2,164],"129":[2,164],"130":[2,164],"133":[2,164],"134":[2,164],"135":[2,164],"136":[2,164],"137":[2,164],"138":[2,164]},{"8":322,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":323,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,167],"4":[2,167],"28":[2,167],"29":[2,167],"55":[2,167],"58":[2,167],"71":[2,167],"76":[2,167],"86":[2,167],"90":[2,167],"99":[2,167],"101":[2,167],"102":[2,167],"103":[2,167],"110":[2,167],"114":[2,167],"115":[2,167],"126":[2,167],"127":[2,167],"129":[2,167],"130":[2,167],"133":[2,167],"134":[2,167],"135":[2,167],"136":[2,167],"137":[2,167],"138":[2,167]},{"8":324,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":325,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"111":326,"112":[1,228]},{"112":[2,148]},{"4":[2,121],"28":[2,121],"29":[2,121],"55":[2,121],"86":[2,121],"90":[2,121]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":327,"55":[1,231]},{"4":[2,122],"28":[2,122],"29":[2,122],"55":[2,122],"86":[2,122],"90":[2,122]},{"4":[2,88],"28":[2,88],"29":[2,88],"55":[2,88],"76":[2,88]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":328,"55":[1,235]},{"29":[1,329],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"29":[1,330]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"55":[2,171],"58":[2,171],"71":[2,171],"76":[2,171],"86":[2,171],"90":[2,171],"99":[2,171],"101":[2,171],"102":[2,171],"103":[2,171],"110":[2,171],"114":[2,171],"115":[2,171],"126":[2,171],"127":[2,171],"129":[2,171],"130":[2,171],"133":[2,171],"134":[2,171],"135":[2,171],"136":[2,171],"137":[2,171],"138":[2,171]},{"29":[2,175],"120":[2,175],"122":[2,175]},{"4":[2,127],"28":[2,127],"55":[2,127],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,257],"29":[1,331]},{"29":[1,332],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,97],"4":[2,97],"28":[2,97],"29":[2,97],"55":[2,97],"58":[2,97],"71":[2,97],"76":[2,97],"86":[2,97],"90":[2,97],"99":[2,97],"101":[2,97],"102":[2,97],"103":[2,97],"110":[2,97],"114":[2,97],"115":[2,97],"126":[2,97],"127":[2,97],"129":[2,97],"130":[2,97],"133":[2,97],"134":[2,97],"135":[2,97],"136":[2,97],"137":[2,97],"138":[2,97]},{"1":[2,152],"4":[2,152],"28":[2,152],"29":[2,152],"55":[2,152],"58":[2,152],"71":[2,152],"76":[2,152],"86":[2,152],"90":[2,152],"99":[2,152],"100":89,"101":[1,65],"102":[2,152],"103":[1,66],"106":90,"110":[2,152],"114":[2,152],"115":[1,68],"126":[2,152],"127":[2,152],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,153],"4":[2,153],"28":[2,153],"29":[2,153],"55":[2,153],"58":[2,153],"71":[2,153],"76":[2,153],"86":[2,153],"90":[2,153],"99":[2,153],"100":89,"101":[1,65],"102":[1,333],"103":[1,66],"106":90,"110":[2,153],"114":[2,153],"115":[1,68],"126":[2,153],"127":[2,153],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,157],"4":[2,157],"28":[2,157],"29":[2,157],"55":[2,157],"58":[2,157],"71":[2,157],"76":[2,157],"86":[2,157],"90":[2,157],"99":[2,157],"100":89,"101":[1,65],"102":[1,334],"103":[1,66],"106":90,"110":[1,335],"114":[2,157],"115":[1,68],"126":[2,157],"127":[2,157],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"55":[2,156],"58":[2,156],"71":[2,156],"76":[2,156],"86":[2,156],"90":[2,156],"99":[2,156],"100":89,"101":[1,65],"102":[2,156],"103":[1,66],"106":90,"110":[2,156],"114":[2,156],"115":[1,68],"126":[2,156],"127":[2,156],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,166],"4":[2,166],"28":[2,166],"29":[2,166],"55":[2,166],"58":[2,166],"71":[2,166],"76":[2,166],"86":[2,166],"90":[2,166],"99":[2,166],"101":[2,166],"102":[2,166],"103":[2,166],"110":[2,166],"114":[2,166],"115":[2,166],"126":[2,166],"127":[2,166],"129":[2,166],"130":[2,166],"133":[2,166],"134":[2,166],"135":[2,166],"136":[2,166],"137":[2,166],"138":[2,166]},{"4":[1,271],"28":[1,272],"29":[1,336]},{"4":[1,276],"28":[1,277],"29":[1,337]},{"4":[2,42],"28":[2,42],"29":[2,42],"55":[2,42],"76":[2,42]},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"55":[2,169],"58":[2,169],"71":[2,169],"76":[2,169],"86":[2,169],"90":[2,169],"99":[2,169],"101":[2,169],"102":[2,169],"103":[2,169],"110":[2,169],"114":[2,169],"115":[2,169],"126":[2,169],"127":[2,169],"129":[2,169],"130":[2,169],"133":[2,169],"134":[2,169],"135":[2,169],"136":[2,169],"137":[2,169],"138":[2,169]},{"1":[2,93],"4":[2,93],"28":[2,93],"29":[2,93],"55":[2,93],"58":[2,93],"71":[2,93],"76":[2,93],"86":[2,93],"90":[2,93],"99":[2,93],"101":[2,93],"102":[2,93],"103":[2,93],"110":[2,93],"114":[2,93],"115":[2,93],"126":[2,93],"127":[2,93],"129":[2,93],"130":[2,93],"133":[2,93],"134":[2,93],"135":[2,93],"136":[2,93],"137":[2,93],"138":[2,93]},{"4":[2,100],"29":[2,100],"76":[2,100]},{"8":338,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":339,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":340,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,123],"28":[2,123],"29":[2,123],"55":[2,123],"86":[2,123],"90":[2,123]},{"4":[2,89],"28":[2,89],"29":[2,89],"55":[2,89],"76":[2,89]},{"1":[2,154],"4":[2,154],"28":[2,154],"29":[2,154],"55":[2,154],"58":[2,154],"71":[2,154],"76":[2,154],"86":[2,154],"90":[2,154],"99":[2,154],"100":89,"101":[1,65],"102":[2,154],"103":[1,66],"106":90,"110":[2,154],"114":[2,154],"115":[1,68],"126":[2,154],"127":[2,154],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,158],"4":[2,158],"28":[2,158],"29":[2,158],"55":[2,158],"58":[2,158],"71":[2,158],"76":[2,158],"86":[2,158],"90":[2,158],"99":[2,158],"100":89,"101":[1,65],"102":[2,158],"103":[1,66],"106":90,"110":[2,158],"114":[2,158],"115":[1,68],"126":[2,158],"127":[2,158],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,159],"4":[2,159],"28":[2,159],"29":[2,159],"55":[2,159],"58":[2,159],"71":[2,159],"76":[2,159],"86":[2,159],"90":[2,159],"99":[2,159],"100":89,"101":[1,65],"102":[1,341],"103":[1,66],"106":90,"110":[2,159],"114":[2,159],"115":[1,68],"126":[2,159],"127":[2,159],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":342,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,160],"4":[2,160],"28":[2,160],"29":[2,160],"55":[2,160],"58":[2,160],"71":[2,160],"76":[2,160],"86":[2,160],"90":[2,160],"99":[2,160],"100":89,"101":[1,65],"102":[2,160],"103":[1,66],"106":90,"110":[2,160],"114":[2,160],"115":[1,68],"126":[2,160],"127":[2,160],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]}], +-defaultActions: {"76":[2,4],"97":[2,111],"308":[2,148]}, ++table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[3]},{"1":[2,2],"27":74,"47":[1,47]},{"1":[2,3],"4":[1,75]},{"4":[1,76]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":77,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[1,78],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,8],"4":[2,8],"29":[2,8],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,9],"4":[2,9],"29":[2,9],"99":93,"100":[1,65],"102":[1,66],"105":94,"114":[1,68],"125":[1,91],"126":[1,92]},{"1":[2,15],"4":[2,15],"28":[2,15],"29":[2,15],"50":[2,15],"55":[2,15],"57":[2,15],"60":96,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"69":[2,15],"70":[1,103],"71":[1,104],"74":[2,15],"79":95,"82":[1,97],"83":[2,112],"84":[2,15],"89":[2,15],"98":[2,15],"100":[2,15],"101":[2,15],"102":[2,15],"109":[2,15],"113":[2,15],"114":[2,15],"125":[2,15],"126":[2,15],"128":[2,15],"129":[2,15],"132":[2,15],"133":[2,15],"134":[2,15],"135":[2,15],"136":[2,15],"137":[2,15]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"50":[2,16],"55":[2,16],"57":[2,16],"60":106,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"69":[2,16],"70":[1,103],"71":[1,104],"74":[2,16],"79":105,"82":[1,97],"83":[2,112],"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],"28":[2,17],"29":[2,17],"50":[2,17],"55":[2,17],"57":[2,17],"69":[2,17],"74":[2,17],"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],"28":[2,18],"29":[2,18],"50":[2,18],"55":[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],"28":[2,19],"29":[2,19],"50":[2,19],"55":[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],"28":[2,20],"29":[2,20],"50":[2,20],"55":[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],"28":[2,21],"29":[2,21],"50":[2,21],"55":[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],"28":[2,22],"29":[2,22],"50":[2,22],"55":[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],"28":[2,23],"29":[2,23],"50":[2,23],"55":[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],"28":[2,24],"29":[2,24],"50":[2,24],"55":[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],"28":[2,25],"29":[2,25],"50":[2,25],"55":[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],"28":[2,26],"29":[2,26],"50":[2,26],"55":[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,27],"4":[2,27],"28":[2,27],"29":[2,27],"50":[2,27],"55":[2,27],"57":[2,27],"69":[2,27],"74":[2,27],"84":[2,27],"89":[2,27],"98":[2,27],"100":[2,27],"101":[2,27],"102":[2,27],"109":[2,27],"113":[2,27],"114":[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,10],"4":[2,10],"29":[2,10],"100":[2,10],"102":[2,10],"114":[2,10],"125":[2,10],"126":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"100":[2,11],"102":[2,11],"114":[2,11],"125":[2,11],"126":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"100":[2,12],"102":[2,12],"114":[2,12],"125":[2,12],"126":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"100":[2,13],"102":[2,13],"114":[2,13],"125":[2,13],"126":[2,13]},{"1":[2,14],"4":[2,14],"29":[2,14],"100":[2,14],"102":[2,14],"114":[2,14],"125":[2,14],"126":[2,14]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"40":[1,107],"50":[2,74],"55":[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],"28":[2,75],"29":[2,75],"50":[2,75],"55":[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],"28":[2,76],"29":[2,76],"50":[2,76],"55":[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],"28":[2,77],"29":[2,77],"50":[2,77],"55":[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,110],"4":[2,110],"28":[2,110],"29":[2,110],"50":[2,110],"55":[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],"80":108,"82":[2,110],"83":[1,109],"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]},{"30":112,"31":[1,73],"44":113,"49":110,"50":[2,57],"55":[2,57],"56":111,"87":[1,114]},{"4":[1,116],"6":115,"28":[1,6]},{"8":117,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":119,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":120,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"15":122,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":121,"61":50,"62":51,"63":30,"72":[1,70],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"97":[1,56]},{"15":122,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":125,"61":50,"62":51,"63":30,"72":[1,70],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"97":[1,56]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"40":[2,71],"50":[2,71],"55":[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,129],"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,126],"131":[1,127],"132":[2,71],"133":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71],"138":[1,128]},{"1":[2,182],"4":[2,182],"28":[2,182],"29":[2,182],"50":[2,182],"55":[2,182],"57":[2,182],"69":[2,182],"74":[2,182],"84":[2,182],"89":[2,182],"98":[2,182],"100":[2,182],"101":[2,182],"102":[2,182],"109":[2,182],"113":[2,182],"114":[2,182],"119":[1,130],"125":[2,182],"126":[2,182],"128":[2,182],"129":[2,182],"132":[2,182],"133":[2,182],"134":[2,182],"135":[2,182],"136":[2,182],"137":[2,182]},{"4":[1,116],"6":131,"28":[1,6]},{"4":[1,116],"6":132,"28":[1,6]},{"1":[2,144],"4":[2,144],"28":[2,144],"29":[2,144],"50":[2,144],"55":[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]},{"4":[1,116],"6":133,"28":[1,6]},{"8":134,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,135],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,97],"4":[2,97],"15":122,"16":123,"28":[1,137],"29":[2,97],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"50":[2,97],"55":[2,97],"57":[2,97],"59":136,"61":50,"62":51,"63":30,"69":[2,97],"72":[1,70],"74":[2,97],"76":[1,138],"81":[1,31],"84":[2,97],"86":[1,57],"87":[1,58],"88":[1,69],"89":[2,97],"97":[1,56],"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,50],"4":[2,50],"28":[2,50],"29":[2,50],"50":[2,50],"55":[2,50],"57":[2,50],"69":[2,50],"74":[2,50],"84":[2,50],"89":[2,50],"94":[2,50],"95":[2,50],"98":[2,50],"100":[2,50],"101":[2,50],"102":[2,50],"109":[2,50],"113":[2,50],"114":[2,50],"119":[2,50],"121":[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,49],"4":[2,49],"8":139,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,49],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[2,49],"102":[2,49],"103":43,"104":[1,67],"105":44,"114":[2,49],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"125":[2,49],"126":[2,49],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":140,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"40":[2,72],"50":[2,72],"55":[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],"28":[2,73],"29":[2,73],"40":[2,73],"50":[2,73],"55":[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,34],"4":[2,34],"28":[2,34],"29":[2,34],"50":[2,34],"55":[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],"28":[2,35],"29":[2,35],"50":[2,35],"55":[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],"28":[2,36],"29":[2,36],"50":[2,36],"55":[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]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"50":[2,37],"55":[2,37],"57":[2,37],"64":[2,37],"65":[2,37],"66":[2,37],"68":[2,37],"69":[2,37],"70":[2,37],"71":[2,37],"74":[2,37],"82":[2,37],"83":[2,37],"84":[2,37],"89":[2,37],"98":[2,37],"100":[2,37],"101":[2,37],"102":[2,37],"109":[2,37],"113":[2,37],"114":[2,37],"125":[2,37],"126":[2,37],"128":[2,37],"129":[2,37],"132":[2,37],"133":[2,37],"134":[2,37],"135":[2,37],"136":[2,37],"137":[2,37]},{"8":141,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,116],"4":[2,116],"28":[2,116],"29":[2,116],"50":[2,116],"55":[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]},{"1":[2,117],"4":[2,117],"28":[2,117],"29":[2,117],"30":142,"31":[1,73],"50":[2,117],"55":[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],"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],"132":[2,117],"133":[2,117],"134":[2,117],"135":[2,117],"136":[2,117],"137":[2,117]},{"4":[2,53],"28":[2,53]},{"4":[2,54],"28":[2,54]},{"1":[2,67],"4":[2,67],"28":[2,67],"29":[2,67],"40":[2,67],"50":[2,67],"55":[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],"28":[2,70],"29":[2,70],"40":[2,70],"50":[2,70],"55":[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":143,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":144,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":145,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":146,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[1,116],"6":147,"8":148,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"30":150,"31":[1,73],"61":152,"62":153,"72":[1,70],"88":[1,69],"106":149,"115":[1,151]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,157],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"85":155,"86":[1,57],"87":[1,58],"88":[1,69],"89":[1,154],"90":156,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,87],"27":164,"28":[2,87],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":161,"42":162,"44":163,"45":167,"47":[1,47],"55":[2,87],"73":160,"74":[2,87],"87":[1,114],"97":[1,56]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"43":[2,32],"50":[2,32],"55":[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,33],"4":[2,33],"28":[2,33],"29":[2,33],"43":[2,33],"50":[2,33],"55":[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,31],"4":[2,31],"28":[2,31],"29":[2,31],"40":[2,31],"43":[2,31],"50":[2,31],"55":[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],"76":[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],"108":[2,31],"109":[2,31],"111":[2,31],"113":[2,31],"114":[2,31],"116":[2,31],"125":[2,31],"126":[2,31],"128":[2,31],"129":[2,31],"130":[2,31],"131":[2,31],"132":[2,31],"133":[2,31],"134":[2,31],"135":[2,31],"136":[2,31],"137":[2,31],"138":[2,31]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"50":[2,30],"55":[2,30],"57":[2,30],"69":[2,30],"74":[2,30],"84":[2,30],"89":[2,30],"94":[2,30],"95":[2,30],"98":[2,30],"100":[2,30],"101":[2,30],"102":[2,30],"109":[2,30],"113":[2,30],"114":[2,30],"119":[2,30],"121":[2,30],"125":[2,30],"126":[2,30],"128":[2,30],"129":[2,30],"132":[2,30],"133":[2,30],"134":[2,30],"135":[2,30],"136":[2,30],"137":[2,30]},{"1":[2,7],"4":[2,7],"7":168,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,7],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,4]},{"4":[1,75],"29":[1,169]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"50":[2,29],"55":[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,194],"4":[2,194],"28":[2,194],"29":[2,194],"50":[2,194],"55":[2,194],"57":[2,194],"69":[2,194],"74":[2,194],"84":[2,194],"89":[2,194],"98":[2,194],"100":[2,194],"101":[2,194],"102":[2,194],"109":[2,194],"113":[2,194],"114":[2,194],"125":[2,194],"126":[2,194],"128":[2,194],"129":[2,194],"132":[2,194],"133":[2,194],"134":[2,194],"135":[2,194],"136":[2,194],"137":[2,194]},{"8":170,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":171,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":172,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":173,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":174,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":175,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":176,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":177,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":178,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,143],"4":[2,143],"28":[2,143],"29":[2,143],"50":[2,143],"55":[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]},{"1":[2,148],"4":[2,148],"28":[2,148],"29":[2,148],"50":[2,148],"55":[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]},{"8":179,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":180,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,142],"4":[2,142],"28":[2,142],"29":[2,142],"50":[2,142],"55":[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],"28":[2,147],"29":[2,147],"50":[2,147],"55":[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]},{"80":181,"83":[1,109]},{"1":[2,68],"4":[2,68],"28":[2,68],"29":[2,68],"40":[2,68],"50":[2,68],"55":[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,113]},{"30":182,"31":[1,73]},{"30":183,"31":[1,73]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"30":184,"31":[1,73],"40":[2,81],"50":[2,81],"55":[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],"28":[2,82],"29":[2,82],"40":[2,82],"50":[2,82],"55":[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":185,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"67":186,"68":[1,102],"70":[1,103],"71":[1,104]},{"67":187,"68":[1,102],"70":[1,103],"71":[1,104]},{"80":188,"83":[1,109]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"40":[2,69],"50":[2,69],"55":[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":189,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,190],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,111],"4":[2,111],"28":[2,111],"29":[2,111],"50":[2,111],"55":[2,111],"57":[2,111],"64":[2,111],"65":[2,111],"66":[2,111],"68":[2,111],"69":[2,111],"70":[2,111],"71":[2,111],"74":[2,111],"82":[2,111],"83":[2,111],"84":[2,111],"89":[2,111],"98":[2,111],"100":[2,111],"101":[2,111],"102":[2,111],"109":[2,111],"113":[2,111],"114":[2,111],"125":[2,111],"126":[2,111],"128":[2,111],"129":[2,111],"132":[2,111],"133":[2,111],"134":[2,111],"135":[2,111],"136":[2,111],"137":[2,111]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,157],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"84":[1,191],"85":192,"86":[1,57],"87":[1,58],"88":[1,69],"90":156,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"50":[1,193],"55":[1,194]},{"50":[2,58],"55":[2,58]},{"40":[1,196],"50":[2,60],"55":[2,60],"57":[1,195]},{"40":[1,198],"50":[2,63],"55":[2,63],"57":[1,197]},{"30":142,"31":[1,73]},{"1":[2,52],"4":[2,52],"28":[2,52],"29":[2,52],"50":[2,52],"55":[2,52],"57":[2,52],"69":[2,52],"74":[2,52],"84":[2,52],"89":[2,52],"98":[2,52],"100":[2,52],"101":[2,52],"102":[2,52],"109":[2,52],"113":[2,52],"114":[2,52],"125":[2,52],"126":[2,52],"128":[2,52],"129":[2,52],"132":[2,52],"133":[2,52],"134":[2,52],"135":[2,52],"136":[2,52],"137":[2,52]},{"27":74,"47":[1,47]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"50":[2,187],"55":[2,187],"57":[2,187],"69":[2,187],"74":[2,187],"84":[2,187],"89":[2,187],"98":[2,187],"99":89,"100":[2,187],"101":[2,187],"102":[2,187],"105":90,"109":[2,187],"113":[2,187],"114":[2,187],"125":[2,187],"126":[2,187],"128":[2,187],"129":[2,187],"132":[1,79],"133":[2,187],"134":[2,187],"135":[2,187],"136":[2,187],"137":[2,187]},{"99":93,"100":[1,65],"102":[1,66],"105":94,"114":[1,68],"125":[1,91],"126":[1,92]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"50":[2,188],"55":[2,188],"57":[2,188],"69":[2,188],"74":[2,188],"84":[2,188],"89":[2,188],"98":[2,188],"99":89,"100":[2,188],"101":[2,188],"102":[2,188],"105":90,"109":[2,188],"113":[2,188],"114":[2,188],"125":[2,188],"126":[2,188],"128":[2,188],"129":[2,188],"132":[1,79],"133":[2,188],"134":[2,188],"135":[2,188],"136":[2,188],"137":[2,188]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"50":[2,189],"55":[2,189],"57":[2,189],"69":[2,189],"74":[2,189],"84":[2,189],"89":[2,189],"98":[2,189],"99":89,"100":[2,189],"101":[2,189],"102":[2,189],"105":90,"109":[2,189],"113":[2,189],"114":[2,189],"125":[2,189],"126":[2,189],"128":[2,189],"129":[2,189],"132":[1,79],"133":[2,189],"134":[2,189],"135":[2,189],"136":[2,189],"137":[2,189]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"50":[2,190],"55":[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]},{"60":96,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"70":[1,103],"71":[1,104],"79":95,"82":[1,97],"83":[2,112]},{"60":106,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"70":[1,103],"71":[1,104],"79":105,"82":[1,97],"83":[2,112]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"50":[2,74],"55":[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,191],"4":[2,191],"28":[2,191],"29":[2,191],"50":[2,191],"55":[2,191],"57":[2,191],"64":[2,71],"65":[2,71],"66":[2,71],"68":[2,71],"69":[2,191],"70":[2,71],"71":[2,71],"74":[2,191],"82":[2,71],"83":[2,71],"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],"28":[2,192],"29":[2,192],"50":[2,192],"55":[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]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"50":[2,193],"55":[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":199,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,200],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"15":201,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":202,"61":50,"62":51,"63":30,"72":[1,70],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"97":[1,56]},{"4":[1,116],"6":204,"28":[1,6],"123":[1,203]},{"1":[2,130],"4":[2,130],"28":[2,130],"29":[2,130],"50":[2,130],"55":[2,130],"57":[2,130],"69":[2,130],"74":[2,130],"84":[2,130],"89":[2,130],"93":205,"94":[1,206],"95":[1,207],"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]},{"1":[2,141],"4":[2,141],"28":[2,141],"29":[2,141],"50":[2,141],"55":[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,149],"4":[2,149],"28":[2,149],"29":[2,149],"50":[2,149],"55":[2,149],"57":[2,149],"69":[2,149],"74":[2,149],"84":[2,149],"89":[2,149],"98":[2,149],"100":[2,149],"101":[2,149],"102":[2,149],"109":[2,149],"113":[2,149],"114":[2,149],"125":[2,149],"126":[2,149],"128":[2,149],"129":[2,149],"132":[2,149],"133":[2,149],"134":[2,149],"135":[2,149],"136":[2,149],"137":[2,149]},{"28":[1,208],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"118":209,"120":210,"121":[1,211]},{"1":[2,92],"4":[2,92],"28":[1,213],"29":[2,92],"50":[2,92],"55":[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,212],"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],"27":164,"29":[2,103],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"72":[1,216],"77":214,"78":215,"87":[1,114],"97":[1,56]},{"15":219,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":202,"61":50,"62":51,"63":30,"72":[1,70],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"97":[1,56]},{"1":[2,48],"4":[2,48],"29":[2,48],"99":89,"100":[2,48],"102":[2,48],"105":90,"114":[2,48],"125":[2,48],"126":[2,48],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,135],"4":[2,135],"29":[2,135],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[2,135],"126":[2,135],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"98":[1,220],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,118],"4":[2,118],"28":[2,118],"29":[2,118],"40":[2,118],"43":[2,118],"50":[2,118],"55":[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],"76":[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],"109":[2,118],"113":[2,118],"114":[2,118],"125":[2,118],"126":[2,118],"128":[2,118],"129":[2,118],"130":[2,118],"131":[2,118],"132":[2,118],"133":[2,118],"134":[2,118],"135":[2,118],"136":[2,118],"137":[2,118],"138":[2,118]},{"4":[1,116],"6":221,"28":[1,6],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[1,116],"6":222,"28":[1,6],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,137],"4":[2,137],"28":[2,137],"29":[2,137],"50":[2,137],"55":[2,137],"57":[2,137],"69":[2,137],"74":[2,137],"84":[2,137],"89":[2,137],"98":[2,137],"99":89,"100":[1,65],"101":[1,223],"102":[1,66],"105":90,"109":[2,137],"113":[2,137],"114":[1,68],"125":[2,137],"126":[2,137],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,139],"4":[2,139],"28":[2,139],"29":[2,139],"50":[2,139],"55":[2,139],"57":[2,139],"69":[2,139],"74":[2,139],"84":[2,139],"89":[2,139],"98":[2,139],"99":89,"100":[1,65],"101":[1,224],"102":[1,66],"105":90,"109":[2,139],"113":[2,139],"114":[1,68],"125":[2,139],"126":[2,139],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,145],"4":[2,145],"28":[2,145],"29":[2,145],"50":[2,145],"55":[2,145],"57":[2,145],"69":[2,145],"74":[2,145],"84":[2,145],"89":[2,145],"98":[2,145],"100":[2,145],"101":[2,145],"102":[2,145],"109":[2,145],"113":[2,145],"114":[2,145],"125":[2,145],"126":[2,145],"128":[2,145],"129":[2,145],"132":[2,145],"133":[2,145],"134":[2,145],"135":[2,145],"136":[2,145],"137":[2,145]},{"1":[2,146],"4":[2,146],"28":[2,146],"29":[2,146],"50":[2,146],"55":[2,146],"57":[2,146],"69":[2,146],"74":[2,146],"84":[2,146],"89":[2,146],"98":[2,146],"99":89,"100":[1,65],"101":[2,146],"102":[1,66],"105":90,"109":[2,146],"113":[2,146],"114":[1,68],"125":[2,146],"126":[2,146],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"55":[1,226],"107":225,"108":[1,227]},{"55":[2,150],"108":[2,150],"110":228,"111":[1,230],"116":[1,229]},{"30":231,"31":[1,73]},{"55":[2,151],"108":[2,151],"111":[2,151]},{"55":[2,152],"108":[2,152],"111":[2,152]},{"1":[2,119],"4":[2,119],"28":[2,119],"29":[2,119],"40":[2,119],"50":[2,119],"55":[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]},{"4":[2,55],"28":[2,55],"54":232,"55":[1,233],"89":[2,55]},{"4":[2,121],"28":[2,121],"29":[2,121],"55":[2,121],"84":[2,121],"89":[2,121]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,157],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"85":234,"86":[1,57],"87":[1,58],"88":[1,69],"90":156,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,126],"28":[2,126],"29":[2,126],"55":[2,126],"57":[1,235],"84":[2,126],"89":[2,126],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[2,127],"28":[2,127],"29":[2,127],"55":[2,127],"84":[2,127],"89":[2,127]},{"4":[2,55],"28":[2,55],"54":236,"55":[1,237],"74":[2,55]},{"4":[2,88],"28":[2,88],"29":[2,88],"55":[2,88],"74":[2,88]},{"4":[2,40],"28":[2,40],"29":[2,40],"43":[1,238],"55":[2,40],"74":[2,40]},{"4":[2,43],"28":[2,43],"29":[2,43],"55":[2,43],"74":[2,43]},{"4":[2,44],"28":[2,44],"29":[2,44],"55":[2,44],"74":[2,44]},{"4":[2,45],"28":[2,45],"29":[2,45],"43":[2,45],"55":[2,45],"74":[2,45]},{"4":[2,46],"28":[2,46],"29":[2,46],"43":[2,46],"55":[2,46],"74":[2,46]},{"4":[2,47],"28":[2,47],"29":[2,47],"43":[2,47],"55":[2,47],"74":[2,47]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"50":[2,28],"55":[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,195],"4":[2,195],"28":[2,195],"29":[2,195],"50":[2,195],"55":[2,195],"57":[2,195],"69":[2,195],"74":[2,195],"84":[2,195],"89":[2,195],"98":[2,195],"99":89,"100":[2,195],"101":[2,195],"102":[2,195],"105":90,"109":[2,195],"113":[2,195],"114":[2,195],"125":[2,195],"126":[2,195],"128":[2,195],"129":[2,195],"132":[1,79],"133":[1,82],"134":[2,195],"135":[2,195],"136":[2,195],"137":[2,195]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"50":[2,196],"55":[2,196],"57":[2,196],"69":[2,196],"74":[2,196],"84":[2,196],"89":[2,196],"98":[2,196],"99":89,"100":[2,196],"101":[2,196],"102":[2,196],"105":90,"109":[2,196],"113":[2,196],"114":[2,196],"125":[2,196],"126":[2,196],"128":[2,196],"129":[2,196],"132":[1,79],"133":[1,82],"134":[2,196],"135":[2,196],"136":[2,196],"137":[2,196]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"50":[2,197],"55":[2,197],"57":[2,197],"69":[2,197],"74":[2,197],"84":[2,197],"89":[2,197],"98":[2,197],"99":89,"100":[2,197],"101":[2,197],"102":[2,197],"105":90,"109":[2,197],"113":[2,197],"114":[2,197],"125":[2,197],"126":[2,197],"128":[2,197],"129":[2,197],"132":[1,79],"133":[2,197],"134":[2,197],"135":[2,197],"136":[2,197],"137":[2,197]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"50":[2,198],"55":[2,198],"57":[2,198],"69":[2,198],"74":[2,198],"84":[2,198],"89":[2,198],"98":[2,198],"99":89,"100":[2,198],"101":[2,198],"102":[2,198],"105":90,"109":[2,198],"113":[2,198],"114":[2,198],"125":[2,198],"126":[2,198],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[2,198],"135":[2,198],"136":[2,198],"137":[2,198]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"50":[2,199],"55":[2,199],"57":[2,199],"69":[2,199],"74":[2,199],"84":[2,199],"89":[2,199],"98":[2,199],"99":89,"100":[2,199],"101":[2,199],"102":[2,199],"105":90,"109":[2,199],"113":[2,199],"114":[2,199],"125":[2,199],"126":[2,199],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[2,199],"136":[2,199],"137":[1,86]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"50":[2,200],"55":[2,200],"57":[2,200],"69":[2,200],"74":[2,200],"84":[2,200],"89":[2,200],"98":[2,200],"99":89,"100":[2,200],"101":[2,200],"102":[2,200],"105":90,"109":[2,200],"113":[2,200],"114":[2,200],"125":[2,200],"126":[2,200],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[2,200],"137":[1,86]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"50":[2,201],"55":[2,201],"57":[2,201],"69":[2,201],"74":[2,201],"84":[2,201],"89":[2,201],"98":[2,201],"99":89,"100":[2,201],"101":[2,201],"102":[2,201],"105":90,"109":[2,201],"113":[2,201],"114":[2,201],"125":[2,201],"126":[2,201],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[2,201],"136":[2,201],"137":[2,201]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"50":[2,184],"55":[2,184],"57":[2,184],"69":[2,184],"74":[2,184],"84":[2,184],"89":[2,184],"98":[2,184],"99":89,"100":[1,65],"101":[2,184],"102":[1,66],"105":90,"109":[2,184],"113":[2,184],"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"50":[2,186],"55":[2,186],"57":[2,186],"69":[2,186],"74":[2,186],"84":[2,186],"89":[2,186],"98":[2,186],"99":89,"100":[1,65],"101":[2,186],"102":[1,66],"105":90,"109":[2,186],"113":[2,186],"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,183],"4":[2,183],"28":[2,183],"29":[2,183],"50":[2,183],"55":[2,183],"57":[2,183],"69":[2,183],"74":[2,183],"84":[2,183],"89":[2,183],"98":[2,183],"99":89,"100":[1,65],"101":[2,183],"102":[1,66],"105":90,"109":[2,183],"113":[2,183],"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"50":[2,185],"55":[2,185],"57":[2,185],"69":[2,185],"74":[2,185],"84":[2,185],"89":[2,185],"98":[2,185],"99":89,"100":[1,65],"101":[2,185],"102":[1,66],"105":90,"109":[2,185],"113":[2,185],"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,108],"4":[2,108],"28":[2,108],"29":[2,108],"50":[2,108],"55":[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,78],"4":[2,78],"28":[2,78],"29":[2,78],"40":[2,78],"50":[2,78],"55":[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],"28":[2,79],"29":[2,79],"40":[2,79],"50":[2,79],"55":[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],"28":[2,80],"29":[2,80],"40":[2,80],"50":[2,80],"55":[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":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"40":[2,84],"50":[2,84],"55":[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],"28":[2,85],"29":[2,85],"40":[2,85],"50":[2,85],"55":[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,109],"4":[2,109],"28":[2,109],"29":[2,109],"50":[2,109],"55":[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],"82":[2,109],"83":[2,109],"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]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"50":[2,38],"55":[2,38],"57":[2,38],"69":[2,38],"74":[2,38],"84":[2,38],"89":[2,38],"98":[2,38],"99":89,"100":[2,38],"101":[2,38],"102":[2,38],"105":90,"109":[2,38],"113":[2,38],"114":[2,38],"125":[2,38],"126":[2,38],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"8":240,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,114],"4":[2,114],"28":[2,114],"29":[2,114],"50":[2,114],"55":[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]},{"4":[2,55],"28":[2,55],"54":241,"55":[1,233],"84":[2,55]},{"51":242,"52":[1,59],"53":[1,60]},{"30":112,"31":[1,73],"44":113,"56":243,"87":[1,114]},{"50":[2,61],"55":[2,61]},{"8":244,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"50":[2,64],"55":[2,64]},{"8":245,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,202],"4":[2,202],"28":[2,202],"29":[2,202],"50":[2,202],"55":[2,202],"57":[2,202],"69":[2,202],"74":[2,202],"84":[2,202],"89":[2,202],"98":[2,202],"99":89,"100":[2,202],"101":[2,202],"102":[2,202],"105":90,"109":[2,202],"113":[2,202],"114":[2,202],"125":[2,202],"126":[2,202],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"8":246,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,107],"4":[2,107],"28":[2,107],"29":[2,107],"50":[2,107],"55":[2,107],"57":[2,107],"60":96,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"69":[2,107],"70":[1,103],"71":[1,104],"74":[2,107],"79":95,"82":[1,97],"83":[2,112],"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,71],"4":[2,71],"28":[2,71],"29":[2,71],"50":[2,71],"55":[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]},{"8":247,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,181],"4":[2,181],"28":[2,181],"29":[2,181],"50":[2,181],"55":[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":[2,181],"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]},{"1":[2,131],"4":[2,131],"28":[2,131],"29":[2,131],"50":[2,131],"55":[2,131],"57":[2,131],"69":[2,131],"74":[2,131],"84":[2,131],"89":[2,131],"94":[1,248],"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,116],"6":249,"28":[1,6]},{"30":250,"31":[1,73]},{"118":251,"120":210,"121":[1,211]},{"29":[1,252],"119":[1,253],"120":254,"121":[1,211]},{"29":[2,174],"119":[2,174],"121":[2,174]},{"8":256,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"91":255,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"15":257,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":202,"61":50,"62":51,"63":30,"72":[1,70],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"97":[1,56]},{"4":[2,103],"27":164,"29":[2,103],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"72":[1,216],"77":258,"78":215,"87":[1,114],"97":[1,56]},{"4":[1,260],"29":[1,259]},{"4":[2,104],"29":[2,104],"74":[2,104]},{"4":[2,103],"27":164,"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"72":[1,216],"74":[2,103],"77":261,"78":215,"87":[1,114],"97":[1,56]},{"4":[2,100],"29":[2,100],"74":[2,100]},{"4":[2,43],"29":[2,43],"43":[1,262],"74":[2,43]},{"1":[2,98],"4":[2,98],"28":[1,263],"29":[2,98],"50":[2,98],"55":[2,98],"57":[2,98],"60":96,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"69":[2,98],"70":[1,103],"71":[1,104],"74":[2,98],"79":95,"82":[1,97],"83":[2,112],"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,136],"4":[2,136],"28":[2,136],"29":[2,136],"43":[2,136],"50":[2,136],"55":[2,136],"57":[2,136],"64":[2,136],"65":[2,136],"66":[2,136],"68":[2,136],"69":[2,136],"70":[2,136],"71":[2,136],"74":[2,136],"82":[2,136],"83":[2,136],"84":[2,136],"89":[2,136],"98":[2,136],"100":[2,136],"101":[2,136],"102":[2,136],"109":[2,136],"113":[2,136],"114":[2,136],"125":[2,136],"126":[2,136],"128":[2,136],"129":[2,136],"132":[2,136],"133":[2,136],"134":[2,136],"135":[2,136],"136":[2,136],"137":[2,136]},{"1":[2,178],"4":[2,178],"28":[2,178],"29":[2,178],"50":[2,178],"55":[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]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"50":[2,179],"55":[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]},{"8":264,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":265,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,163],"4":[2,163],"28":[2,163],"29":[2,163],"50":[2,163],"55":[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]},{"30":266,"31":[1,73],"61":152,"62":153,"72":[1,70],"88":[1,69],"106":267},{"8":268,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,165],"4":[2,165],"28":[2,165],"29":[2,165],"50":[2,165],"55":[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":269,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":270,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"55":[1,272],"110":271,"111":[1,230]},{"4":[1,274],"28":[1,275],"89":[1,273]},{"4":[2,56],"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[2,56],"29":[2,56],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"84":[2,56],"86":[1,57],"87":[1,58],"88":[1,69],"89":[2,56],"90":276,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":277,"55":[1,233]},{"4":[2,66],"28":[2,66],"29":[2,66],"55":[2,66],"84":[2,66],"89":[2,66]},{"4":[1,279],"28":[1,280],"74":[1,278]},{"4":[2,56],"27":164,"28":[2,56],"29":[2,56],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":281,"42":162,"44":163,"45":167,"47":[1,47],"74":[2,56],"87":[1,114],"97":[1,56]},{"8":282,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,283],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"40":[2,83],"50":[2,83],"55":[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]},{"29":[1,284],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[1,274],"28":[1,275],"84":[1,285]},{"4":[1,116],"6":286,"28":[1,6]},{"50":[2,59],"55":[2,59]},{"50":[2,62],"55":[2,62],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"50":[2,65],"55":[2,65],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"29":[1,287],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[1,116],"6":288,"28":[1,6],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[1,116],"6":289,"28":[1,6]},{"1":[2,132],"4":[2,132],"28":[2,132],"29":[2,132],"50":[2,132],"55":[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]},{"4":[1,116],"6":290,"28":[1,6]},{"29":[1,291],"119":[1,292],"120":254,"121":[1,211]},{"1":[2,172],"4":[2,172],"28":[2,172],"29":[2,172],"50":[2,172],"55":[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]},{"4":[1,116],"6":293,"28":[1,6]},{"29":[2,175],"119":[2,175],"121":[2,175]},{"4":[1,116],"6":294,"28":[1,6],"55":[1,295]},{"4":[2,128],"28":[2,128],"55":[2,128],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,93],"4":[2,93],"28":[1,296],"29":[2,93],"50":[2,93],"55":[2,93],"57":[2,93],"60":96,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"69":[2,93],"70":[1,103],"71":[1,104],"74":[2,93],"79":95,"82":[1,97],"83":[2,112],"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,260],"29":[1,297]},{"1":[2,96],"4":[2,96],"28":[2,96],"29":[2,96],"50":[2,96],"55":[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]},{"27":164,"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"78":298,"87":[1,114],"97":[1,56]},{"4":[1,260],"74":[1,299]},{"8":300,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,301],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,103],"27":164,"29":[2,103],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"72":[1,216],"77":302,"78":215,"87":[1,114],"97":[1,56]},{"1":[2,138],"4":[2,138],"28":[2,138],"29":[2,138],"50":[2,138],"55":[2,138],"57":[2,138],"69":[2,138],"74":[2,138],"84":[2,138],"89":[2,138],"98":[2,138],"99":89,"100":[1,65],"101":[2,138],"102":[1,66],"105":90,"109":[2,138],"113":[2,138],"114":[1,68],"125":[2,138],"126":[2,138],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"50":[2,140],"55":[2,140],"57":[2,140],"69":[2,140],"74":[2,140],"84":[2,140],"89":[2,140],"98":[2,140],"99":89,"100":[1,65],"101":[2,140],"102":[1,66],"105":90,"109":[2,140],"113":[2,140],"114":[1,68],"125":[2,140],"126":[2,140],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"107":303,"108":[1,227],"111":[2,150]},{"110":304,"111":[1,230]},{"1":[2,153],"4":[2,153],"28":[2,153],"29":[2,153],"50":[2,153],"55":[2,153],"57":[2,153],"69":[2,153],"74":[2,153],"84":[2,153],"89":[2,153],"98":[2,153],"99":89,"100":[1,65],"101":[1,305],"102":[1,66],"105":90,"109":[1,306],"113":[2,153],"114":[1,68],"125":[2,153],"126":[2,153],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"99":89,"100":[1,65],"102":[1,66],"105":90,"112":307,"113":[1,308],"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,157],"4":[2,157],"28":[2,157],"29":[2,157],"50":[2,157],"55":[2,157],"57":[2,157],"69":[2,157],"74":[2,157],"84":[2,157],"89":[2,157],"98":[2,157],"99":89,"100":[1,65],"101":[1,309],"102":[1,66],"105":90,"109":[2,157],"113":[2,157],"114":[1,68],"125":[2,157],"126":[2,157],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,167],"4":[2,167],"28":[2,167],"29":[2,167],"50":[2,167],"55":[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]},{"30":311,"31":[1,73],"61":152,"62":153,"72":[1,70],"88":[1,69],"106":310},{"1":[2,120],"4":[2,120],"28":[2,120],"29":[2,120],"40":[2,120],"50":[2,120],"55":[2,120],"57":[2,120],"64":[2,120],"65":[2,120],"66":[2,120],"68":[2,120],"69":[2,120],"70":[2,120],"71":[2,120],"74":[2,120],"82":[2,120],"83":[2,120],"84":[2,120],"89":[2,120],"98":[2,120],"100":[2,120],"101":[2,120],"102":[2,120],"108":[2,120],"109":[2,120],"111":[2,120],"113":[2,120],"114":[2,120],"125":[2,120],"126":[2,120],"128":[2,120],"129":[2,120],"132":[2,120],"133":[2,120],"134":[2,120],"135":[2,120],"136":[2,120],"137":[2,120]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"90":312,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,157],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"85":313,"86":[1,57],"87":[1,58],"88":[1,69],"90":156,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,122],"28":[2,122],"29":[2,122],"55":[2,122],"84":[2,122],"89":[2,122]},{"4":[1,274],"28":[1,275],"29":[1,314]},{"1":[2,86],"4":[2,86],"28":[2,86],"29":[2,86],"40":[2,86],"50":[2,86],"55":[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]},{"27":164,"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":315,"42":162,"44":163,"45":167,"47":[1,47],"87":[1,114],"97":[1,56]},{"4":[2,87],"27":164,"28":[2,87],"29":[2,87],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":161,"42":162,"44":163,"45":167,"47":[1,47],"55":[2,87],"73":316,"87":[1,114],"97":[1,56]},{"4":[2,89],"28":[2,89],"29":[2,89],"55":[2,89],"74":[2,89]},{"4":[2,41],"28":[2,41],"29":[2,41],"55":[2,41],"74":[2,41],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"8":317,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"50":[2,39],"55":[2,39],"57":[2,39],"69":[2,39],"74":[2,39],"84":[2,39],"89":[2,39],"98":[2,39],"100":[2,39],"101":[2,39],"102":[2,39],"109":[2,39],"113":[2,39],"114":[2,39],"125":[2,39],"126":[2,39],"128":[2,39],"129":[2,39],"132":[2,39],"133":[2,39],"134":[2,39],"135":[2,39],"136":[2,39],"137":[2,39]},{"1":[2,115],"4":[2,115],"28":[2,115],"29":[2,115],"50":[2,115],"55":[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,51],"4":[2,51],"28":[2,51],"29":[2,51],"50":[2,51],"55":[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]},{"1":[2,203],"4":[2,203],"28":[2,203],"29":[2,203],"50":[2,203],"55":[2,203],"57":[2,203],"69":[2,203],"74":[2,203],"84":[2,203],"89":[2,203],"98":[2,203],"100":[2,203],"101":[2,203],"102":[2,203],"109":[2,203],"113":[2,203],"114":[2,203],"125":[2,203],"126":[2,203],"128":[2,203],"129":[2,203],"132":[2,203],"133":[2,203],"134":[2,203],"135":[2,203],"136":[2,203],"137":[2,203]},{"1":[2,180],"4":[2,180],"28":[2,180],"29":[2,180],"50":[2,180],"55":[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,133],"4":[2,133],"28":[2,133],"29":[2,133],"50":[2,133],"55":[2,133],"57":[2,133],"69":[2,133],"74":[2,133],"84":[2,133],"89":[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,134],"4":[2,134],"28":[2,134],"29":[2,134],"50":[2,134],"55":[2,134],"57":[2,134],"69":[2,134],"74":[2,134],"84":[2,134],"89":[2,134],"94":[2,134],"98":[2,134],"100":[2,134],"101":[2,134],"102":[2,134],"109":[2,134],"113":[2,134],"114":[2,134],"125":[2,134],"126":[2,134],"128":[2,134],"129":[2,134],"132":[2,134],"133":[2,134],"134":[2,134],"135":[2,134],"136":[2,134],"137":[2,134]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"50":[2,170],"55":[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]},{"4":[1,116],"6":318,"28":[1,6]},{"29":[1,319]},{"4":[1,320],"29":[2,176],"119":[2,176],"121":[2,176]},{"8":321,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,103],"27":164,"29":[2,103],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"72":[1,216],"77":322,"78":215,"87":[1,114],"97":[1,56]},{"1":[2,94],"4":[2,94],"28":[2,94],"29":[2,94],"50":[2,94],"55":[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],"29":[2,105],"74":[2,105]},{"4":[2,106],"29":[2,106],"74":[2,106]},{"4":[2,101],"29":[2,101],"74":[2,101],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"8":323,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[1,260],"29":[1,324]},{"1":[2,164],"4":[2,164],"28":[2,164],"29":[2,164],"50":[2,164],"55":[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]},{"1":[2,166],"4":[2,166],"28":[2,166],"29":[2,166],"50":[2,166],"55":[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]},{"8":325,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":326,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"50":[2,169],"55":[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]},{"8":327,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":328,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"110":329,"111":[1,230]},{"111":[2,150]},{"4":[2,123],"28":[2,123],"29":[2,123],"55":[2,123],"84":[2,123],"89":[2,123]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":330,"55":[1,233]},{"4":[2,124],"28":[2,124],"29":[2,124],"55":[2,124],"84":[2,124],"89":[2,124]},{"4":[2,90],"28":[2,90],"29":[2,90],"55":[2,90],"74":[2,90]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":331,"55":[1,237]},{"29":[1,332],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"29":[1,333]},{"1":[2,173],"4":[2,173],"28":[2,173],"29":[2,173],"50":[2,173],"55":[2,173],"57":[2,173],"69":[2,173],"74":[2,173],"84":[2,173],"89":[2,173],"98":[2,173],"100":[2,173],"101":[2,173],"102":[2,173],"109":[2,173],"113":[2,173],"114":[2,173],"125":[2,173],"126":[2,173],"128":[2,173],"129":[2,173],"132":[2,173],"133":[2,173],"134":[2,173],"135":[2,173],"136":[2,173],"137":[2,173]},{"29":[2,177],"119":[2,177],"121":[2,177]},{"4":[2,129],"28":[2,129],"55":[2,129],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[1,260],"29":[1,334]},{"29":[1,335],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,99],"4":[2,99],"28":[2,99],"29":[2,99],"50":[2,99],"55":[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,154],"4":[2,154],"28":[2,154],"29":[2,154],"50":[2,154],"55":[2,154],"57":[2,154],"69":[2,154],"74":[2,154],"84":[2,154],"89":[2,154],"98":[2,154],"99":89,"100":[1,65],"101":[2,154],"102":[1,66],"105":90,"109":[2,154],"113":[2,154],"114":[1,68],"125":[2,154],"126":[2,154],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"50":[2,155],"55":[2,155],"57":[2,155],"69":[2,155],"74":[2,155],"84":[2,155],"89":[2,155],"98":[2,155],"99":89,"100":[1,65],"101":[1,336],"102":[1,66],"105":90,"109":[2,155],"113":[2,155],"114":[1,68],"125":[2,155],"126":[2,155],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,159],"4":[2,159],"28":[2,159],"29":[2,159],"50":[2,159],"55":[2,159],"57":[2,159],"69":[2,159],"74":[2,159],"84":[2,159],"89":[2,159],"98":[2,159],"99":89,"100":[1,65],"101":[1,337],"102":[1,66],"105":90,"109":[1,338],"113":[2,159],"114":[1,68],"125":[2,159],"126":[2,159],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,158],"4":[2,158],"28":[2,158],"29":[2,158],"50":[2,158],"55":[2,158],"57":[2,158],"69":[2,158],"74":[2,158],"84":[2,158],"89":[2,158],"98":[2,158],"99":89,"100":[1,65],"101":[2,158],"102":[1,66],"105":90,"109":[2,158],"113":[2,158],"114":[1,68],"125":[2,158],"126":[2,158],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,168],"4":[2,168],"28":[2,168],"29":[2,168],"50":[2,168],"55":[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]},{"4":[1,274],"28":[1,275],"29":[1,339]},{"4":[1,279],"28":[1,280],"29":[1,340]},{"4":[2,42],"28":[2,42],"29":[2,42],"55":[2,42],"74":[2,42]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"50":[2,171],"55":[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]},{"1":[2,95],"4":[2,95],"28":[2,95],"29":[2,95],"50":[2,95],"55":[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],"29":[2,102],"74":[2,102]},{"8":341,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":342,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":343,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,125],"28":[2,125],"29":[2,125],"55":[2,125],"84":[2,125],"89":[2,125]},{"4":[2,91],"28":[2,91],"29":[2,91],"55":[2,91],"74":[2,91]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"50":[2,156],"55":[2,156],"57":[2,156],"69":[2,156],"74":[2,156],"84":[2,156],"89":[2,156],"98":[2,156],"99":89,"100":[1,65],"101":[2,156],"102":[1,66],"105":90,"109":[2,156],"113":[2,156],"114":[1,68],"125":[2,156],"126":[2,156],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,160],"4":[2,160],"28":[2,160],"29":[2,160],"50":[2,160],"55":[2,160],"57":[2,160],"69":[2,160],"74":[2,160],"84":[2,160],"89":[2,160],"98":[2,160],"99":89,"100":[1,65],"101":[2,160],"102":[1,66],"105":90,"109":[2,160],"113":[2,160],"114":[1,68],"125":[2,160],"126":[2,160],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,161],"4":[2,161],"28":[2,161],"29":[2,161],"50":[2,161],"55":[2,161],"57":[2,161],"69":[2,161],"74":[2,161],"84":[2,161],"89":[2,161],"98":[2,161],"99":89,"100":[1,65],"101":[1,344],"102":[1,66],"105":90,"109":[2,161],"113":[2,161],"114":[1,68],"125":[2,161],"126":[2,161],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"8":345,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,162],"4":[2,162],"28":[2,162],"29":[2,162],"50":[2,162],"55":[2,162],"57":[2,162],"69":[2,162],"74":[2,162],"84":[2,162],"89":[2,162],"98":[2,162],"99":89,"100":[1,65],"101":[2,162],"102":[1,66],"105":90,"109":[2,162],"113":[2,162],"114":[1,68],"125":[2,162],"126":[2,162],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]}], ++defaultActions: {"76":[2,4],"97":[2,113],"311":[2,150]}, + parseError: function parseError(str, hash) { + throw new Error(str); + }, +diff --git a/src/grammar.coffee b/src/grammar.coffee +index 2ca9d16..fa5c6a2 100644 +--- a/src/grammar.coffee ++++ b/src/grammar.coffee +@@ -199,10 +199,12 @@ grammar = + # A single parameter in a function definition can be ordinary, or a splat + # that hoovers up the remaining arguments. + Param: [ +- o 'PARAM', -> new Literal $1 +- o 'PARAM ...', -> new Param $1, false, true +- o '@ PARAM', -> new Param $2, true +- o '@ PARAM ...', -> new Param $2, true, true ++ o 'Identifier', -> new Param $1 ++ o 'Identifier ...', -> new Param $1, null, on ++ o 'Identifier = Expression', -> new Param $1, $3 ++ o 'ThisProperty', -> new Param $1, null ++ o 'ThisProperty ...', -> new Param $1, null, on ++ o 'ThisProperty = Expression', -> new Param $1, $3 + ] + + # A splat that occurs outside of a parameter list. +diff --git a/src/lexer.coffee b/src/lexer.coffee +index 4eeb6ca..6f1fca8 100644 +--- a/src/lexer.coffee ++++ b/src/lexer.coffee +@@ -353,12 +353,19 @@ exports.Lexer = class Lexer + # parameters specially in order to make things easier for the parser. + tagParameters: -> + return this if @tag() isnt ')' +- i = @tokens.length +- while tok = @tokens[--i] ++ stack = [] ++ {tokens} = this ++ i = tokens.length ++ tokens[--i][0] = 'PARAM_END' ++ while tok = tokens[--i] + switch tok[0] +- when 'IDENTIFIER' then tok[0] = 'PARAM' +- when ')' then tok[0] = 'PARAM_END' +- when '(', 'CALL_START' then tok[0] = 'PARAM_START'; return true ++ when ')' ++ stack.push tok ++ when '(', 'CALL_START' ++ if stack.length then stack.pop() ++ else ++ tok[0] = 'PARAM_START' ++ return this + this + + # Close up all remaining open blocks at the end of the file. +diff --git a/src/nodes.coffee b/src/nodes.coffee +index adc4d27..7a06583 100644 +--- a/src/nodes.coffee ++++ b/src/nodes.coffee +@@ -852,21 +852,27 @@ exports.Code = class Code extends Base + empty = @body.expressions.length is 0 + delete o.bare + delete o.globals +- splat = undefined ++ splat = null + params = [] + for param, i in @params + if splat + if param.attach +- param.assign = new Assign new Value new Literal('this'), [new Accessor param.value] ++ param.assign = new Assign param.name + @body.expressions.splice splat.index + 1, 0, param.assign ++ else if param.value ++ @body.unshift new Assign new Value(param.name), param.value, '?=' + splat.trailings.push param + else + if param.attach +- {value} = param +- [param, param.splat] = [new Literal(scope.freeVariable 'arg'), param.splat] +- @body.unshift new Assign new Value(new Literal('this'), [new Accessor value]), param ++ {name, value, splat} = param ++ param = new Literal scope.freeVariable 'arg' ++ param.splat = splat ++ @body.unshift new Assign name, ++ if value then new Op '?', param, value else param ++ else if param.value ++ @body.unshift new Assign new Value(param.name), param.value, '?=' + if param.splat +- splat = new Splat param.value ++ splat = new Splat param.name or param + splat.index = i + splat.trailings = [] + splat.arglength = @params.length +@@ -875,13 +881,12 @@ exports.Code = class Code extends Base + params.push param + scope.startLevel() + @body.makeReturn() unless empty or @noReturn +- params = for param in params +- scope.parameter param = param.compile o +- param +- comm = if @comment then @comment.compile(o) + '\n' else '' ++ scope.parameter params[i] = param.compile o for param, i in params ++ comm = if @comment then @comment.compile(o) + '\n' else '' + o.indent = @idt 2 if @className +- idt = @idt 1 +- code = if @body.expressions.length then "\n#{ @body.compileWithDeclarations o }\n" else '' ++ idt = @idt 1 ++ code = if @body.isEmpty() then '' ++ else "\n#{ @body.compileWithDeclarations o }\n" + if @className + open = "(function() {\n#{comm}#{idt}function #{@className}(" + close = "#{ code and idt }}\n#{idt}return #{@className};\n#{@tab}})()" +@@ -904,19 +909,13 @@ exports.Code = class Code extends Base + # as well as be a splat, gathering up a group of parameters into an array. + exports.Param = class Param extends Base + +- children: ['name'] ++ children: ['name', 'value'] + +- constructor: (name, @attach, @splat) -> ++ constructor: (@name, @value, @splat) -> + super() +- @value = new Literal @name = name +- +- compile: (o) -> @value.compile o, LEVEL_LIST ++ @attach = @name instanceof Value + +- toString: -> +- {name} = this +- name = '@' + name if @attach +- name += '...' if @splat +- new Literal(name).toString() ++ compile: (o) -> @name.compile o, LEVEL_LIST + + #### Splat + +@@ -948,13 +947,13 @@ exports.Splat = class Splat extends Base + variadic = o.scope.freeVariable 'result' + o.scope.assign variadic, len + ' >= ' + @arglength + end = if @trailings.length then ", #{len} - #{@trailings.length}" +- for trailing, idx in @trailings +- if trailing.attach +- assign = trailing.assign +- trailing = new Literal o.scope.freeVariable 'arg' +- assign.value = trailing ++ for param, idx in @trailings ++ if param.attach ++ {assign, value} = param ++ param = new Literal o.scope.freeVariable 'arg' ++ assign.value = if value then new Op '?', param, value else param + pos = @trailings.length - idx +- o.scope.assign trailing.compile(o), ++ o.scope.assign param.compile(o), + "arguments[#{variadic} ? #{len} - #{pos} : #{ @index + idx }]" + "#{name} = #{ utility 'slice' }.call(arguments, #{@index}#{end})" + +-- +2.9.3 + diff --git a/gnu/packages/patches/coffeescript-backport-destructuring.patch b/gnu/packages/patches/coffeescript-backport-destructuring.patch new file mode 100644 index 000000000..51d24398e --- /dev/null +++ b/gnu/packages/patches/coffeescript-backport-destructuring.patch @@ -0,0 +1,90 @@ +From 1ac2f75a02834d212568b3ae27826c60201fdf85 Mon Sep 17 00:00:00 2001 +From: Jelle Licht +Date: Sun, 21 Aug 2016 06:10:15 +0200 +Subject: [PATCH] [BACKPORT] bad dynakeys: can now do destructuring assignments +To: guix-devel@gnu.org + +--- + src/nodes.coffee | 37 ++++++++++++++++++++++++++----------- + 1 file changed, 26 insertions(+), 11 deletions(-) + +diff --git a/src/nodes.coffee b/src/nodes.coffee +index 5deab74..be26ffa 100644 +--- a/src/nodes.coffee ++++ b/src/nodes.coffee +@@ -786,12 +786,16 @@ exports.Assign = class Assign extends Base + if obj instanceof Assign + {variable: {base: idx}, value: obj} = obj + else +- idx = if isObject +- if obj.tags.this then obj.properties[0].name else obj ++ if obj.base instanceof Parens ++ [obj, idx] = @matchParens o, obj + else +- new Literal 0 +- accessClass = if IDENTIFIER.test idx.value then Accessor else Index +- (value = Value.wrap value).properties.push new accessClass idx ++ idx = if isObject ++ if obj.tags.this then obj.properties[0].name else obj ++ else ++ new Literal 0 ++ acc = IDENTIFIER.test idx.unwrap().value or 0 ++ value = Value.wrap value ++ value.properties.push new (if acc then Accessor else Index) idx + return new Assign(obj, value).compile o + valVar = value.compile o, LEVEL_LIST + assigns = [] +@@ -808,17 +812,23 @@ exports.Assign = class Assign extends Base + {variable: {base: idx}, value: obj} = obj + else + # A shorthand `{a, b, @c} = val` pattern-match. +- idx = if obj.tags.this then obj.properties[0].name else obj ++ if obj.base instanceof Parens ++ [obj, idx] = @matchParens o, obj ++ else ++ idx = if obj.tags.this then obj.properties[0].name else obj + unless obj instanceof Value or obj instanceof Splat +- throw SyntaxError 'pattern matching must use only identifiers on the left-hand side.' +- accessClass = if isObject and IDENTIFIER.test(idx.value) then Accessor else Index ++ throw SyntaxError \ ++ 'destructuring assignment must use only identifiers on the left-hand side.' + if not splat and obj instanceof Splat + val = new Literal obj.compileValue o, valVar, i, olength - i - 1 + splat = true + else + if typeof idx isnt 'object' + idx = new Literal(if splat then "#{valVar}.length - #{ olength - idx }" else idx) +- val = new Value new Literal(valVar), [new accessClass idx] ++ acc = no ++ else ++ acc = isObject and IDENTIFIER.test idx.unwrap().value or 0 ++ val = new Value new Literal(valVar), [new (if acc then Accessor else Index) idx] + assigns.push new Assign(obj, val).compile o, LEVEL_LIST + assigns.push valVar unless top + code = assigns.join ', ' +@@ -831,6 +841,13 @@ exports.Assign = class Assign extends Base + [left, rite] = @variable.cacheReference o + return new Op(@context.slice(0, -1), left, new Assign(rite, @value)).compile o + ++ matchParens: (o, obj) -> ++ until obj is obj = obj.unwrap() then ++ unless obj instanceof Literal or obj instanceof Value ++ throw SyntaxError 'nonreference in destructuring assignment shorthand.' ++ [obj, idx] = Value.wrap(obj).cacheReference o ++ ++ + #### Code + + # A function definition. This is the only node that creates a new Scope. +@@ -1067,8 +1084,6 @@ exports.Op = class Op extends Base + + isUnary: -> not @second + +- isComplex: -> @operator isnt '!' or @first.isComplex() +- + # Am I capable of + # [Python-style comparison chaining](http://docs.python.org/reference/expressions.html#notin)? + isChainable: -> @operator in ['<', '>', '>=', '<=', '===', '!=='] +-- +2.9.3 + diff --git a/gnu/packages/patches/coffeescript-backport-dollar-string-interpolation.patch b/gnu/packages/patches/coffeescript-backport-dollar-string-interpolation.patch new file mode 100644 index 000000000..7c3a7999f --- /dev/null +++ b/gnu/packages/patches/coffeescript-backport-dollar-string-interpolation.patch @@ -0,0 +1,45 @@ +From eee6747f9ddf521bff6496da5c3e39c17c71c76a Mon Sep 17 00:00:00 2001 +From: Jelle Licht +Date: Sat, 20 Aug 2016 18:55:44 +0200 +Subject: [PATCH] [BACKPORT] waypoint commit with both # and $ performing + interpolation. Issue 544 +To: guix-devel@gnu.org + +--- + src/lexer.coffee | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/src/lexer.coffee b/src/lexer.coffee +index 6595640..d384830 100644 +--- a/src/lexer.coffee ++++ b/src/lexer.coffee +@@ -118,7 +118,7 @@ exports.Lexer = class Lexer + stringToken: -> + return false unless starts(@chunk, '"') or starts(@chunk, "'") + return false unless string = +- @balancedToken(['"', '"'], ['${', '}']) or ++ @balancedToken(['"', '"'], ['${', '}'], ['#{', '}']) or + @balancedToken ["'", "'"] + @interpolateString string.replace STRING_NEWLINES, " \\\n" + @line += count string, "\n" +@@ -400,7 +400,7 @@ exports.Lexer = class Lexer + tokens.push ['IDENTIFIER', interp] + i += group.length - 1 + pi = i + 1 +- else if (expr = @balancedString str.substring(i), [['${', '}']]) ++ else if (expr = @balancedString str.substring(i), [['${', '}'], ['#{', '}']]) + tokens.push ['STRING', "$quote${ str.substring(pi, i) }$quote"] if pi < i + inner = expr.substring(2, expr.length - 1) + if inner.length +@@ -509,7 +509,7 @@ JS_FORBIDDEN = JS_KEYWORDS.concat RESERVED + IDENTIFIER = /^([a-zA-Z\$_](\w|\$)*)/ + NUMBER = /^(((\b0(x|X)[0-9a-fA-F]+)|((\b[0-9]+(\.[0-9]+)?|\.[0-9]+)(e[+\-]?[0-9]+)?)))\b/i + HEREDOC = /^("{6}|'{6}|"{3}\n?([\s\S]*?)\n?([ \t]*)"{3}|'{3}\n?([\s\S]*?)\n?([ \t]*)'{3})/ +-INTERPOLATION = /^\$([a-zA-Z_@]\w*(\.\w+)*)/ ++INTERPOLATION = /^[$#]([a-zA-Z_@]\w*(\.\w+)*)/ + OPERATOR = /^(-[\-=>]?|\+[+=]?|[*&|\/%=<>:!?]+)([ \t]*)/ + WHITESPACE = /^([ \t]+)/ + COMMENT = /^(\s*#{3}(?!#)[ \t]*\n+([\s\S]*?)[ \t]*\n+[ \t]*#{3}|(\s*#(?!##[^#])[^\n]*)+)/ +-- +2.9.3 + diff --git a/gnu/packages/patches/coffeescript-backport-executable-class-body.patch b/gnu/packages/patches/coffeescript-backport-executable-class-body.patch new file mode 100644 index 000000000..f2924826e --- /dev/null +++ b/gnu/packages/patches/coffeescript-backport-executable-class-body.patch @@ -0,0 +1,1054 @@ +From 241a01b3f0b599430ed77f4478fbce041fb96954 Mon Sep 17 00:00:00 2001 +From: Jelle Licht +Date: Sun, 21 Aug 2016 08:29:45 +0200 +Subject: [PATCH] [BACKPORT] executable class body +To: guix-devel@gnu.org + +--- + lib/parser.js | 332 +++++++++++++++++++++++++--------------------------- + src/grammar.coffee | 35 ++---- + src/nodes.coffee | 219 ++++++++++++++++++---------------- + src/rewriter.coffee | 10 +- + 4 files changed, 287 insertions(+), 309 deletions(-) + +diff --git a/lib/parser.js b/lib/parser.js +index f1ee5c2..42437bd 100755 +--- a/lib/parser.js ++++ b/lib/parser.js +@@ -2,9 +2,9 @@ + var parser = (function(){ + var parser = {trace: function trace() { }, + yy: {}, +-symbols_: {"error":2,"Root":3,"TERMINATOR":4,"Body":5,"Block":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"Throw":11,"BREAK":12,"CONTINUE":13,"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]], ++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,"OptFuncExist":77,"Arguments":78,"SUPER":79,"FUNC_EXIST":80,"CALL_START":81,"CALL_END":82,"ArgList":83,"THIS":84,"@":85,"[":86,"]":87,"Arg":88,"SimpleArgs":89,"TRY":90,"Catch":91,"FINALLY":92,"CATCH":93,"THROW":94,"(":95,")":96,"WhileSource":97,"WHILE":98,"WHEN":99,"UNTIL":100,"Loop":101,"LOOP":102,"ForBody":103,"ForValue":104,"ForIn":105,"FORIN":106,"BY":107,"ForOf":108,"FOROF":109,"ForTo":110,"TO":111,"FOR":112,"ALL":113,"FROM":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","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","79":"SUPER","80":"FUNC_EXIST","81":"CALL_START","82":"CALL_END","84":"THIS","85":"@","86":"[","87":"]","90":"TRY","92":"FINALLY","93":"CATCH","94":"THROW","95":"(","96":")","98":"WHILE","99":"WHEN","100":"UNTIL","102":"LOOP","106":"FORIN","107":"BY","109":"FOROF","111":"TO","112":"FOR","113":"ALL","114":"FROM","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,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],[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,1],[26,2],[26,3],[26,4],[26,2],[26,3],[26,4],[26,5],[17,3],[17,3],[17,1],[17,2],[77,0],[77,1],[78,2],[78,4],[63,1],[63,1],[43,2],[58,2],[58,4],[83,1],[83,3],[83,4],[83,4],[83,6],[88,1],[88,1],[89,1],[89,3],[22,2],[22,3],[22,4],[22,5],[91,3],[11,2],[44,3],[97,2],[97,4],[97,2],[97,4],[23,2],[23,2],[23,2],[23,1],[101,2],[101,2],[24,2],[24,2],[24,2],[104,1],[104,1],[104,1],[105,2],[105,4],[105,4],[105,6],[108,2],[108,4],[110,2],[110,4],[110,4],[110,6],[103,3],[103,5],[103,3],[103,5],[103,4],[103,6],[103,5],[25,5],[25,7],[25,4],[25,6],[116,1],[116,2],[118,3],[118,4],[120,3],[120,3],[120,5],[120,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 anonymous(yytext,yyleng,yylineno,yy) { + + var $$ = arguments[5],$0=arguments[5].length; +@@ -65,31 +65,31 @@ case 27:this.$ = $$[$0-3+2-1]; + break; + case 28:this.$ = new yy.Expressions; + break; +-case 29:this.$ = yy.Expressions.wrap([$$[$0-2+2-1]]); ++case 29:this.$ = new yy.Literal($$[$0-1+1-1]); + break; + case 30:this.$ = new yy.Literal($$[$0-1+1-1]); + break; + case 31:this.$ = new yy.Literal($$[$0-1+1-1]); + break; +-case 32:this.$ = new yy.Literal($$[$0-1+1-1]); ++case 32:this.$ = $$[$0-1+1-1]; + break; +-case 33:this.$ = $$[$0-1+1-1]; ++case 33:this.$ = new yy.Literal($$[$0-1+1-1]); + break; + case 34:this.$ = new yy.Literal($$[$0-1+1-1]); + break; +-case 35:this.$ = new yy.Literal($$[$0-1+1-1]); ++case 35:this.$ = new yy.Literal($$[$0-1+1-1] === 'undefined' ? 'void 0' : $$[$0-1+1-1]); + break; +-case 36:this.$ = new yy.Literal($$[$0-1+1-1] === 'undefined' ? 'void 0' : $$[$0-1+1-1]); ++case 36:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 37:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1]); ++case 37:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1]); + break; +-case 38:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1]); ++case 38:this.$ = new yy.Value($$[$0-1+1-1]); + break; +-case 39:this.$ = new yy.Value($$[$0-1+1-1]); ++case 39:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'object'); + break; +-case 40:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'object'); ++case 40:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'object'); + break; +-case 41:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'object'); ++case 41:this.$ = $$[$0-1+1-1]; + break; + case 42:this.$ = $$[$0-1+1-1]; + break; +@@ -99,37 +99,37 @@ case 44:this.$ = $$[$0-1+1-1]; + break; + case 45:this.$ = $$[$0-1+1-1]; + break; +-case 46:this.$ = $$[$0-1+1-1]; ++case 46:this.$ = new yy.Return($$[$0-2+2-1]); + break; +-case 47:this.$ = new yy.Return($$[$0-2+2-1]); ++case 47:this.$ = new yy.Return; + break; +-case 48:this.$ = new yy.Return; ++case 48:this.$ = new yy.Comment($$[$0-1+1-1]); + break; +-case 49:this.$ = new yy.Comment($$[$0-1+1-1]); ++case 49:this.$ = new yy.Code($$[$0-5+2-1], $$[$0-5+5-1], $$[$0-5+4-1]); + break; +-case 50:this.$ = new yy.Code($$[$0-5+2-1], $$[$0-5+5-1], $$[$0-5+4-1]); ++case 50:this.$ = new yy.Code([], $$[$0-2+2-1], $$[$0-2+1-1]); + break; +-case 51:this.$ = new yy.Code([], $$[$0-2+2-1], $$[$0-2+1-1]); ++case 51:this.$ = 'func'; + break; +-case 52:this.$ = 'func'; ++case 52:this.$ = 'boundfunc'; + break; +-case 53:this.$ = 'boundfunc'; ++case 53:this.$ = $$[$0-1+1-1]; + break; + case 54:this.$ = $$[$0-1+1-1]; + break; +-case 55:this.$ = $$[$0-1+1-1]; ++case 55:this.$ = []; + break; +-case 56:this.$ = []; ++case 56:this.$ = [$$[$0-1+1-1]]; + break; +-case 57:this.$ = [$$[$0-1+1-1]]; ++case 57:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); + break; +-case 58:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); ++case 58:this.$ = new yy.Param($$[$0-1+1-1]); + break; +-case 59:this.$ = new yy.Param($$[$0-1+1-1]); ++case 59:this.$ = new yy.Param($$[$0-2+1-1], null, true); + break; +-case 60:this.$ = new yy.Param($$[$0-2+1-1], null, true); ++case 60:this.$ = new yy.Param($$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 61:this.$ = new yy.Param($$[$0-3+1-1], $$[$0-3+3-1]); ++case 61:this.$ = $$[$0-1+1-1]; + break; + case 62:this.$ = $$[$0-1+1-1]; + break; +@@ -137,351 +137,335 @@ case 63:this.$ = $$[$0-1+1-1]; + break; + case 64:this.$ = $$[$0-1+1-1]; + break; +-case 65:this.$ = $$[$0-1+1-1]; ++case 65:this.$ = new yy.Splat($$[$0-2+1-1]); + break; +-case 66:this.$ = new yy.Splat($$[$0-2+1-1]); ++case 66:this.$ = new yy.Value($$[$0-1+1-1]); + break; +-case 67:this.$ = new yy.Value($$[$0-1+1-1]); ++case 67:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); + break; +-case 68:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); ++case 68:this.$ = new yy.Value($$[$0-2+1-1], [$$[$0-2+2-1]]); + break; +-case 69:this.$ = new yy.Value($$[$0-2+1-1], [$$[$0-2+2-1]]); ++case 69:this.$ = $$[$0-1+1-1]; + break; + case 70:this.$ = $$[$0-1+1-1]; + break; +-case 71:this.$ = $$[$0-1+1-1]; ++case 71:this.$ = new yy.Value($$[$0-1+1-1]); + break; + case 72:this.$ = new yy.Value($$[$0-1+1-1]); + break; +-case 73:this.$ = new yy.Value($$[$0-1+1-1]); ++case 73:this.$ = $$[$0-1+1-1]; + break; +-case 74:this.$ = $$[$0-1+1-1]; ++case 74:this.$ = new yy.Value($$[$0-1+1-1]); + break; + case 75:this.$ = new yy.Value($$[$0-1+1-1]); + break; +-case 76:this.$ = new yy.Value($$[$0-1+1-1]); ++case 76:this.$ = $$[$0-1+1-1]; + break; +-case 77:this.$ = $$[$0-1+1-1]; ++case 77:this.$ = new yy.Accessor($$[$0-2+2-1]); + break; +-case 78:this.$ = new yy.Accessor($$[$0-2+2-1]); ++case 78:this.$ = new yy.Accessor($$[$0-2+2-1], 'soak'); + break; +-case 79:this.$ = new yy.Accessor($$[$0-2+2-1], 'soak'); ++case 79:this.$ = new yy.Accessor($$[$0-2+2-1], 'proto'); + break; +-case 80:this.$ = new yy.Accessor($$[$0-2+2-1], 'proto'); ++case 80:this.$ = new yy.Accessor(new yy.Literal('prototype')); + break; +-case 81:this.$ = new yy.Accessor(new yy.Literal('prototype')); ++case 81:this.$ = $$[$0-1+1-1]; + break; +-case 82:this.$ = $$[$0-1+1-1]; ++case 82:this.$ = new yy.Index($$[$0-3+2-1]); + break; +-case 83:this.$ = new yy.Index($$[$0-3+2-1]); +-break; +-case 84:this.$ = yy.extend($$[$0-2+2-1], { ++case 83:this.$ = yy.extend($$[$0-2+2-1], { + soak: true + }); + break; +-case 85:this.$ = yy.extend($$[$0-2+2-1], { ++case 84:this.$ = yy.extend($$[$0-2+2-1], { + proto: true + }); + break; +-case 86:this.$ = new yy.Obj($$[$0-4+2-1]); +-break; +-case 87:this.$ = []; +-break; +-case 88:this.$ = [$$[$0-1+1-1]]; +-break; +-case 89:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +-break; +-case 90:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); +-break; +-case 91:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); ++case 85:this.$ = new yy.Obj($$[$0-4+2-1]); + break; +-case 92:this.$ = new yy.Class($$[$0-2+2-1]); ++case 86:this.$ = []; + break; +-case 93:this.$ = new yy.Class($$[$0-4+2-1], $$[$0-4+4-1]); ++case 87:this.$ = [$$[$0-1+1-1]]; + break; +-case 94:this.$ = new yy.Class($$[$0-5+2-1], null, $$[$0-5+4-1]); ++case 88:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); + break; +-case 95:this.$ = new yy.Class($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); ++case 89:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); + break; +-case 96:this.$ = new yy.Class(null, null, $$[$0-4+3-1]); ++case 90:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); + break; +-case 97:this.$ = new yy.Class(null, null, new yy.Expressions); ++case 91:this.$ = new yy.Class; + break; +-case 98:this.$ = new yy.Class(null, $$[$0-3+3-1], new yy.Expressions); ++case 92:this.$ = new yy.Class(null, null, $$[$0-2+2-1]); + break; +-case 99:this.$ = new yy.Class(null, $$[$0-6+3-1], $$[$0-6+5-1]); ++case 93:this.$ = new yy.Class(null, $$[$0-3+3-1]); + break; +-case 100:this.$ = $$[$0-1+1-1]; ++case 94:this.$ = new yy.Class(null, $$[$0-4+3-1], $$[$0-4+4-1]); + break; +-case 101:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'this'); ++case 95:this.$ = new yy.Class($$[$0-2+2-1]); + break; +-case 102:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'this'); ++case 96:this.$ = new yy.Class($$[$0-3+2-1], null, $$[$0-3+3-1]); + break; +-case 103:this.$ = []; ++case 97:this.$ = new yy.Class($$[$0-4+2-1], $$[$0-4+4-1]); + break; +-case 104:this.$ = [$$[$0-1+1-1]]; ++case 98:this.$ = new yy.Class($$[$0-5+2-1], $$[$0-5+4-1], $$[$0-5+5-1]); + break; +-case 105:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); ++case 99:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); + break; +-case 106:this.$ = $$[$0-3+2-1]; ++case 100:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); + break; +-case 107:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); ++case 101:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); + break; +-case 108:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); ++case 102:this.$ = new yy.Call('super', $$[$0-2+2-1]); + break; +-case 109:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); ++case 103:this.$ = false; + break; +-case 110:this.$ = new yy.Call('super', $$[$0-2+2-1]); ++case 104:this.$ = true; + break; +-case 111:this.$ = false; ++case 105:this.$ = []; + break; +-case 112:this.$ = true; ++case 106:this.$ = $$[$0-4+2-1]; + break; +-case 113:this.$ = []; ++case 107:this.$ = new yy.Value(new yy.Literal('this')); + break; +-case 114:this.$ = $$[$0-4+2-1]; ++case 108:this.$ = new yy.Value(new yy.Literal('this')); + break; +-case 115:this.$ = new yy.Value(new yy.Literal('this')); ++case 109:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Accessor($$[$0-2+2-1])], 'this'); + break; +-case 116:this.$ = new yy.Value(new yy.Literal('this')); ++case 110:this.$ = new yy.Arr([]); + break; +-case 117:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Accessor($$[$0-2+2-1])], 'this'); ++case 111:this.$ = new yy.Arr($$[$0-4+2-1]); + break; +-case 118:this.$ = new yy.Arr([]); ++case 112:this.$ = [$$[$0-1+1-1]]; + break; +-case 119:this.$ = new yy.Arr($$[$0-4+2-1]); ++case 113:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); + break; +-case 120:this.$ = [$$[$0-1+1-1]]; ++case 114:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); + break; +-case 121:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); ++case 115:this.$ = $$[$0-4+2-1]; + break; +-case 122:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); ++case 116:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); + break; +-case 123:this.$ = $$[$0-4+2-1]; ++case 117:this.$ = $$[$0-1+1-1]; + break; +-case 124:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); ++case 118:this.$ = $$[$0-1+1-1]; + break; +-case 125:this.$ = $$[$0-1+1-1]; ++case 119:this.$ = $$[$0-1+1-1]; + break; +-case 126:this.$ = $$[$0-1+1-1]; ++case 120:this.$ = [].concat($$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 127:this.$ = $$[$0-1+1-1]; ++case 121:this.$ = new yy.Try($$[$0-2+2-1]); + break; +-case 128:this.$ = [].concat($$[$0-3+1-1], $$[$0-3+3-1]); ++case 122:this.$ = new yy.Try($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); + break; +-case 129:this.$ = new yy.Try($$[$0-2+2-1]); ++case 123:this.$ = new yy.Try($$[$0-4+2-1], null, null, $$[$0-4+4-1]); + break; +-case 130:this.$ = new yy.Try($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); ++case 124:this.$ = new yy.Try($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); + break; +-case 131:this.$ = new yy.Try($$[$0-4+2-1], null, null, $$[$0-4+4-1]); ++case 125:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; + break; +-case 132:this.$ = new yy.Try($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); ++case 126:this.$ = new yy.Throw($$[$0-2+2-1]); + break; +-case 133:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; ++case 127:this.$ = new yy.Parens($$[$0-3+2-1]); + break; +-case 134:this.$ = new yy.Throw($$[$0-2+2-1]); ++case 128:this.$ = new yy.While($$[$0-2+2-1]); + break; +-case 135:this.$ = new yy.Parens($$[$0-3+2-1]); +-break; +-case 136:this.$ = new yy.While($$[$0-2+2-1]); +-break; +-case 137:this.$ = new yy.While($$[$0-4+2-1], { ++case 129:this.$ = new yy.While($$[$0-4+2-1], { + guard: $$[$0-4+4-1] + }); + break; +-case 138:this.$ = new yy.While($$[$0-2+2-1], { ++case 130:this.$ = new yy.While($$[$0-2+2-1], { + invert: true + }); + break; +-case 139:this.$ = new yy.While($$[$0-4+2-1], { ++case 131:this.$ = new yy.While($$[$0-4+2-1], { + invert: true, + guard: $$[$0-4+4-1] + }); + break; +-case 140:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); ++case 132:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); + break; +-case 141:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); ++case 133:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); + break; +-case 142:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); ++case 134:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); + break; +-case 143:this.$ = $$[$0-1+1-1]; ++case 135:this.$ = $$[$0-1+1-1]; + break; +-case 144:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0-2+2-1]); ++case 136:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0-2+2-1]); + break; +-case 145:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Expressions.wrap([$$[$0-2+2-1]])); ++case 137:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Expressions.wrap([$$[$0-2+2-1]])); + break; +-case 146:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); ++case 138:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); + break; +-case 147:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); ++case 139:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); + break; +-case 148:this.$ = new yy.For($$[$0-2+2-1], $$[$0-2+1-1]); ++case 140:this.$ = new yy.For($$[$0-2+2-1], $$[$0-2+1-1]); + break; +-case 149:this.$ = $$[$0-1+1-1]; ++case 141:this.$ = $$[$0-1+1-1]; + break; +-case 150:this.$ = new yy.Value($$[$0-1+1-1]); ++case 142:this.$ = new yy.Value($$[$0-1+1-1]); + break; +-case 151:this.$ = new yy.Value($$[$0-1+1-1]); ++case 143:this.$ = new yy.Value($$[$0-1+1-1]); + break; +-case 152:this.$ = { ++case 144:this.$ = { + source: $$[$0-2+2-1] + }; + break; +-case 153:this.$ = { ++case 145:this.$ = { + source: $$[$0-4+2-1], + guard: $$[$0-4+4-1] + }; + break; +-case 154:this.$ = { ++case 146:this.$ = { + source: $$[$0-4+2-1], + step: $$[$0-4+4-1] + }; + break; +-case 155:this.$ = { ++case 147:this.$ = { + source: $$[$0-6+2-1], + step: $$[$0-6+4-1], + guard: $$[$0-6+6-1] + }; + break; +-case 156:this.$ = { ++case 148:this.$ = { + object: true, + source: $$[$0-2+2-1] + }; + break; +-case 157:this.$ = { ++case 149:this.$ = { + object: true, + source: $$[$0-4+2-1], + guard: $$[$0-4+4-1] + }; + break; +-case 158:this.$ = { ++case 150:this.$ = { + to: $$[$0-2+2-1] + }; + break; +-case 159:this.$ = { ++case 151:this.$ = { + to: $$[$0-4+2-1], + guard: $$[$0-4+4-1] + }; + break; +-case 160:this.$ = { ++case 152:this.$ = { + to: $$[$0-4+2-1], + step: $$[$0-4+4-1] + }; + break; +-case 161:this.$ = { ++case 153:this.$ = { + to: $$[$0-6+2-1], + step: $$[$0-6+4-1], + guard: $$[$0-6+6-1] + }; + break; +-case 162:this.$ = yy.extend($$[$0-3+3-1], { ++case 154:this.$ = yy.extend($$[$0-3+3-1], { + name: $$[$0-3+2-1] + }); + break; +-case 163:this.$ = yy.extend($$[$0-5+5-1], { ++case 155:this.$ = yy.extend($$[$0-5+5-1], { + name: $$[$0-5+2-1], + index: $$[$0-5+4-1] + }); + break; +-case 164:this.$ = yy.extend($$[$0-3+3-1], { ++case 156:this.$ = yy.extend($$[$0-3+3-1], { + index: $$[$0-3+2-1] + }); + break; +-case 165:this.$ = yy.extend($$[$0-5+5-1], { ++case 157:this.$ = yy.extend($$[$0-5+5-1], { + index: $$[$0-5+2-1], + name: $$[$0-5+4-1] + }); + break; +-case 166:this.$ = yy.extend($$[$0-4+4-1], { ++case 158:this.$ = yy.extend($$[$0-4+4-1], { + raw: true, + index: $$[$0-4+3-1] + }); + break; +-case 167:this.$ = yy.extend($$[$0-6+6-1], { ++case 159:this.$ = yy.extend($$[$0-6+6-1], { + raw: true, + index: $$[$0-6+3-1], + name: $$[$0-6+5-1] + }); + break; +-case 168:this.$ = yy.extend($$[$0-5+5-1], { ++case 160:this.$ = yy.extend($$[$0-5+5-1], { + index: $$[$0-5+2-1], + from: $$[$0-5+4-1] + }); + break; +-case 169:this.$ = new yy.Switch($$[$0-5+2-1], $$[$0-5+4-1]); ++case 161:this.$ = new yy.Switch($$[$0-5+2-1], $$[$0-5+4-1]); + break; +-case 170:this.$ = new yy.Switch($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); ++case 162:this.$ = new yy.Switch($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); + break; +-case 171:this.$ = new yy.Switch(null, $$[$0-4+3-1]); ++case 163:this.$ = new yy.Switch(null, $$[$0-4+3-1]); + break; +-case 172:this.$ = new yy.Switch(null, $$[$0-6+3-1], $$[$0-6+5-1]); ++case 164:this.$ = new yy.Switch(null, $$[$0-6+3-1], $$[$0-6+5-1]); + break; +-case 173:this.$ = $$[$0-1+1-1]; ++case 165:this.$ = $$[$0-1+1-1]; + break; +-case 174:this.$ = $$[$0-2+1-1].concat($$[$0-2+2-1]); ++case 166:this.$ = $$[$0-2+1-1].concat($$[$0-2+2-1]); + break; +-case 175:this.$ = [[$$[$0-3+2-1], $$[$0-3+3-1]]]; ++case 167:this.$ = [[$$[$0-3+2-1], $$[$0-3+3-1]]]; + break; +-case 176:this.$ = [[$$[$0-4+2-1], $$[$0-4+3-1]]]; ++case 168:this.$ = [[$$[$0-4+2-1], $$[$0-4+3-1]]]; + break; +-case 177:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1]); ++case 169:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1]); + break; +-case 178:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1], { ++case 170:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1], { + invert: true + }); + break; +-case 179:this.$ = $$[$0-5+1-1].addElse(new yy.If($$[$0-5+4-1], $$[$0-5+5-1])); ++case 171:this.$ = $$[$0-5+1-1].addElse(new yy.If($$[$0-5+4-1], $$[$0-5+5-1])); + break; +-case 180:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); ++case 172:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); + break; +-case 181:this.$ = $$[$0-1+1-1]; ++case 173:this.$ = $$[$0-1+1-1]; + break; +-case 182:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { ++case 174:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true + }); + break; +-case 183:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { ++case 175:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true + }); + break; +-case 184:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { ++case 176:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true, + invert: true + }); + break; +-case 185:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { ++case 177:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true, + invert: true + }); + break; +-case 186:this.$ = new yy.Op($$[$0-2+1-1], $$[$0-2+2-1]); ++case 178:this.$ = new yy.Op($$[$0-2+1-1], $$[$0-2+2-1]); + break; +-case 187:this.$ = new yy.Op('-', $$[$0-2+2-1]); ++case 179:this.$ = new yy.Op('-', $$[$0-2+2-1]); + break; +-case 188:this.$ = new yy.Op('+', $$[$0-2+2-1]); ++case 180:this.$ = new yy.Op('+', $$[$0-2+2-1]); + break; +-case 189:this.$ = new yy.Op('--', $$[$0-2+2-1]); ++case 181:this.$ = new yy.Op('--', $$[$0-2+2-1]); + break; +-case 190:this.$ = new yy.Op('++', $$[$0-2+2-1]); ++case 182:this.$ = new yy.Op('++', $$[$0-2+2-1]); + break; +-case 191:this.$ = new yy.Op('--', $$[$0-2+1-1], null, true); ++case 183:this.$ = new yy.Op('--', $$[$0-2+1-1], null, true); + break; +-case 192:this.$ = new yy.Op('++', $$[$0-2+1-1], null, true); ++case 184:this.$ = new yy.Op('++', $$[$0-2+1-1], null, true); + break; +-case 193:this.$ = new yy.Existence($$[$0-2+1-1]); ++case 185:this.$ = new yy.Existence($$[$0-2+1-1]); + break; +-case 194:this.$ = new yy.Op('+', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 186:this.$ = new yy.Op('+', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 195:this.$ = new yy.Op('-', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 187:this.$ = new yy.Op('-', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 196:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); ++case 188:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 197:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); ++case 189:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 198:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); ++case 190:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 199:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); ++case 191:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 200:this.$ = (function () { ++case 192:this.$ = (function () { + if ($$[$0-3+2-1].charAt(0) === '!') { + return new yy.Op($$[$0-3+2-1].slice(1), $$[$0-3+1-1], $$[$0-3+3-1]).invert(); + } else { +@@ -489,16 +473,16 @@ case 200:this.$ = (function () { + } + }()); + break; +-case 201:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); ++case 193:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); + break; +-case 202:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1], $$[$0-5+2-1]); ++case 194:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1], $$[$0-5+2-1]); + break; +-case 203:this.$ = new yy.Extends($$[$0-3+1-1], $$[$0-3+3-1]); ++case 195:this.$ = new yy.Extends($$[$0-3+1-1], $$[$0-3+3-1]); + break; + } + }, +-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]}, ++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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[3]},{"1":[2,2]},{"1":[2,3],"4":[1,73]},{"4":[1,74]},{"1":[2,5],"4":[2,5],"28":[2,5]},{"5":75,"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,76],"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,8],"4":[2,8],"28":[2,8],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,9],"4":[2,9],"28":[2,9],"97":91,"98":[1,64],"100":[1,65],"103":92,"112":[1,67],"123":[1,89],"124":[1,90]},{"1":[2,16],"4":[2,16],"27":[2,16],"28":[2,16],"49":[2,16],"54":[2,16],"57":[2,16],"62":94,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"69":[2,16],"70":[1,101],"71":[1,102],"74":[2,16],"77":93,"80":[1,95],"81":[2,103],"82":[2,16],"87":[2,16],"96":[2,16],"98":[2,16],"99":[2,16],"100":[2,16],"107":[2,16],"111":[2,16],"112":[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],"4":[2,17],"27":[2,17],"28":[2,17],"49":[2,17],"54":[2,17],"57":[2,17],"62":104,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"69":[2,17],"70":[1,101],"71":[1,102],"74":[2,17],"77":103,"80":[1,95],"81":[2,103],"82":[2,17],"87":[2,17],"96":[2,17],"98":[2,17],"99":[2,17],"100":[2,17],"107":[2,17],"111":[2,17],"112":[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],"4":[2,18],"27":[2,18],"28":[2,18],"49":[2,18],"54":[2,18],"57":[2,18],"69":[2,18],"74":[2,18],"82":[2,18],"87":[2,18],"96":[2,18],"98":[2,18],"99":[2,18],"100":[2,18],"107":[2,18],"111":[2,18],"112":[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],"4":[2,19],"27":[2,19],"28":[2,19],"49":[2,19],"54":[2,19],"57":[2,19],"69":[2,19],"74":[2,19],"82":[2,19],"87":[2,19],"96":[2,19],"98":[2,19],"99":[2,19],"100":[2,19],"107":[2,19],"111":[2,19],"112":[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],"4":[2,20],"27":[2,20],"28":[2,20],"49":[2,20],"54":[2,20],"57":[2,20],"69":[2,20],"74":[2,20],"82":[2,20],"87":[2,20],"96":[2,20],"98":[2,20],"99":[2,20],"100":[2,20],"107":[2,20],"111":[2,20],"112":[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],"4":[2,21],"27":[2,21],"28":[2,21],"49":[2,21],"54":[2,21],"57":[2,21],"69":[2,21],"74":[2,21],"82":[2,21],"87":[2,21],"96":[2,21],"98":[2,21],"99":[2,21],"100":[2,21],"107":[2,21],"111":[2,21],"112":[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],"4":[2,22],"27":[2,22],"28":[2,22],"49":[2,22],"54":[2,22],"57":[2,22],"69":[2,22],"74":[2,22],"82":[2,22],"87":[2,22],"96":[2,22],"98":[2,22],"99":[2,22],"100":[2,22],"107":[2,22],"111":[2,22],"112":[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],"4":[2,23],"27":[2,23],"28":[2,23],"49":[2,23],"54":[2,23],"57":[2,23],"69":[2,23],"74":[2,23],"82":[2,23],"87":[2,23],"96":[2,23],"98":[2,23],"99":[2,23],"100":[2,23],"107":[2,23],"111":[2,23],"112":[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,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],"82":[2,24],"87":[2,24],"96":[2,24],"98":[2,24],"99":[2,24],"100":[2,24],"107":[2,24],"111":[2,24],"112":[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,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],"82":[2,25],"87":[2,25],"96":[2,25],"98":[2,25],"99":[2,25],"100":[2,25],"107":[2,25],"111":[2,25],"112":[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,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],"82":[2,26],"87":[2,26],"96":[2,26],"98":[2,26],"99":[2,26],"100":[2,26],"107":[2,26],"111":[2,26],"112":[2,26],"123":[2,26],"124":[2,26],"126":[2,26],"127":[2,26],"130":[2,26],"131":[2,26],"132":[2,26],"133":[2,26],"134":[2,26],"135":[2,26]},{"1":[2,10],"4":[2,10],"28":[2,10],"98":[2,10],"100":[2,10],"112":[2,10],"123":[2,10],"124":[2,10]},{"1":[2,11],"4":[2,11],"28":[2,11],"98":[2,11],"100":[2,11],"112":[2,11],"123":[2,11],"124":[2,11]},{"1":[2,12],"4":[2,12],"28":[2,12],"98":[2,12],"100":[2,12],"112":[2,12],"123":[2,12],"124":[2,12]},{"1":[2,13],"4":[2,13],"28":[2,13],"98":[2,13],"100":[2,13],"112":[2,13],"123":[2,13],"124":[2,13]},{"1":[2,14],"4":[2,14],"28":[2,14],"98":[2,14],"100":[2,14],"112":[2,14],"123":[2,14],"124":[2,14]},{"1":[2,15],"4":[2,15],"28":[2,15],"98":[2,15],"100":[2,15],"112":[2,15],"123":[2,15],"124":[2,15]},{"1":[2,73],"4":[2,73],"27":[2,73],"28":[2,73],"39":[1,105],"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],"80":[2,73],"81":[2,73],"82":[2,73],"87":[2,73],"96":[2,73],"98":[2,73],"99":[2,73],"100":[2,73],"107":[2,73],"111":[2,73],"112":[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],"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],"80":[2,74],"81":[2,74],"82":[2,74],"87":[2,74],"96":[2,74],"98":[2,74],"99":[2,74],"100":[2,74],"107":[2,74],"111":[2,74],"112":[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,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],"80":[2,75],"81":[2,75],"82":[2,75],"87":[2,75],"96":[2,75],"98":[2,75],"99":[2,75],"100":[2,75],"107":[2,75],"111":[2,75],"112":[2,75],"123":[2,75],"124":[2,75],"126":[2,75],"127":[2,75],"130":[2,75],"131":[2,75],"132":[2,75],"133":[2,75],"134":[2,75],"135":[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],"80":[2,76],"81":[2,76],"82":[2,76],"87":[2,76],"96":[2,76],"98":[2,76],"99":[2,76],"100":[2,76],"107":[2,76],"111":[2,76],"112":[2,76],"123":[2,76],"124":[2,76],"126":[2,76],"127":[2,76],"130":[2,76],"131":[2,76],"132":[2,76],"133":[2,76],"134":[2,76],"135":[2,76]},{"1":[2,101],"4":[2,101],"27":[2,101],"28":[2,101],"49":[2,101],"54":[2,101],"57":[2,101],"64":[2,101],"65":[2,101],"66":[2,101],"68":[2,101],"69":[2,101],"70":[2,101],"71":[2,101],"74":[2,101],"78":106,"80":[2,101],"81":[1,107],"82":[2,101],"87":[2,101],"96":[2,101],"98":[2,101],"99":[2,101],"100":[2,101],"107":[2,101],"111":[2,101],"112":[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]},{"29":111,"30":[1,72],"43":112,"48":108,"49":[2,55],"54":[2,55],"55":109,"56":110,"58":113,"59":114,"72":[1,69],"85":[1,115],"86":[1,68]},{"6":116,"27":[1,6]},{"8":117,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":119,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":120,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"16":122,"17":123,"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":124,"43":61,"44":28,"58":49,"59":50,"61":121,"63":29,"72":[1,69],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"95":[1,55]},{"16":122,"17":123,"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":124,"43":61,"44":28,"58":49,"59":50,"61":125,"63":29,"72":[1,69],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"95":[1,55]},{"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":[1,129],"80":[2,70],"81":[2,70],"82":[2,70],"87":[2,70],"96":[2,70],"98":[2,70],"99":[2,70],"100":[2,70],"107":[2,70],"111":[2,70],"112":[2,70],"123":[2,70],"124":[2,70],"126":[2,70],"127":[2,70],"128":[1,126],"129":[1,127],"130":[2,70],"131":[2,70],"132":[2,70],"133":[2,70],"134":[2,70],"135":[2,70],"136":[1,128]},{"1":[2,173],"4":[2,173],"27":[2,173],"28":[2,173],"49":[2,173],"54":[2,173],"57":[2,173],"69":[2,173],"74":[2,173],"82":[2,173],"87":[2,173],"96":[2,173],"98":[2,173],"99":[2,173],"100":[2,173],"107":[2,173],"111":[2,173],"112":[2,173],"117":[1,130],"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]},{"6":131,"27":[1,6]},{"6":132,"27":[1,6]},{"1":[2,135],"4":[2,135],"27":[2,135],"28":[2,135],"49":[2,135],"54":[2,135],"57":[2,135],"69":[2,135],"74":[2,135],"82":[2,135],"87":[2,135],"96":[2,135],"98":[2,135],"99":[2,135],"100":[2,135],"107":[2,135],"111":[2,135],"112":[2,135],"123":[2,135],"124":[2,135],"126":[2,135],"127":[2,135],"130":[2,135],"131":[2,135],"132":[2,135],"133":[2,135],"134":[2,135],"135":[2,135]},{"6":133,"27":[1,6]},{"8":134,"9":118,"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,135],"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,91],"4":[2,91],"6":136,"16":122,"17":123,"27":[1,6],"28":[2,91],"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":124,"43":61,"44":28,"49":[2,91],"54":[2,91],"57":[2,91],"58":49,"59":50,"61":138,"63":29,"69":[2,91],"72":[1,69],"74":[2,91],"76":[1,137],"79":[1,30],"82":[2,91],"84":[1,56],"85":[1,57],"86":[1,68],"87":[2,91],"95":[1,55],"96":[2,91],"98":[2,91],"99":[2,91],"100":[2,91],"107":[2,91],"111":[2,91],"112":[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]},{"1":[2,47],"4":[2,47],"8":139,"9":118,"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,47],"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[2,47],"100":[2,47],"101":42,"102":[1,66],"103":43,"112":[2,47],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"123":[2,47],"124":[2,47],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":140,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,48],"4":[2,48],"27":[2,48],"28":[2,48],"54":[2,48],"74":[2,48],"98":[2,48],"100":[2,48],"112":[2,48],"123":[2,48],"124":[2,48]},{"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],"80":[2,71],"81":[2,71],"82":[2,71],"87":[2,71],"96":[2,71],"98":[2,71],"99":[2,71],"100":[2,71],"107":[2,71],"111":[2,71],"112":[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],"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],"80":[2,72],"81":[2,72],"82":[2,72],"87":[2,72],"96":[2,72],"98":[2,72],"99":[2,72],"100":[2,72],"107":[2,72],"111":[2,72],"112":[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,32],"4":[2,32],"27":[2,32],"28":[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],"80":[2,32],"81":[2,32],"82":[2,32],"87":[2,32],"96":[2,32],"98":[2,32],"99":[2,32],"100":[2,32],"107":[2,32],"111":[2,32],"112":[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]},{"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],"80":[2,33],"81":[2,33],"82":[2,33],"87":[2,33],"96":[2,33],"98":[2,33],"99":[2,33],"100":[2,33],"107":[2,33],"111":[2,33],"112":[2,33],"123":[2,33],"124":[2,33],"126":[2,33],"127":[2,33],"130":[2,33],"131":[2,33],"132":[2,33],"133":[2,33],"134":[2,33],"135":[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],"80":[2,34],"81":[2,34],"82":[2,34],"87":[2,34],"96":[2,34],"98":[2,34],"99":[2,34],"100":[2,34],"107":[2,34],"111":[2,34],"112":[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,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],"80":[2,35],"81":[2,35],"82":[2,35],"87":[2,35],"96":[2,35],"98":[2,35],"99":[2,35],"100":[2,35],"107":[2,35],"111":[2,35],"112":[2,35],"123":[2,35],"124":[2,35],"126":[2,35],"127":[2,35],"130":[2,35],"131":[2,35],"132":[2,35],"133":[2,35],"134":[2,35],"135":[2,35]},{"8":141,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"80":[2,107],"81":[2,107],"82":[2,107],"87":[2,107],"96":[2,107],"98":[2,107],"99":[2,107],"100":[2,107],"107":[2,107],"111":[2,107],"112":[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]},{"1":[2,108],"4":[2,108],"27":[2,108],"28":[2,108],"29":142,"30":[1,72],"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],"80":[2,108],"81":[2,108],"82":[2,108],"87":[2,108],"96":[2,108],"98":[2,108],"99":[2,108],"100":[2,108],"107":[2,108],"111":[2,108],"112":[2,108],"123":[2,108],"124":[2,108],"126":[2,108],"127":[2,108],"130":[2,108],"131":[2,108],"132":[2,108],"133":[2,108],"134":[2,108],"135":[2,108]},{"27":[2,51]},{"27":[2,52]},{"1":[2,66],"4":[2,66],"27":[2,66],"28":[2,66],"39":[2,66],"49":[2,66],"54":[2,66],"57":[2,66],"64":[2,66],"65":[2,66],"66":[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],"96":[2,66],"98":[2,66],"99":[2,66],"100":[2,66],"107":[2,66],"111":[2,66],"112":[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]},{"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],"80":[2,69],"81":[2,69],"82":[2,69],"87":[2,69],"96":[2,69],"98":[2,69],"99":[2,69],"100":[2,69],"107":[2,69],"111":[2,69],"112":[2,69],"123":[2,69],"124":[2,69],"126":[2,69],"127":[2,69],"128":[2,69],"129":[2,69],"130":[2,69],"131":[2,69],"132":[2,69],"133":[2,69],"134":[2,69],"135":[2,69],"136":[2,69]},{"8":143,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":144,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":145,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":146,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"6":147,"8":148,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"29":150,"30":[1,72],"58":152,"59":153,"72":[1,69],"86":[1,68],"104":149,"113":[1,151]},{"8":158,"9":118,"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,157],"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":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"83":155,"84":[1,56],"85":[1,57],"86":[1,68],"87":[1,154],"88":156,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"4":[2,86],"15":164,"27":[2,86],"29":165,"30":[1,72],"31":166,"32":[1,70],"33":[1,71],"40":161,"41":162,"43":163,"44":167,"46":[1,48],"54":[2,86],"73":160,"74":[2,86],"85":[1,115],"95":[1,55]},{"1":[2,30],"4":[2,30],"27":[2,30],"28":[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],"80":[2,30],"81":[2,30],"82":[2,30],"87":[2,30],"96":[2,30],"98":[2,30],"99":[2,30],"100":[2,30],"107":[2,30],"111":[2,30],"112":[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],"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],"80":[2,31],"81":[2,31],"82":[2,31],"87":[2,31],"96":[2,31],"98":[2,31],"99":[2,31],"100":[2,31],"107":[2,31],"111":[2,31],"112":[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,29],"4":[2,29],"27":[2,29],"28":[2,29],"39":[2,29],"42":[2,29],"49":[2,29],"54":[2,29],"57":[2,29],"64":[2,29],"65":[2,29],"66":[2,29],"68":[2,29],"69":[2,29],"70":[2,29],"71":[2,29],"74":[2,29],"76":[2,29],"80":[2,29],"81":[2,29],"82":[2,29],"87":[2,29],"96":[2,29],"98":[2,29],"99":[2,29],"100":[2,29],"106":[2,29],"107":[2,29],"109":[2,29],"111":[2,29],"112":[2,29],"114":[2,29],"123":[2,29],"124":[2,29],"126":[2,29],"127":[2,29],"128":[2,29],"129":[2,29],"130":[2,29],"131":[2,29],"132":[2,29],"133":[2,29],"134":[2,29],"135":[2,29],"136":[2,29]},{"1":[2,7],"4":[2,7],"7":168,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,4]},{"4":[1,73],"28":[1,169]},{"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],"82":[2,28],"87":[2,28],"92":[2,28],"93":[2,28],"96":[2,28],"98":[2,28],"99":[2,28],"100":[2,28],"107":[2,28],"111":[2,28],"112":[2,28],"117":[2,28],"119":[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,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],"82":[2,185],"87":[2,185],"96":[2,185],"98":[2,185],"99":[2,185],"100":[2,185],"107":[2,185],"111":[2,185],"112":[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]},{"8":170,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":171,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":172,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":173,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":174,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":175,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":176,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":177,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":178,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,134],"4":[2,134],"27":[2,134],"28":[2,134],"49":[2,134],"54":[2,134],"57":[2,134],"69":[2,134],"74":[2,134],"82":[2,134],"87":[2,134],"96":[2,134],"98":[2,134],"99":[2,134],"100":[2,134],"107":[2,134],"111":[2,134],"112":[2,134],"123":[2,134],"124":[2,134],"126":[2,134],"127":[2,134],"130":[2,134],"131":[2,134],"132":[2,134],"133":[2,134],"134":[2,134],"135":[2,134]},{"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],"82":[2,139],"87":[2,139],"96":[2,139],"98":[2,139],"99":[2,139],"100":[2,139],"107":[2,139],"111":[2,139],"112":[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]},{"8":179,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":180,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,133],"87":[2,133],"96":[2,133],"98":[2,133],"99":[2,133],"100":[2,133],"107":[2,133],"111":[2,133],"112":[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,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],"82":[2,138],"87":[2,138],"96":[2,138],"98":[2,138],"99":[2,138],"100":[2,138],"107":[2,138],"111":[2,138],"112":[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]},{"78":181,"81":[1,107]},{"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],"80":[2,67],"81":[2,67],"82":[2,67],"87":[2,67],"96":[2,67],"98":[2,67],"99":[2,67],"100":[2,67],"107":[2,67],"111":[2,67],"112":[2,67],"123":[2,67],"124":[2,67],"126":[2,67],"127":[2,67],"128":[2,67],"129":[2,67],"130":[2,67],"131":[2,67],"132":[2,67],"133":[2,67],"134":[2,67],"135":[2,67],"136":[2,67]},{"81":[2,104]},{"29":182,"30":[1,72]},{"29":183,"30":[1,72]},{"1":[2,80],"4":[2,80],"27":[2,80],"28":[2,80],"29":184,"30":[1,72],"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],"80":[2,80],"81":[2,80],"82":[2,80],"87":[2,80],"96":[2,80],"98":[2,80],"99":[2,80],"100":[2,80],"107":[2,80],"111":[2,80],"112":[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]},{"1":[2,81],"4":[2,81],"27":[2,81],"28":[2,81],"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],"80":[2,81],"81":[2,81],"82":[2,81],"87":[2,81],"96":[2,81],"98":[2,81],"99":[2,81],"100":[2,81],"107":[2,81],"111":[2,81],"112":[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":185,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"67":186,"68":[1,100],"70":[1,101],"71":[1,102]},{"67":187,"68":[1,100],"70":[1,101],"71":[1,102]},{"78":188,"81":[1,107]},{"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],"80":[2,68],"81":[2,68],"82":[2,68],"87":[2,68],"96":[2,68],"98":[2,68],"99":[2,68],"100":[2,68],"107":[2,68],"111":[2,68],"112":[2,68],"123":[2,68],"124":[2,68],"126":[2,68],"127":[2,68],"128":[2,68],"129":[2,68],"130":[2,68],"131":[2,68],"132":[2,68],"133":[2,68],"134":[2,68],"135":[2,68],"136":[2,68]},{"8":189,"9":118,"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,190],"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,102],"4":[2,102],"27":[2,102],"28":[2,102],"49":[2,102],"54":[2,102],"57":[2,102],"64":[2,102],"65":[2,102],"66":[2,102],"68":[2,102],"69":[2,102],"70":[2,102],"71":[2,102],"74":[2,102],"80":[2,102],"81":[2,102],"82":[2,102],"87":[2,102],"96":[2,102],"98":[2,102],"99":[2,102],"100":[2,102],"107":[2,102],"111":[2,102],"112":[2,102],"123":[2,102],"124":[2,102],"126":[2,102],"127":[2,102],"130":[2,102],"131":[2,102],"132":[2,102],"133":[2,102],"134":[2,102],"135":[2,102]},{"8":158,"9":118,"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,157],"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":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"82":[1,191],"83":192,"84":[1,56],"85":[1,57],"86":[1,68],"88":156,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"49":[1,193],"54":[1,194]},{"49":[2,56],"54":[2,56]},{"39":[1,196],"49":[2,58],"54":[2,58],"57":[1,195]},{"39":[2,61],"49":[2,61],"54":[2,61],"57":[2,61]},{"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]},{"29":142,"30":[1,72]},{"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],"82":[2,50],"87":[2,50],"96":[2,50],"98":[2,50],"99":[2,50],"100":[2,50],"107":[2,50],"111":[2,50],"112":[2,50],"123":[2,50],"124":[2,50],"126":[2,50],"127":[2,50],"130":[2,50],"131":[2,50],"132":[2,50],"133":[2,50],"134":[2,50],"135":[2,50]},{"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],"82":[2,178],"87":[2,178],"96":[2,178],"97":87,"98":[2,178],"99":[2,178],"100":[2,178],"103":88,"107":[2,178],"111":[2,178],"112":[2,178],"123":[2,178],"124":[2,178],"126":[2,178],"127":[2,178],"130":[1,77],"131":[2,178],"132":[2,178],"133":[2,178],"134":[2,178],"135":[2,178]},{"97":91,"98":[1,64],"100":[1,65],"103":92,"112":[1,67],"123":[1,89],"124":[1,90]},{"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],"82":[2,179],"87":[2,179],"96":[2,179],"97":87,"98":[2,179],"99":[2,179],"100":[2,179],"103":88,"107":[2,179],"111":[2,179],"112":[2,179],"123":[2,179],"124":[2,179],"126":[2,179],"127":[2,179],"130":[1,77],"131":[2,179],"132":[2,179],"133":[2,179],"134":[2,179],"135":[2,179]},{"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],"82":[2,180],"87":[2,180],"96":[2,180],"97":87,"98":[2,180],"99":[2,180],"100":[2,180],"103":88,"107":[2,180],"111":[2,180],"112":[2,180],"123":[2,180],"124":[2,180],"126":[2,180],"127":[2,180],"130":[1,77],"131":[2,180],"132":[2,180],"133":[2,180],"134":[2,180],"135":[2,180]},{"1":[2,181],"4":[2,181],"27":[2,181],"28":[2,181],"49":[2,181],"54":[2,181],"57":[2,181],"64":[2,70],"65":[2,70],"66":[2,70],"68":[2,70],"69":[2,181],"70":[2,70],"71":[2,70],"74":[2,181],"80":[2,70],"81":[2,70],"82":[2,181],"87":[2,181],"96":[2,181],"98":[2,181],"99":[2,181],"100":[2,181],"107":[2,181],"111":[2,181],"112":[2,181],"123":[2,181],"124":[2,181],"126":[2,181],"127":[2,181],"130":[2,181],"131":[2,181],"132":[2,181],"133":[2,181],"134":[2,181],"135":[2,181]},{"62":94,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"70":[1,101],"71":[1,102],"77":93,"80":[1,95],"81":[2,103]},{"62":104,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"70":[1,101],"71":[1,102],"77":103,"80":[1,95],"81":[2,103]},{"1":[2,73],"4":[2,73],"27":[2,73],"28":[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],"80":[2,73],"81":[2,73],"82":[2,73],"87":[2,73],"96":[2,73],"98":[2,73],"99":[2,73],"100":[2,73],"107":[2,73],"111":[2,73],"112":[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,182],"4":[2,182],"27":[2,182],"28":[2,182],"49":[2,182],"54":[2,182],"57":[2,182],"64":[2,70],"65":[2,70],"66":[2,70],"68":[2,70],"69":[2,182],"70":[2,70],"71":[2,70],"74":[2,182],"80":[2,70],"81":[2,70],"82":[2,182],"87":[2,182],"96":[2,182],"98":[2,182],"99":[2,182],"100":[2,182],"107":[2,182],"111":[2,182],"112":[2,182],"123":[2,182],"124":[2,182],"126":[2,182],"127":[2,182],"130":[2,182],"131":[2,182],"132":[2,182],"133":[2,182],"134":[2,182],"135":[2,182]},{"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],"82":[2,183],"87":[2,183],"96":[2,183],"98":[2,183],"99":[2,183],"100":[2,183],"107":[2,183],"111":[2,183],"112":[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]},{"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],"82":[2,184],"87":[2,184],"96":[2,184],"98":[2,184],"99":[2,184],"100":[2,184],"107":[2,184],"111":[2,184],"112":[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]},{"8":197,"9":118,"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,198],"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":199,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"6":201,"27":[1,6],"121":[1,200]},{"1":[2,121],"4":[2,121],"27":[2,121],"28":[2,121],"49":[2,121],"54":[2,121],"57":[2,121],"69":[2,121],"74":[2,121],"82":[2,121],"87":[2,121],"91":202,"92":[1,203],"93":[1,204],"96":[2,121],"98":[2,121],"99":[2,121],"100":[2,121],"107":[2,121],"111":[2,121],"112":[2,121],"123":[2,121],"124":[2,121],"126":[2,121],"127":[2,121],"130":[2,121],"131":[2,121],"132":[2,121],"133":[2,121],"134":[2,121],"135":[2,121]},{"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],"82":[2,132],"87":[2,132],"96":[2,132],"98":[2,132],"99":[2,132],"100":[2,132],"107":[2,132],"111":[2,132],"112":[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]},{"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],"82":[2,140],"87":[2,140],"96":[2,140],"98":[2,140],"99":[2,140],"100":[2,140],"107":[2,140],"111":[2,140],"112":[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]},{"27":[1,205],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"116":206,"118":207,"119":[1,208]},{"1":[2,92],"4":[2,92],"27":[2,92],"28":[2,92],"49":[2,92],"54":[2,92],"57":[2,92],"69":[2,92],"74":[2,92],"82":[2,92],"87":[2,92],"96":[2,92],"98":[2,92],"99":[2,92],"100":[2,92],"107":[2,92],"111":[2,92],"112":[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]},{"16":209,"17":123,"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":124,"43":61,"44":28,"58":49,"59":50,"61":210,"63":29,"72":[1,69],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"95":[1,55]},{"1":[2,95],"4":[2,95],"6":211,"27":[1,6],"28":[2,95],"49":[2,95],"54":[2,95],"57":[2,95],"64":[2,70],"65":[2,70],"66":[2,70],"68":[2,70],"69":[2,95],"70":[2,70],"71":[2,70],"74":[2,95],"76":[1,212],"80":[2,70],"81":[2,70],"82":[2,95],"87":[2,95],"96":[2,95],"98":[2,95],"99":[2,95],"100":[2,95],"107":[2,95],"111":[2,95],"112":[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]},{"1":[2,46],"4":[2,46],"28":[2,46],"97":87,"98":[2,46],"100":[2,46],"103":88,"112":[2,46],"123":[2,46],"124":[2,46],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,126],"4":[2,126],"28":[2,126],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[2,126],"124":[2,126],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"96":[1,213],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,109],"4":[2,109],"27":[2,109],"28":[2,109],"39":[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],"76":[2,109],"80":[2,109],"81":[2,109],"82":[2,109],"87":[2,109],"96":[2,109],"98":[2,109],"99":[2,109],"100":[2,109],"107":[2,109],"111":[2,109],"112":[2,109],"123":[2,109],"124":[2,109],"126":[2,109],"127":[2,109],"128":[2,109],"129":[2,109],"130":[2,109],"131":[2,109],"132":[2,109],"133":[2,109],"134":[2,109],"135":[2,109],"136":[2,109]},{"6":214,"27":[1,6],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"6":215,"27":[1,6],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,128],"4":[2,128],"27":[2,128],"28":[2,128],"49":[2,128],"54":[2,128],"57":[2,128],"69":[2,128],"74":[2,128],"82":[2,128],"87":[2,128],"96":[2,128],"97":87,"98":[1,64],"99":[1,216],"100":[1,65],"103":88,"107":[2,128],"111":[2,128],"112":[1,67],"123":[2,128],"124":[2,128],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,130],"87":[2,130],"96":[2,130],"97":87,"98":[1,64],"99":[1,217],"100":[1,65],"103":88,"107":[2,130],"111":[2,130],"112":[1,67],"123":[2,130],"124":[2,130],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,136],"87":[2,136],"96":[2,136],"98":[2,136],"99":[2,136],"100":[2,136],"107":[2,136],"111":[2,136],"112":[2,136],"123":[2,136],"124":[2,136],"126":[2,136],"127":[2,136],"130":[2,136],"131":[2,136],"132":[2,136],"133":[2,136],"134":[2,136],"135":[2,136]},{"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],"82":[2,137],"87":[2,137],"96":[2,137],"97":87,"98":[1,64],"99":[2,137],"100":[1,65],"103":88,"107":[2,137],"111":[2,137],"112":[1,67],"123":[2,137],"124":[2,137],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"54":[1,219],"105":218,"106":[1,220]},{"54":[2,141],"106":[2,141],"108":221,"109":[1,223],"114":[1,222]},{"29":224,"30":[1,72]},{"54":[2,142],"106":[2,142],"109":[2,142]},{"54":[2,143],"106":[2,143],"109":[2,143]},{"1":[2,110],"4":[2,110],"27":[2,110],"28":[2,110],"39":[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],"80":[2,110],"81":[2,110],"82":[2,110],"87":[2,110],"96":[2,110],"98":[2,110],"99":[2,110],"100":[2,110],"106":[2,110],"107":[2,110],"109":[2,110],"111":[2,110],"112":[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]},{"4":[2,53],"27":[2,53],"53":225,"54":[1,226],"87":[2,53]},{"4":[2,112],"27":[2,112],"28":[2,112],"54":[2,112],"82":[2,112],"87":[2,112]},{"8":158,"9":118,"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,157],"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":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"83":227,"84":[1,56],"85":[1,57],"86":[1,68],"88":156,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"4":[2,117],"27":[2,117],"28":[2,117],"54":[2,117],"57":[1,228],"82":[2,117],"87":[2,117],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"4":[2,118],"27":[2,118],"28":[2,118],"54":[2,118],"82":[2,118],"87":[2,118]},{"4":[2,53],"27":[2,53],"53":229,"54":[1,230],"74":[2,53]},{"4":[2,87],"27":[2,87],"28":[2,87],"54":[2,87],"74":[2,87]},{"4":[2,38],"27":[2,38],"28":[2,38],"42":[1,231],"54":[2,38],"74":[2,38]},{"4":[2,41],"27":[2,41],"28":[2,41],"54":[2,41],"74":[2,41]},{"4":[2,42],"27":[2,42],"28":[2,42],"54":[2,42],"74":[2,42]},{"4":[2,43],"27":[2,43],"28":[2,43],"42":[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]},{"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],"82":[2,27],"87":[2,27],"92":[2,27],"93":[2,27],"96":[2,27],"98":[2,27],"99":[2,27],"100":[2,27],"107":[2,27],"111":[2,27],"112":[2,27],"117":[2,27],"119":[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,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],"82":[2,186],"87":[2,186],"96":[2,186],"97":87,"98":[2,186],"99":[2,186],"100":[2,186],"103":88,"107":[2,186],"111":[2,186],"112":[2,186],"123":[2,186],"124":[2,186],"126":[2,186],"127":[2,186],"130":[1,77],"131":[1,80],"132":[2,186],"133":[2,186],"134":[2,186],"135":[2,186]},{"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],"82":[2,187],"87":[2,187],"96":[2,187],"97":87,"98":[2,187],"99":[2,187],"100":[2,187],"103":88,"107":[2,187],"111":[2,187],"112":[2,187],"123":[2,187],"124":[2,187],"126":[2,187],"127":[2,187],"130":[1,77],"131":[1,80],"132":[2,187],"133":[2,187],"134":[2,187],"135":[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],"82":[2,188],"87":[2,188],"96":[2,188],"97":87,"98":[2,188],"99":[2,188],"100":[2,188],"103":88,"107":[2,188],"111":[2,188],"112":[2,188],"123":[2,188],"124":[2,188],"126":[2,188],"127":[2,188],"130":[1,77],"131":[2,188],"132":[2,188],"133":[2,188],"134":[2,188],"135":[2,188]},{"1":[2,189],"4":[2,189],"27":[2,189],"28":[2,189],"49":[2,189],"54":[2,189],"57":[2,189],"69":[2,189],"74":[2,189],"82":[2,189],"87":[2,189],"96":[2,189],"97":87,"98":[2,189],"99":[2,189],"100":[2,189],"103":88,"107":[2,189],"111":[2,189],"112":[2,189],"123":[2,189],"124":[2,189],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[2,189],"133":[2,189],"134":[2,189],"135":[2,189]},{"1":[2,190],"4":[2,190],"27":[2,190],"28":[2,190],"49":[2,190],"54":[2,190],"57":[2,190],"69":[2,190],"74":[2,190],"82":[2,190],"87":[2,190],"96":[2,190],"97":87,"98":[2,190],"99":[2,190],"100":[2,190],"103":88,"107":[2,190],"111":[2,190],"112":[2,190],"123":[2,190],"124":[2,190],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[2,190],"134":[2,190],"135":[1,84]},{"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],"82":[2,191],"87":[2,191],"96":[2,191],"97":87,"98":[2,191],"99":[2,191],"100":[2,191],"103":88,"107":[2,191],"111":[2,191],"112":[2,191],"123":[2,191],"124":[2,191],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[2,191],"135":[1,84]},{"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],"82":[2,192],"87":[2,192],"96":[2,192],"97":87,"98":[2,192],"99":[2,192],"100":[2,192],"103":88,"107":[2,192],"111":[2,192],"112":[2,192],"123":[2,192],"124":[2,192],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[2,192],"134":[2,192],"135":[2,192]},{"1":[2,175],"4":[2,175],"27":[2,175],"28":[2,175],"49":[2,175],"54":[2,175],"57":[2,175],"69":[2,175],"74":[2,175],"82":[2,175],"87":[2,175],"96":[2,175],"97":87,"98":[1,64],"99":[2,175],"100":[1,65],"103":88,"107":[2,175],"111":[2,175],"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,177],"87":[2,177],"96":[2,177],"97":87,"98":[1,64],"99":[2,177],"100":[1,65],"103":88,"107":[2,177],"111":[2,177],"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,174],"4":[2,174],"27":[2,174],"28":[2,174],"49":[2,174],"54":[2,174],"57":[2,174],"69":[2,174],"74":[2,174],"82":[2,174],"87":[2,174],"96":[2,174],"97":87,"98":[1,64],"99":[2,174],"100":[1,65],"103":88,"107":[2,174],"111":[2,174],"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,176],"4":[2,176],"27":[2,176],"28":[2,176],"49":[2,176],"54":[2,176],"57":[2,176],"69":[2,176],"74":[2,176],"82":[2,176],"87":[2,176],"96":[2,176],"97":87,"98":[1,64],"99":[2,176],"100":[1,65],"103":88,"107":[2,176],"111":[2,176],"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,99],"4":[2,99],"27":[2,99],"28":[2,99],"49":[2,99],"54":[2,99],"57":[2,99],"64":[2,99],"65":[2,99],"66":[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],"96":[2,99],"98":[2,99],"99":[2,99],"100":[2,99],"107":[2,99],"111":[2,99],"112":[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,77],"4":[2,77],"27":[2,77],"28":[2,77],"39":[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],"76":[2,77],"80":[2,77],"81":[2,77],"82":[2,77],"87":[2,77],"96":[2,77],"98":[2,77],"99":[2,77],"100":[2,77],"107":[2,77],"111":[2,77],"112":[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]},{"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],"80":[2,78],"81":[2,78],"82":[2,78],"87":[2,78],"96":[2,78],"98":[2,78],"99":[2,78],"100":[2,78],"107":[2,78],"111":[2,78],"112":[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],"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],"80":[2,79],"81":[2,79],"82":[2,79],"87":[2,79],"96":[2,79],"98":[2,79],"99":[2,79],"100":[2,79],"107":[2,79],"111":[2,79],"112":[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]},{"69":[1,232],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"80":[2,83],"81":[2,83],"82":[2,83],"87":[2,83],"96":[2,83],"98":[2,83],"99":[2,83],"100":[2,83],"107":[2,83],"111":[2,83],"112":[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,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],"80":[2,84],"81":[2,84],"82":[2,84],"87":[2,84],"96":[2,84],"98":[2,84],"99":[2,84],"100":[2,84],"107":[2,84],"111":[2,84],"112":[2,84],"123":[2,84],"124":[2,84],"126":[2,84],"127":[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]},{"1":[2,100],"4":[2,100],"27":[2,100],"28":[2,100],"49":[2,100],"54":[2,100],"57":[2,100],"64":[2,100],"65":[2,100],"66":[2,100],"68":[2,100],"69":[2,100],"70":[2,100],"71":[2,100],"74":[2,100],"80":[2,100],"81":[2,100],"82":[2,100],"87":[2,100],"96":[2,100],"98":[2,100],"99":[2,100],"100":[2,100],"107":[2,100],"111":[2,100],"112":[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]},{"1":[2,36],"4":[2,36],"27":[2,36],"28":[2,36],"49":[2,36],"54":[2,36],"57":[2,36],"69":[2,36],"74":[2,36],"82":[2,36],"87":[2,36],"96":[2,36],"97":87,"98":[2,36],"99":[2,36],"100":[2,36],"103":88,"107":[2,36],"111":[2,36],"112":[2,36],"123":[2,36],"124":[2,36],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"8":233,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,105],"4":[2,105],"27":[2,105],"28":[2,105],"49":[2,105],"54":[2,105],"57":[2,105],"64":[2,105],"65":[2,105],"66":[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],"96":[2,105],"98":[2,105],"99":[2,105],"100":[2,105],"107":[2,105],"111":[2,105],"112":[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]},{"4":[2,53],"27":[2,53],"53":234,"54":[1,226],"82":[2,53]},{"50":235,"51":[1,58],"52":[1,59]},{"29":111,"30":[1,72],"43":112,"55":236,"56":110,"58":113,"59":114,"72":[1,69],"85":[1,115],"86":[1,68]},{"49":[2,59],"54":[2,59]},{"8":237,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,193],"87":[2,193],"96":[2,193],"97":87,"98":[2,193],"99":[2,193],"100":[2,193],"103":88,"107":[2,193],"111":[2,193],"112":[2,193],"123":[2,193],"124":[2,193],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"8":238,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,195],"87":[2,195],"96":[2,195],"97":87,"98":[2,195],"99":[2,195],"100":[2,195],"103":88,"107":[2,195],"111":[2,195],"112":[2,195],"123":[2,195],"124":[2,195],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"8":239,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,172],"87":[2,172],"96":[2,172],"98":[2,172],"99":[2,172],"100":[2,172],"107":[2,172],"111":[2,172],"112":[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]},{"1":[2,122],"4":[2,122],"27":[2,122],"28":[2,122],"49":[2,122],"54":[2,122],"57":[2,122],"69":[2,122],"74":[2,122],"82":[2,122],"87":[2,122],"92":[1,240],"96":[2,122],"98":[2,122],"99":[2,122],"100":[2,122],"107":[2,122],"111":[2,122],"112":[2,122],"123":[2,122],"124":[2,122],"126":[2,122],"127":[2,122],"130":[2,122],"131":[2,122],"132":[2,122],"133":[2,122],"134":[2,122],"135":[2,122]},{"6":241,"27":[1,6]},{"29":242,"30":[1,72]},{"116":243,"118":207,"119":[1,208]},{"28":[1,244],"117":[1,245],"118":246,"119":[1,208]},{"28":[2,165],"117":[2,165],"119":[2,165]},{"8":248,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"89":247,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,93],"4":[2,93],"6":249,"27":[1,6],"28":[2,93],"49":[2,93],"54":[2,93],"57":[2,93],"62":94,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"69":[2,93],"70":[1,101],"71":[1,102],"74":[2,93],"77":93,"80":[1,95],"81":[2,103],"82":[2,93],"87":[2,93],"96":[2,93],"98":[2,93],"99":[2,93],"100":[2,93],"107":[2,93],"111":[2,93],"112":[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,70],"4":[2,70],"27":[2,70],"28":[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],"80":[2,70],"81":[2,70],"82":[2,70],"87":[2,70],"96":[2,70],"98":[2,70],"99":[2,70],"100":[2,70],"107":[2,70],"111":[2,70],"112":[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,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],"82":[2,96],"87":[2,96],"96":[2,96],"98":[2,96],"99":[2,96],"100":[2,96],"107":[2,96],"111":[2,96],"112":[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]},{"16":250,"17":123,"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":124,"43":61,"44":28,"58":49,"59":50,"61":210,"63":29,"72":[1,69],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"95":[1,55]},{"1":[2,127],"4":[2,127],"27":[2,127],"28":[2,127],"42":[2,127],"49":[2,127],"54":[2,127],"57":[2,127],"64":[2,127],"65":[2,127],"66":[2,127],"68":[2,127],"69":[2,127],"70":[2,127],"71":[2,127],"74":[2,127],"80":[2,127],"81":[2,127],"82":[2,127],"87":[2,127],"96":[2,127],"98":[2,127],"99":[2,127],"100":[2,127],"107":[2,127],"111":[2,127],"112":[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]},{"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],"82":[2,169],"87":[2,169],"96":[2,169],"98":[2,169],"99":[2,169],"100":[2,169],"107":[2,169],"111":[2,169],"112":[2,169],"117":[2,169],"123":[2,169],"124":[2,169],"126":[2,169],"127":[2,169],"130":[2,169],"131":[2,169],"132":[2,169],"133":[2,169],"134":[2,169],"135":[2,169]},{"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],"82":[2,170],"87":[2,170],"96":[2,170],"98":[2,170],"99":[2,170],"100":[2,170],"107":[2,170],"111":[2,170],"112":[2,170],"117":[2,170],"123":[2,170],"124":[2,170],"126":[2,170],"127":[2,170],"130":[2,170],"131":[2,170],"132":[2,170],"133":[2,170],"134":[2,170],"135":[2,170]},{"8":251,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":252,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,154],"87":[2,154],"96":[2,154],"98":[2,154],"99":[2,154],"100":[2,154],"107":[2,154],"111":[2,154],"112":[2,154],"123":[2,154],"124":[2,154],"126":[2,154],"127":[2,154],"130":[2,154],"131":[2,154],"132":[2,154],"133":[2,154],"134":[2,154],"135":[2,154]},{"29":253,"30":[1,72],"58":152,"59":153,"72":[1,69],"86":[1,68],"104":254},{"8":255,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,156],"87":[2,156],"96":[2,156],"98":[2,156],"99":[2,156],"100":[2,156],"107":[2,156],"111":[2,156],"112":[2,156],"123":[2,156],"124":[2,156],"126":[2,156],"127":[2,156],"130":[2,156],"131":[2,156],"132":[2,156],"133":[2,156],"134":[2,156],"135":[2,156]},{"8":256,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":257,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"54":[1,259],"108":258,"109":[1,223]},{"4":[1,261],"27":[1,262],"87":[1,260]},{"4":[2,54],"8":158,"9":118,"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,54],"28":[2,54],"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":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"82":[2,54],"84":[1,56],"85":[1,57],"86":[1,68],"87":[2,54],"88":263,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"4":[2,53],"27":[2,53],"28":[2,53],"53":264,"54":[1,226]},{"4":[2,65],"27":[2,65],"28":[2,65],"54":[2,65],"82":[2,65],"87":[2,65]},{"4":[1,266],"27":[1,267],"74":[1,265]},{"4":[2,54],"15":164,"27":[2,54],"28":[2,54],"29":165,"30":[1,72],"31":166,"32":[1,70],"33":[1,71],"40":268,"41":162,"43":163,"44":167,"46":[1,48],"74":[2,54],"85":[1,115],"95":[1,55]},{"8":269,"9":118,"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,270],"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"80":[2,82],"81":[2,82],"82":[2,82],"87":[2,82],"96":[2,82],"98":[2,82],"99":[2,82],"100":[2,82],"107":[2,82],"111":[2,82],"112":[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]},{"28":[1,271],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"4":[1,261],"27":[1,262],"82":[1,272]},{"6":273,"27":[1,6]},{"49":[2,57],"54":[2,57]},{"49":[2,60],"54":[2,60],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"28":[1,274],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"6":275,"27":[1,6],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"6":276,"27":[1,6]},{"1":[2,123],"4":[2,123],"27":[2,123],"28":[2,123],"49":[2,123],"54":[2,123],"57":[2,123],"69":[2,123],"74":[2,123],"82":[2,123],"87":[2,123],"96":[2,123],"98":[2,123],"99":[2,123],"100":[2,123],"107":[2,123],"111":[2,123],"112":[2,123],"123":[2,123],"124":[2,123],"126":[2,123],"127":[2,123],"130":[2,123],"131":[2,123],"132":[2,123],"133":[2,123],"134":[2,123],"135":[2,123]},{"6":277,"27":[1,6]},{"28":[1,278],"117":[1,279],"118":246,"119":[1,208]},{"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],"82":[2,163],"87":[2,163],"96":[2,163],"98":[2,163],"99":[2,163],"100":[2,163],"107":[2,163],"111":[2,163],"112":[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]},{"6":280,"27":[1,6]},{"28":[2,166],"117":[2,166],"119":[2,166]},{"6":281,"27":[1,6],"54":[1,282]},{"27":[2,119],"54":[2,119],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,94],"87":[2,94],"96":[2,94],"98":[2,94],"99":[2,94],"100":[2,94],"107":[2,94],"111":[2,94],"112":[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,97],"4":[2,97],"6":283,"27":[1,6],"28":[2,97],"49":[2,97],"54":[2,97],"57":[2,97],"62":94,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"69":[2,97],"70":[1,101],"71":[1,102],"74":[2,97],"77":93,"80":[1,95],"81":[2,103],"82":[2,97],"87":[2,97],"96":[2,97],"98":[2,97],"99":[2,97],"100":[2,97],"107":[2,97],"111":[2,97],"112":[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,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],"82":[2,129],"87":[2,129],"96":[2,129],"97":87,"98":[1,64],"99":[2,129],"100":[1,65],"103":88,"107":[2,129],"111":[2,129],"112":[1,67],"123":[2,129],"124":[2,129],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,131],"87":[2,131],"96":[2,131],"97":87,"98":[1,64],"99":[2,131],"100":[1,65],"103":88,"107":[2,131],"111":[2,131],"112":[1,67],"123":[2,131],"124":[2,131],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"105":284,"106":[1,220],"109":[2,141]},{"108":285,"109":[1,223]},{"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],"82":[2,144],"87":[2,144],"96":[2,144],"97":87,"98":[1,64],"99":[1,286],"100":[1,65],"103":88,"107":[1,287],"111":[2,144],"112":[1,67],"123":[2,144],"124":[2,144],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"97":87,"98":[1,64],"100":[1,65],"103":88,"110":288,"111":[1,289],"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,148],"87":[2,148],"96":[2,148],"97":87,"98":[1,64],"99":[1,290],"100":[1,65],"103":88,"107":[2,148],"111":[2,148],"112":[1,67],"123":[2,148],"124":[2,148],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,158],"87":[2,158],"96":[2,158],"98":[2,158],"99":[2,158],"100":[2,158],"107":[2,158],"111":[2,158],"112":[2,158],"123":[2,158],"124":[2,158],"126":[2,158],"127":[2,158],"130":[2,158],"131":[2,158],"132":[2,158],"133":[2,158],"134":[2,158],"135":[2,158]},{"29":292,"30":[1,72],"58":152,"59":153,"72":[1,69],"86":[1,68],"104":291},{"1":[2,111],"4":[2,111],"27":[2,111],"28":[2,111],"39":[2,111],"49":[2,111],"54":[2,111],"57":[2,111],"64":[2,111],"65":[2,111],"66":[2,111],"68":[2,111],"69":[2,111],"70":[2,111],"71":[2,111],"74":[2,111],"80":[2,111],"81":[2,111],"82":[2,111],"87":[2,111],"96":[2,111],"98":[2,111],"99":[2,111],"100":[2,111],"106":[2,111],"107":[2,111],"109":[2,111],"111":[2,111],"112":[2,111],"123":[2,111],"124":[2,111],"126":[2,111],"127":[2,111],"130":[2,111],"131":[2,111],"132":[2,111],"133":[2,111],"134":[2,111],"135":[2,111]},{"8":158,"9":118,"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":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"88":293,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":158,"9":118,"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,157],"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":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"83":294,"84":[1,56],"85":[1,57],"86":[1,68],"88":156,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"4":[2,113],"27":[2,113],"28":[2,113],"54":[2,113],"82":[2,113],"87":[2,113]},{"4":[1,261],"27":[1,262],"28":[1,295]},{"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],"80":[2,85],"81":[2,85],"82":[2,85],"87":[2,85],"96":[2,85],"98":[2,85],"99":[2,85],"100":[2,85],"106":[2,85],"107":[2,85],"109":[2,85],"111":[2,85],"112":[2,85],"123":[2,85],"124":[2,85],"126":[2,85],"127":[2,85],"130":[2,85],"131":[2,85],"132":[2,85],"133":[2,85],"134":[2,85],"135":[2,85]},{"15":164,"29":165,"30":[1,72],"31":166,"32":[1,70],"33":[1,71],"40":296,"41":162,"43":163,"44":167,"46":[1,48],"85":[1,115],"95":[1,55]},{"4":[2,86],"15":164,"27":[2,86],"28":[2,86],"29":165,"30":[1,72],"31":166,"32":[1,70],"33":[1,71],"40":161,"41":162,"43":163,"44":167,"46":[1,48],"54":[2,86],"73":297,"85":[1,115],"95":[1,55]},{"4":[2,88],"27":[2,88],"28":[2,88],"54":[2,88],"74":[2,88]},{"4":[2,39],"27":[2,39],"28":[2,39],"54":[2,39],"74":[2,39],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"8":298,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,37],"87":[2,37],"96":[2,37],"98":[2,37],"99":[2,37],"100":[2,37],"107":[2,37],"111":[2,37],"112":[2,37],"123":[2,37],"124":[2,37],"126":[2,37],"127":[2,37],"130":[2,37],"131":[2,37],"132":[2,37],"133":[2,37],"134":[2,37],"135":[2,37]},{"1":[2,106],"4":[2,106],"27":[2,106],"28":[2,106],"49":[2,106],"54":[2,106],"57":[2,106],"64":[2,106],"65":[2,106],"66":[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],"96":[2,106],"98":[2,106],"99":[2,106],"100":[2,106],"107":[2,106],"111":[2,106],"112":[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,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],"82":[2,49],"87":[2,49],"96":[2,49],"98":[2,49],"99":[2,49],"100":[2,49],"107":[2,49],"111":[2,49],"112":[2,49],"123":[2,49],"124":[2,49],"126":[2,49],"127":[2,49],"130":[2,49],"131":[2,49],"132":[2,49],"133":[2,49],"134":[2,49],"135":[2,49]},{"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],"82":[2,194],"87":[2,194],"96":[2,194],"98":[2,194],"99":[2,194],"100":[2,194],"107":[2,194],"111":[2,194],"112":[2,194],"123":[2,194],"124":[2,194],"126":[2,194],"127":[2,194],"130":[2,194],"131":[2,194],"132":[2,194],"133":[2,194],"134":[2,194],"135":[2,194]},{"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],"82":[2,171],"87":[2,171],"96":[2,171],"98":[2,171],"99":[2,171],"100":[2,171],"107":[2,171],"111":[2,171],"112":[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,124],"4":[2,124],"27":[2,124],"28":[2,124],"49":[2,124],"54":[2,124],"57":[2,124],"69":[2,124],"74":[2,124],"82":[2,124],"87":[2,124],"96":[2,124],"98":[2,124],"99":[2,124],"100":[2,124],"107":[2,124],"111":[2,124],"112":[2,124],"123":[2,124],"124":[2,124],"126":[2,124],"127":[2,124],"130":[2,124],"131":[2,124],"132":[2,124],"133":[2,124],"134":[2,124],"135":[2,124]},{"1":[2,125],"4":[2,125],"27":[2,125],"28":[2,125],"49":[2,125],"54":[2,125],"57":[2,125],"69":[2,125],"74":[2,125],"82":[2,125],"87":[2,125],"92":[2,125],"96":[2,125],"98":[2,125],"99":[2,125],"100":[2,125],"107":[2,125],"111":[2,125],"112":[2,125],"123":[2,125],"124":[2,125],"126":[2,125],"127":[2,125],"130":[2,125],"131":[2,125],"132":[2,125],"133":[2,125],"134":[2,125],"135":[2,125]},{"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],"82":[2,161],"87":[2,161],"96":[2,161],"98":[2,161],"99":[2,161],"100":[2,161],"107":[2,161],"111":[2,161],"112":[2,161],"123":[2,161],"124":[2,161],"126":[2,161],"127":[2,161],"130":[2,161],"131":[2,161],"132":[2,161],"133":[2,161],"134":[2,161],"135":[2,161]},{"6":299,"27":[1,6]},{"28":[1,300]},{"4":[1,301],"28":[2,167],"117":[2,167],"119":[2,167]},{"8":302,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,98],"4":[2,98],"27":[2,98],"28":[2,98],"49":[2,98],"54":[2,98],"57":[2,98],"69":[2,98],"74":[2,98],"82":[2,98],"87":[2,98],"96":[2,98],"98":[2,98],"99":[2,98],"100":[2,98],"107":[2,98],"111":[2,98],"112":[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,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],"82":[2,155],"87":[2,155],"96":[2,155],"98":[2,155],"99":[2,155],"100":[2,155],"107":[2,155],"111":[2,155],"112":[2,155],"123":[2,155],"124":[2,155],"126":[2,155],"127":[2,155],"130":[2,155],"131":[2,155],"132":[2,155],"133":[2,155],"134":[2,155],"135":[2,155]},{"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],"82":[2,157],"87":[2,157],"96":[2,157],"98":[2,157],"99":[2,157],"100":[2,157],"107":[2,157],"111":[2,157],"112":[2,157],"123":[2,157],"124":[2,157],"126":[2,157],"127":[2,157],"130":[2,157],"131":[2,157],"132":[2,157],"133":[2,157],"134":[2,157],"135":[2,157]},{"8":303,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":304,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,160],"87":[2,160],"96":[2,160],"98":[2,160],"99":[2,160],"100":[2,160],"107":[2,160],"111":[2,160],"112":[2,160],"123":[2,160],"124":[2,160],"126":[2,160],"127":[2,160],"130":[2,160],"131":[2,160],"132":[2,160],"133":[2,160],"134":[2,160],"135":[2,160]},{"8":305,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":306,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"108":307,"109":[1,223]},{"109":[2,141]},{"4":[2,114],"27":[2,114],"28":[2,114],"54":[2,114],"82":[2,114],"87":[2,114]},{"4":[2,53],"27":[2,53],"28":[2,53],"53":308,"54":[1,226]},{"4":[2,115],"27":[2,115],"28":[2,115],"54":[2,115],"82":[2,115],"87":[2,115]},{"4":[2,89],"27":[2,89],"28":[2,89],"54":[2,89],"74":[2,89]},{"4":[2,53],"27":[2,53],"28":[2,53],"53":309,"54":[1,230]},{"28":[1,310],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"28":[1,311]},{"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],"82":[2,164],"87":[2,164],"96":[2,164],"98":[2,164],"99":[2,164],"100":[2,164],"107":[2,164],"111":[2,164],"112":[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]},{"28":[2,168],"117":[2,168],"119":[2,168]},{"27":[2,120],"54":[2,120],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,145],"87":[2,145],"96":[2,145],"97":87,"98":[1,64],"99":[2,145],"100":[1,65],"103":88,"107":[2,145],"111":[2,145],"112":[1,67],"123":[2,145],"124":[2,145],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,146],"87":[2,146],"96":[2,146],"97":87,"98":[1,64],"99":[1,312],"100":[1,65],"103":88,"107":[2,146],"111":[2,146],"112":[1,67],"123":[2,146],"124":[2,146],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,150],"4":[2,150],"27":[2,150],"28":[2,150],"49":[2,150],"54":[2,150],"57":[2,150],"69":[2,150],"74":[2,150],"82":[2,150],"87":[2,150],"96":[2,150],"97":87,"98":[1,64],"99":[1,313],"100":[1,65],"103":88,"107":[1,314],"111":[2,150],"112":[1,67],"123":[2,150],"124":[2,150],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,149],"4":[2,149],"27":[2,149],"28":[2,149],"49":[2,149],"54":[2,149],"57":[2,149],"69":[2,149],"74":[2,149],"82":[2,149],"87":[2,149],"96":[2,149],"97":87,"98":[1,64],"99":[2,149],"100":[1,65],"103":88,"107":[2,149],"111":[2,149],"112":[1,67],"123":[2,149],"124":[2,149],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,159],"87":[2,159],"96":[2,159],"98":[2,159],"99":[2,159],"100":[2,159],"107":[2,159],"111":[2,159],"112":[2,159],"123":[2,159],"124":[2,159],"126":[2,159],"127":[2,159],"130":[2,159],"131":[2,159],"132":[2,159],"133":[2,159],"134":[2,159],"135":[2,159]},{"4":[1,261],"27":[1,262],"28":[1,315]},{"4":[1,266],"27":[1,267],"28":[1,316]},{"4":[2,40],"27":[2,40],"28":[2,40],"54":[2,40],"74":[2,40]},{"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],"82":[2,162],"87":[2,162],"96":[2,162],"98":[2,162],"99":[2,162],"100":[2,162],"107":[2,162],"111":[2,162],"112":[2,162],"123":[2,162],"124":[2,162],"126":[2,162],"127":[2,162],"130":[2,162],"131":[2,162],"132":[2,162],"133":[2,162],"134":[2,162],"135":[2,162]},{"8":317,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":318,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":319,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"4":[2,116],"27":[2,116],"28":[2,116],"54":[2,116],"82":[2,116],"87":[2,116]},{"4":[2,90],"27":[2,90],"28":[2,90],"54":[2,90],"74":[2,90]},{"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],"82":[2,147],"87":[2,147],"96":[2,147],"97":87,"98":[1,64],"99":[2,147],"100":[1,65],"103":88,"107":[2,147],"111":[2,147],"112":[1,67],"123":[2,147],"124":[2,147],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,151],"4":[2,151],"27":[2,151],"28":[2,151],"49":[2,151],"54":[2,151],"57":[2,151],"69":[2,151],"74":[2,151],"82":[2,151],"87":[2,151],"96":[2,151],"97":87,"98":[1,64],"99":[2,151],"100":[1,65],"103":88,"107":[2,151],"111":[2,151],"112":[1,67],"123":[2,151],"124":[2,151],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,152],"87":[2,152],"96":[2,152],"97":87,"98":[1,64],"99":[1,320],"100":[1,65],"103":88,"107":[2,152],"111":[2,152],"112":[1,67],"123":[2,152],"124":[2,152],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"8":321,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,153],"87":[2,153],"96":[2,153],"97":87,"98":[1,64],"99":[2,153],"100":[1,65],"103":88,"107":[2,153],"111":[2,153],"112":[1,67],"123":[2,153],"124":[2,153],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]}], ++defaultActions: {"2":[2,2],"58":[2,51],"59":[2,52],"74":[2,4],"95":[2,104],"292":[2,141]}, + parseError: function parseError(str, hash) { + throw new Error(str); + }, +diff --git a/src/grammar.coffee b/src/grammar.coffee +index 759daa2..6a021a6 100644 +--- a/src/grammar.coffee ++++ b/src/grammar.coffee +@@ -109,7 +109,6 @@ grammar = + Block: [ + o 'INDENT Body OUTDENT', -> $2 + o 'INDENT OUTDENT', -> new Expressions +- o 'TERMINATOR Comment', -> Expressions.wrap [$2] + ] + + # A literal identifier, a variable name or property. +@@ -275,32 +274,14 @@ grammar = + # Class definitions have optional bodies of prototype property assignments, + # and optional references to the superclass. + Class: [ +- o 'CLASS SimpleAssignable', -> new Class $2 +- o 'CLASS SimpleAssignable EXTENDS Value', -> new Class $2, $4 +- o 'CLASS SimpleAssignable +- INDENT ClassBody OUTDENT', -> new Class $2, null, $4 +- o 'CLASS SimpleAssignable EXTENDS Value +- INDENT ClassBody OUTDENT', -> new Class $2, $4, $6 +- o 'CLASS INDENT ClassBody OUTDENT', -> new Class null, null, $3 +- o 'CLASS', -> new Class null, null, new Expressions +- o 'CLASS EXTENDS Value', -> new Class null, $3 , new Expressions +- o 'CLASS EXTENDS Value +- INDENT ClassBody OUTDENT', -> new Class null, $3, $5 +- ] +- +- # Assignments that can happen directly inside a class declaration. +- ClassAssign: [ +- o 'AssignObj', -> $1 +- o 'ThisProperty : Expression', -> new Assign new Value($1), $3, 'this' +- o 'ThisProperty : INDENT Expression OUTDENT', -> new Assign new Value($1), $4, 'this' +- ] +- +- # A list of assignments to a class. +- ClassBody: [ +- o '', -> [] +- o 'ClassAssign', -> [$1] +- o 'ClassBody TERMINATOR ClassAssign', -> $1.concat $3 +- o '{ ClassBody }', -> $2 ++ o 'CLASS', -> new Class ++ o 'CLASS Block', -> new Class null, null, $2 ++ o 'CLASS EXTENDS Value', -> new Class null, $3 ++ o 'CLASS EXTENDS Value Block', -> new Class null, $3, $4 ++ o 'CLASS SimpleAssignable', -> new Class $2 ++ o 'CLASS SimpleAssignable Block', -> new Class $2, null, $3 ++ o 'CLASS SimpleAssignable EXTENDS Value', -> new Class $2, $4 ++ o 'CLASS SimpleAssignable EXTENDS Value Block', -> new Class $2, $4, $5 + ] + + # Ordinary function invocation, or a chained series of calls. +diff --git a/src/nodes.coffee b/src/nodes.coffee +index 922e484..1c24e06 100644 +--- a/src/nodes.coffee ++++ b/src/nodes.coffee +@@ -11,13 +11,10 @@ + exports.extend = extend # for parser + + # Constant functions for nodes that don't need customization. +-YES = -> yes +-NO = -> no +-THIS = -> this +- +-# Default implementations of common functions. +-RETURN = -> @returns = yes; this +-NEGATE = -> @negated = not @negated; this ++YES = -> yes ++NO = -> no ++THIS = -> this ++NEGATE = -> @negated = not @negated; this + + #### Base + +@@ -448,7 +445,7 @@ exports.Call = class Call extends Base + unfoldSoak: (o) -> + if @soak + if @variable +- return ifn if ifn = If.unfoldSoak o, this, 'variable' ++ return ifn if ifn = unfoldSoak o, this, 'variable' + [left, rite] = new Value(@variable).cacheReference o + else + left = new Literal @superReference o +@@ -473,7 +470,7 @@ exports.Call = class Call extends Base + call.variable = ifn + else + call.variable.base = ifn +- ifn = If.unfoldSoak o, call, 'variable' ++ ifn = unfoldSoak o, call, 'variable' + ifn + + # Compile a vanilla function call. +@@ -657,78 +654,89 @@ exports.Arr = class Arr extends Base + # The CoffeeScript class definition. + exports.Class = class Class extends Base + +- children: ['variable', 'parent', 'properties'] +- +- isStatement: YES +- makeReturn: RETURN ++ children: ['variable', 'parent', 'body'] + + # Initialize a **Class** with its name, an optional superclass, and a + # list of prototype property assignments. +- constructor: (@variable, @parent, @properties = []) -> ++ constructor: (@variable, @parent, @body = new Expressions) -> + + # 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. + compileNode: (o) -> +- variable = @variable or new Literal o.scope.freeVariable 'ctor' +- extension = @parent and new Extends variable, @parent +- props = new Expressions +- me = null +- className = variable.compile o +- constScope = null +- +- if @parent +- applied = new Value @parent, [new Accessor new Literal 'apply'] +- ctor = new Code [], new Expressions [ +- new Call applied, [new Literal('this'), new Literal('arguments')] +- ] +- else +- ctor = new Code [], new Expressions [new Return new Literal 'this'] +- +- for prop in @properties +- {variable: pvar, value: func} = prop +- if pvar and pvar.base.value is 'constructor' +- if func not instanceof Code +- [func, ref] = func.cache o +- props.push func if func isnt ref +- apply = new Call new Value(ref, [new Accessor new Literal 'apply']), +- [new Literal('this'), new Literal('arguments')] +- func = new Code [], new Expressions([apply]) +- throw SyntaxError 'cannot define a constructor as a bound function.' if func.bound +- func.name = className +- func.body.push new Return new Literal 'this' +- variable = new Value variable +- variable.namespaced = 0 < className.indexOf '.' +- ctor = func +- ctor.comment = props.expressions.pop() if last(props.expressions) instanceof Comment +- continue +- if func instanceof Code and func.bound +- if prop.context is 'this' +- func.context = className +- else +- func.bound = false +- constScope or= new Scope o.scope, ctor.body, ctor +- me or= constScope.freeVariable 'this' +- pname = pvar.compile o +- ctor.body.push new Return new Literal 'this' if ctor.body.isEmpty() +- ret = "return #{className}.prototype.#{pname}.apply(#{me}, arguments);" +- ctor.body.unshift new Literal "this.#{pname} = function() { #{ret} }" +- if pvar +- access = if prop.context is 'this' +- then pvar.properties[0] +- else new Accessor pvar, 'proto' +- val = new Value variable, [access] +- prop = new Assign val, func +- props.push prop +- +- ctor.className = className.match /[$\w]+$/ +- ctor.body.unshift new Literal "#{me} = this" if me +- o.sharedScope = constScope +- code = @tab + new Assign(variable, ctor).compile(o) + ';' +- code += '\n' + @tab + extension.compile(o) + ';' if extension +- code += '\n' + props.compile o if !props.isEmpty() +- code += '\n' + new Return(variable).compile o if @returns +- code ++ if @variable ++ decl = if tail = last @variable.properties ++ tail instanceof Accessor and tail.name.value ++ else ++ @variable.base.value ++ decl and= IDENTIFIER.test(decl) and decl ++ ++ name = decl or @name or '_Class' ++ lname = new Literal 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 ++ ++ convert = (node) -> ++ for assign in node.base.properties ++ if assign instanceof Assign ++ base = assign.variable.base ++ assign.variable = new Value(lname, [new Accessor(base, 'proto')]) ++ delete assign.context ++ func = assign.value ++ if func instanceof Code and func.bound ++ boundFuncs.push base ++ func.bound = no ++ assign ++ ++ boundFuncs = [] ++ others = [] ++ for node, i in exps = @body.expressions ++ if node instanceof Value and node.isObject() ++ exps[i] = convert node ++ else if node instanceof Code ++ if ctor ++ throw new Error 'cannot define more than one constructor in a class' ++ if node.bound ++ throw new Error 'cannot define a constructor as a bound function' ++ ctor = node ++ exps.splice(i, 1) ++ exps.unshift ctor ++ else ++ others.push node ++ ++ # TODO: refactor ++ for other in others ++ other.traverseChildren false, (n2) -> ++ if n2 instanceof Expressions ++ for expr2, j in n2.expressions ++ if expr2 instanceof Value and expr2.isObject() ++ n2.expressions[j] = convert expr2 ++ n2.expressions = flatten n2.expressions ++ ++ @body.expressions = exps = flatten exps ++ unless ctor ++ exps.unshift ctor = new Code ++ if @parent ++ ctor.body.push new Call 'super', [new Splat new Literal 'arguments'] ++ ctor.ctor = ctor.name = name ++ ctor.klass = null ++ ctor.noReturn = yes ++ exps.splice 1, 0, new Extends lname, @parent if @parent ++ exps.push lname ++ ++ if boundFuncs.length ++ for bvar in boundFuncs ++ bname = bvar.compile o ++ ctor.body.unshift new Literal "this.#{bname} = #{utility 'bind'}(this.#{bname}, this);" ++ ++ 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 + + #### Assign + +@@ -737,7 +745,7 @@ exports.Class = class Class extends Base + exports.Assign = class Assign extends Base + + # Matchers for detecting class/method names +- METHOD_DEF: /^(?:(\S+)\.prototype\.)?([$A-Za-z_][$\w]*)$/ ++ METHOD_DEF: /^(?:(\S+)\.prototype\.|\S+?)?\b([$A-Za-z_][$\w]*)$/ + + children: ['variable', 'value'] + +@@ -747,7 +755,7 @@ exports.Assign = class Assign extends Base + @[if @context is 'object' then 'value' else 'variable'].assigns name + + unfoldSoak: (o) -> +- If.unfoldSoak o, this, 'variable' ++ unfoldSoak o, this, 'variable' + + # Compile an assignment, delegating to `compilePatternMatch` or + # `compileSplice` if appropriate. Keep track of the name of the base object +@@ -760,7 +768,7 @@ exports.Assign = class Assign extends Base + name = @variable.compile o, LEVEL_LIST + if @value instanceof Code and match = @METHOD_DEF.exec name + @value.name = match[2] +- @value.klass = match[1] ++ @value.klass = match[1] if match[1] + val = @value.compile o, LEVEL_LIST + return "#{name}: #{val}" if @context is 'object' + unless @variable.isAssignable() +@@ -856,10 +864,14 @@ exports.Code = class Code extends Base + + children: ['params', 'body'] + +- constructor: (@params = [], @body = new Expressions, tag) -> ++ constructor: (params, body, tag) -> ++ @params = params or [] ++ @body = body or new Expressions + @bound = tag is 'boundfunc' + @context = 'this' if @bound + ++ isStatement: -> !!@ctor ++ + # 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 `=>` +@@ -892,23 +904,18 @@ exports.Code = class Code extends Base + scope.startLevel() + wasEmpty = @body.isEmpty() + exprs.unshift splats if splats +- @body.expressions.splice 0, 0, exprs... if exprs.length +- @body.makeReturn() unless wasEmpty or @noReturn ++ @body.expressions.unshift exprs... if exprs.length + scope.parameter vars[i] = v.compile o for v, i in vars unless splats +- comm = if @comment then @comment.compile(o) + '\n' else '' +- idt = o.indent +- o.indent += TAB if @className +- code = if @body.isEmpty() then '' else "\n#{ @body.compileWithDeclarations o }\n" +- if @className +- open = "(function() {\n#{comm}#{idt}function #{@className}(" +- close = "#{ code and idt }}\n#{idt}return #{@className};\n#{@tab}})()" +- else +- open = 'function(' +- close = "#{ code and @tab }}" +- func = "#{open}#{ vars.join ', ' }) {#{code}#{close}" +- scope.endLevel() +- return "#{ utility 'bind' }(#{func}, #{@context})" if @bound +- if @front then "(#{func})" else func ++ @body.makeReturn() unless wasEmpty or @noReturn ++ idt = o.indent ++ code = 'function' ++ code += ' ' + @name if @ctor ++ code += '(' + vars.join(', ') + ') {' ++ code += "\n#{ @body.compileWithDeclarations o }\n#{@tab}" unless @body.isEmpty() ++ code += '}' ++ return @tab + code if @ctor ++ return utility('bind') + "(#{code}, #{@context})" if @bound ++ if @front then "(#{code})" else code + + # Short-circuit `traverseChildren` method to prevent it from crossing scope boundaries + # unless `crossScope` is `true`. +@@ -988,12 +995,15 @@ exports.While = class While extends Base + children: ['condition', 'guard', 'body'] + + isStatement: YES +- makeReturn: RETURN + + constructor: (condition, options) -> + @condition = if options?.invert then condition.invert() else condition + @guard = options?.guard + ++ makeReturn: -> ++ @returns = yes ++ this ++ + addBody: (@body) -> + this + +@@ -1078,7 +1088,7 @@ exports.Op = class Op extends Base + new Op '!', this + + unfoldSoak: (o) -> +- @operator in ['++', '--', 'delete'] and If.unfoldSoak o, this, 'first' ++ @operator in ['++', '--', 'delete'] and unfoldSoak o, this, 'first' + + compileNode: (o) -> + return @compileUnary o if @isUnary() +@@ -1267,7 +1277,6 @@ exports.For = class For extends Base + children: ['body', 'source', 'guard', 'step', 'from', 'to'] + + isStatement: YES +- makeReturn: RETURN + + constructor: (body, head) -> + if head.index instanceof Value +@@ -1277,6 +1286,10 @@ exports.For = class For extends Base + @pattern = @name instanceof Value + @returns = false + ++ makeReturn: -> ++ @returns = yes ++ this ++ + containsPureStatement: While::containsPureStatement + + compileReturnValue: (val, o) -> +@@ -1497,13 +1510,6 @@ exports.If = class If extends Base + unfoldSoak: -> + @soak and this + +- # Unfold a node's child if soak, then tuck the node under created `If` +- @unfoldSoak: (o, parent, name) -> +- return unless ifn = parent[name].unfoldSoak o +- parent[name] = ifn.body +- ifn.body = new Value parent +- ifn +- + # Faux-Nodes + # ---------- + # Faux-nodes are never created by the grammar, but are used during code +@@ -1545,6 +1551,13 @@ Closure = + literalThis: (node) -> node instanceof Literal and node.value is 'this' or + node instanceof Code and node.bound + ++# Unfold a node's child if soak, then tuck the node under created `If` ++unfoldSoak = (o, parent, name) -> ++ return unless ifn = parent[name].unfoldSoak o ++ parent[name] = ifn.body ++ ifn.body = new Value parent ++ ifn ++ + # Constants + # --------- + +diff --git a/src/rewriter.coffee b/src/rewriter.coffee +index ac7b79a..2c0478d 100644 +--- a/src/rewriter.coffee ++++ b/src/rewriter.coffee +@@ -133,19 +133,19 @@ class exports.Rewriter + # Insert the implicit parentheses here, so that the parser doesn't have to + # deal with them. + addImplicitParentheses: -> +- classLine = no ++ noCall = no + action = (token, i) -> + idx = if token[0] is 'OUTDENT' then i + 1 else i + @tokens.splice idx, 0, ['CALL_END', ')', token[2]] + @scanTokens (token, i, tokens) -> +- tag = token[0] +- classLine = yes if tag is 'CLASS' ++ tag = token[0] ++ noCall = yes if tag in ['CLASS', 'IF', 'UNLESS'] + {(i-1): prev, (i+1): next} = tokens +- callObject = not classLine and tag is 'INDENT' and ++ callObject = not noCall and tag is 'INDENT' and + next and next.generated and next[0] is '{' and + prev and prev[0] in IMPLICIT_FUNC + seenSingle = no +- classLine = no if tag in LINEBREAKS ++ noCall = no if tag in LINEBREAKS + token.call = yes if prev and not prev.spaced and tag is '?' + return 1 unless callObject or + prev?.spaced and (prev.call or prev[0] in IMPLICIT_FUNC) and +-- +2.9.3 + diff --git a/gnu/packages/patches/coffeescript-backport-explicit-constructor-syntax.patch b/gnu/packages/patches/coffeescript-backport-explicit-constructor-syntax.patch new file mode 100644 index 000000000..97f49e6d3 --- /dev/null +++ b/gnu/packages/patches/coffeescript-backport-explicit-constructor-syntax.patch @@ -0,0 +1,59 @@ +From 2da9150250cefdc1d7d44f4af4ff18ea347fb8f7 Mon Sep 17 00:00:00 2001 +From: Jelle Licht +Date: Sun, 21 Aug 2016 08:53:25 +0200 +Subject: [PATCH] [BACKPORT] explicit constructor syntax +To: guix-devel@gnu.org + +--- + src/nodes.coffee | 28 ++++++++++++++++------------ + 1 file changed, 16 insertions(+), 12 deletions(-) + +diff --git a/src/nodes.coffee b/src/nodes.coffee +index c880069..a37cfee 100644 +--- a/src/nodes.coffee ++++ b/src/nodes.coffee +@@ -684,11 +684,22 @@ exports.Class = class Class extends Base + base = assign.variable.base + delete assign.context + func = assign.value +- unless assign.variable.this +- assign.variable = new Value(new Literal(name), [new Accessor(base, 'proto')]) +- if func instanceof Code and func.bound +- @boundFuncs.push base +- func.bound = no ++ if base.value is 'constructor' ++ if @ctor ++ throw new Error 'cannot define more than one constructor in a class' ++ if func.bound ++ throw new Error 'cannot define a constructor as a bound function' ++ if func instanceof Code ++ @ctor = func ++ else ++ @ctor = new Assign(new Value(new Literal name), func) ++ assign = null ++ else ++ unless assign.variable.this ++ assign.variable = new Value(new Literal(name), [new Accessor(base, 'proto')]) ++ if func instanceof Code and func.bound ++ @boundFuncs.push base ++ func.bound = no + assign + + # Walk the body of the class, looking for prototype properties to be converted. +@@ -698,13 +709,6 @@ exports.Class = class Class extends Base + for node, i in exps = child.expressions + if node instanceof Value and node.isObject(true) + exps[i] = compact @addProperties node, name +- else if node instanceof Code +- if @ctor +- throw new Error 'cannot define more than one constructor in a class' +- if node.bound +- throw new Error 'cannot define a constructor as a bound function' +- @ctor = node +- exps[i] = null + child.expressions = exps = compact flatten exps + + # Make sure that a constructor is defined for the class, and properly +-- +2.9.3 + diff --git a/gnu/packages/patches/coffeescript-backport-forall-loop-syntax-change.patch b/gnu/packages/patches/coffeescript-backport-forall-loop-syntax-change.patch new file mode 100644 index 000000000..e4baa7936 --- /dev/null +++ b/gnu/packages/patches/coffeescript-backport-forall-loop-syntax-change.patch @@ -0,0 +1,123 @@ +From 576ead3b6834f50d0396a77bb9f751b8bb6a0793 Mon Sep 17 00:00:00 2001 +From: Jelle Licht +Date: Sun, 21 Aug 2016 09:29:06 +0200 +Subject: [PATCH] [BACKPORT] forall loop syntax change +To: guix-devel@gnu.org + +--- + lib/parser.js | 8 ++++---- + src/grammar.coffee | 4 ++-- + src/lexer.coffee | 6 +++--- + src/nodes.coffee | 6 +++--- + 4 files changed, 12 insertions(+), 12 deletions(-) + +diff --git a/lib/parser.js b/lib/parser.js +index a3b1129..f9e2f28 100755 +--- a/lib/parser.js ++++ b/lib/parser.js +@@ -2,8 +2,8 @@ + var parser = (function(){ + var parser = {trace: function trace() { }, + 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,"ThisProperty":41,"RETURN":42,"HERECOMMENT":43,"PARAM_START":44,"ParamList":45,"PARAM_END":46,"FuncGlyph":47,"->":48,"=>":49,"OptComma":50,",":51,"Param":52,"ParamVar":53,"...":54,"Array":55,"Object":56,"Splat":57,"SimpleAssignable":58,"Accessor":59,"Parenthetical":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":":","42":"RETURN","43":"HERECOMMENT","44":"PARAM_START","46":"PARAM_END","48":"->","49":"=>","51":",","54":"...","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"}, ++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,"ThisProperty":41,"RETURN":42,"HERECOMMENT":43,"PARAM_START":44,"ParamList":45,"PARAM_END":46,"FuncGlyph":47,"->":48,"=>":49,"OptComma":50,",":51,"Param":52,"ParamVar":53,"...":54,"Array":55,"Object":56,"Splat":57,"SimpleAssignable":58,"Accessor":59,"Parenthetical":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,"OWN":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":":","42":"RETURN","43":"HERECOMMENT","44":"PARAM_START","46":"PARAM_END","48":"->","49":"=>","51":",","54":"...","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":"OWN","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],[10,2],[10,1],[12,1],[16,5],[16,2],[47,1],[47,1],[50,0],[50,1],[45,0],[45,1],[45,3],[52,1],[52,2],[52,3],[53,1],[53,1],[53,1],[53,1],[57,2],[58,1],[58,2],[58,2],[58,1],[36,1],[36,1],[36,1],[14,1],[14,1],[14,1],[14,1],[14,1],[59,2],[59,2],[59,2],[59,1],[59,1],[59,1],[66,3],[66,2],[66,2],[56,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],[41,2],[55,2],[55,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],[60,3],[60,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 anonymous(yytext,yyleng,yylineno,yy) { + +@@ -316,7 +316,7 @@ case 146:this.$ = { + }; + break; + case 147:this.$ = (function () { +- $$[$0-2+2-1].raw = $$[$0-2+1-1].raw; ++ $$[$0-2+2-1].own = $$[$0-2+1-1].own; + $$[$0-2+2-1].vars = $$[$0-2+1-1]; + return $$[$0-2+2-1]; + }()); +@@ -324,7 +324,7 @@ break; + case 148:this.$ = $$[$0-2+2-1]; + break; + case 149:this.$ = (function () { +- $$[$0-3+3-1].raw = true; ++ $$[$0-3+3-1].own = true; + return $$[$0-3+3-1]; + }()); + break; +diff --git a/src/grammar.coffee b/src/grammar.coffee +index 8bdfbd7..8d51da0 100644 +--- a/src/grammar.coffee ++++ b/src/grammar.coffee +@@ -424,12 +424,12 @@ grammar = + + ForBody: [ + o 'FOR Range', -> source: new Value($2), vars: [] +- o 'ForStart ForSource', -> $2.raw = $1.raw; $2.vars = $1; $2 ++ o 'ForStart ForSource', -> $2.own = $1.own; $2.vars = $1; $2 + ] + + ForStart: [ + o 'FOR ForVariables', -> $2 +- o 'FOR ALL ForVariables', -> $3.raw = yes; $3 ++ o 'FOR OWN ForVariables', -> $3.own = yes; $3 + ] + + # An array of all accepted values for a variable inside the loop. +diff --git a/src/lexer.coffee b/src/lexer.coffee +index ea9e753..9ef698b 100644 +--- a/src/lexer.coffee ++++ b/src/lexer.coffee +@@ -75,8 +75,8 @@ exports.Lexer = class Lexer + return 0 unless match = IDENTIFIER.exec @chunk + [input, id, colon] = match + +- if id is 'all' and @tag() is 'FOR' +- @token 'ALL', id ++ if id is 'own' and @tag() is 'FOR' ++ @token 'OWN', id + return id.length + forcedIdentifier = colon or + (prev = last @tokens) and not prev.spaced and prev[0] in ['.', '?.', '@', '::'] +@@ -499,7 +499,7 @@ JS_KEYWORDS = [ + + # CoffeeScript-only keywords. + COFFEE_KEYWORDS = ['undefined', 'then', 'unless', 'until', 'loop', 'of', 'by', 'when'] +-COFFEE_KEYWORDS.push op for all op of COFFEE_ALIASES = ++COFFEE_KEYWORDS.push op for op of COFFEE_ALIASES = + and : '&&' + or : '||' + is : '==' +diff --git a/src/nodes.coffee b/src/nodes.coffee +index 237b434..82f32ea 100644 +--- a/src/nodes.coffee ++++ b/src/nodes.coffee +@@ -1374,7 +1374,7 @@ exports.For = class For extends Base + constructor: (body, source, @name, @index) -> + {@source, @guard, @step} = source + @body = Expressions.wrap [body] +- @raw = !!source.raw ++ @own = !!source.own + @object = !!source.object + [@name, @index] = [@index, @name] if @object + throw SyntaxError 'index cannot be a pattern matching expression' if @index instanceof Value +@@ -1418,7 +1418,7 @@ exports.For = class For extends Base + forPart = source.compile merge(o, {index: ivar, @step}) + else + svar = @source.compile o, LEVEL_TOP +- if (name or not @raw) and not IDENTIFIER.test svar ++ if (name or @own) and not IDENTIFIER.test svar + defPart = "#{@tab}#{ref = scope.freeVariable 'ref'} = #{svar};\n" + svar = ref + namePart = if @pattern +@@ -1440,7 +1440,7 @@ exports.For = class For extends Base + varPart = "\n#{idt1}#{namePart};" if namePart + if @object + forPart = "#{ivar} in #{svar}" +- guardPart = "\n#{idt1}if (!#{utility('hasProp')}.call(#{svar}, #{ivar})) continue;" unless @raw ++ guardPart = "\n#{idt1}if (!#{utility('hasProp')}.call(#{svar}, #{ivar})) continue;" if @own + defPart += @pluckDirectCall o, body, name, index unless @pattern + body = body.compile merge(o, indent: idt1), LEVEL_TOP + body = '\n' + body + '\n' if body +-- +2.9.3 + diff --git a/gnu/packages/patches/coffeescript-backport-if-else-chain.patch b/gnu/packages/patches/coffeescript-backport-if-else-chain.patch new file mode 100644 index 000000000..827fec704 --- /dev/null +++ b/gnu/packages/patches/coffeescript-backport-if-else-chain.patch @@ -0,0 +1,53 @@ +From d10256934b7b407e87c481483a71a17af850fb67 Mon Sep 17 00:00:00 2001 +From: Jelle Licht +Date: Sun, 21 Aug 2016 04:59:17 +0200 +Subject: [PATCH] [BACKPORT] if-else-chain +To: guix-devel@gnu.org + +--- + src/nodes.coffee | 17 +++++++---------- + 1 file changed, 7 insertions(+), 10 deletions(-) + +diff --git a/src/nodes.coffee b/src/nodes.coffee +index dafe5ce..141e5e6 100644 +--- a/src/nodes.coffee ++++ b/src/nodes.coffee +@@ -1526,11 +1526,11 @@ exports.If = class If extends Base + elseBodyNode: -> @elseBody?.unwrap() + + # Rewrite a chain of **Ifs** to add a default case as the final *else*. +- addElse: (elseBody, statement) -> ++ addElse: (elseBody) -> + if @isChain +- @elseBodyNode().addElse elseBody, statement ++ @elseBodyNode().addElse elseBody + else +- @isChain = elseBody instanceof If ++ @isChain = elseBody instanceof If + @elseBody = @ensureExpressions elseBody + this + +@@ -1566,16 +1566,13 @@ exports.If = class If extends Base + condO = merge o + o.indent = @idt 1 + o.top = true +- ifDent = if child or (top and not @isStatement(o)) then '' else @idt() +- comDent = if child then @idt() else '' +- body = @body.compile(o) +- ifPart = "#{ifDent}if (#{ @compileCondition(condO) }) {\n#{body}\n#{@tab}}" ++ ifPart = "if (#{ @compileCondition condO }) {\n#{ @body.compile o }\n#{@tab}}" ++ ifPart = @tab + ifPart unless child + return ifPart unless @elseBody +- elsePart = if @isChain +- ' else ' + @elseBodyNode().compile(merge(o, {indent: @idt(), chainChild: true})) ++ ifPart + if @isChain ++ ' else ' + @elseBodyNode().compile merge o, indent: @tab, chainChild: true + else + " else {\n#{ @elseBody.compile(o) }\n#{@tab}}" +- "#{ifPart}#{elsePart}" + + # Compile the If as a conditional operator. + compileExpression: (o) -> +-- +2.9.3 + diff --git a/gnu/packages/patches/coffeescript-backport-implicit-object-function-call.patch b/gnu/packages/patches/coffeescript-backport-implicit-object-function-call.patch new file mode 100644 index 000000000..050570a12 --- /dev/null +++ b/gnu/packages/patches/coffeescript-backport-implicit-object-function-call.patch @@ -0,0 +1,65 @@ +From a9d56b3f0019d33b969870eda804ef2932fd66e0 Mon Sep 17 00:00:00 2001 +From: Jelle Licht +Date: Tue, 23 Aug 2016 02:04:49 +0200 +Subject: [PATCH] [BACKPORT] implicit object function call +To: guix-devel@gnu.org + +--- + src/rewriter.coffee | 22 +++++++++++++++++----- + 1 file changed, 17 insertions(+), 5 deletions(-) + +diff --git a/src/rewriter.coffee b/src/rewriter.coffee +index 5291801..a642ae2 100644 +--- a/src/rewriter.coffee ++++ b/src/rewriter.coffee +@@ -134,7 +134,9 @@ exports.Rewriter = class Rewriter + if token[0] is ':' and (not last or last[0] isnt '{') + stack.push '{' + idx = if @tag(i - 2) is '@' then i - 2 else i - 1 +- @tokens.splice idx, 0, ['{', '{', token[2]] ++ tok = ['{', '{', token[2]] ++ tok.generated = yes ++ @tokens.splice idx, 0, tok + condition = (token, i) -> + [one, two, three] = @tokens.slice(i + 1, i + 4) + return false if 'HERECOMMENT' in [@tag(i + 1), @tag(i - 1)] +@@ -151,10 +153,17 @@ exports.Rewriter = class Rewriter + # Insert the implicit parentheses here, so that the parser doesn't have to + # deal with them. + addImplicitParentheses: -> ++ classLine = no + @scanTokens (token, i) -> +- prev = @tokens[i - 1] +- if prev and prev.spaced and include(IMPLICIT_FUNC, prev[0]) and include(IMPLICIT_CALL, token[0]) and +- not (token[0] is 'UNARY' and (@tag(i + 1) in ['IN', 'OF'])) ++ classLine = yes if token[0] is 'CLASS' ++ prev = @tokens[i - 1] ++ next = @tokens[i + 1] ++ idx = 1 ++ callObject = not classLine and token[0] is 'INDENT' and next and next.generated and next[0] is '{' and prev and include(IMPLICIT_FUNC, prev[0]) ++ idx = 2 if callObject ++ classLine = no if include(LINEBREAKS, token[0]) ++ if prev and (prev.spaced and include(IMPLICIT_FUNC, prev[0]) and include(IMPLICIT_CALL, token[0]) and ++ not (token[0] is 'UNARY' and (@tag(i + 1) in ['IN', 'OF']))) or callObject + @tokens.splice i, 0, ['CALL_START', '(', token[2]] + condition = (token, i) -> + (not token.generated and @tokens[i - 1][0] isnt ',' and include(IMPLICIT_END, token[0]) and +@@ -163,7 +172,7 @@ exports.Rewriter = class Rewriter + action = (token, i) -> + idx = if token[0] is 'OUTDENT' then i + 1 else i + @tokens.splice idx, 0, ['CALL_END', ')', token[2]] +- @detectEnd i + 1, condition, action ++ @detectEnd i + idx, condition, action + return 2 + return 1 + +@@ -331,3 +340,6 @@ IMPLICIT_END = ['POST_IF', 'POST_UNLESS', 'FOR', 'WHILE', 'UNTIL', 'LOOP', ' + # The grammar can't disambiguate them, so we insert the implicit indentation. + SINGLE_LINERS = ['ELSE', "->", "=>", 'TRY', 'FINALLY', 'THEN'] + SINGLE_CLOSERS = ['TERMINATOR', 'CATCH', 'FINALLY', 'ELSE', 'OUTDENT', 'LEADING_WHEN'] ++ ++# Tokens that end a line. ++LINEBREAKS = ['TERMINATOR', 'INDENT', 'OUTDENT'] +-- +2.9.3 + diff --git a/gnu/packages/patches/coffeescript-backport-leading-then-expression.patch b/gnu/packages/patches/coffeescript-backport-leading-then-expression.patch new file mode 100644 index 000000000..d86bf7b08 --- /dev/null +++ b/gnu/packages/patches/coffeescript-backport-leading-then-expression.patch @@ -0,0 +1,27 @@ +From 1b310a50243e37d1bace4a5fca499fc8ef218c79 Mon Sep 17 00:00:00 2001 +From: Jelle Licht +Date: Sun, 21 Aug 2016 06:55:37 +0200 +Subject: [PATCH] [BACKPORT] leading then expression +To: guix-devel@gnu.org + +--- + src/rewriter.coffee | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/src/rewriter.coffee b/src/rewriter.coffee +index c21e343..e6de981 100644 +--- a/src/rewriter.coffee ++++ b/src/rewriter.coffee +@@ -194,6 +194,9 @@ class exports.Rewriter + addImplicitIndentation: -> + @scanTokens (token, i, tokens) -> + [tag] = token ++ if tag is 'TERMINATOR' and @tag(i + 1) is 'THEN' ++ tokens.splice i, 1 ++ return 0 + if tag is 'ELSE' and @tag(i - 1) isnt 'OUTDENT' + tokens.splice i, 0, @indentation(token)... + return 2 +-- +2.9.3 + diff --git a/gnu/packages/patches/coffeescript-backport-lexer-inof-forinof.patch b/gnu/packages/patches/coffeescript-backport-lexer-inof-forinof.patch new file mode 100644 index 000000000..410f4a888 --- /dev/null +++ b/gnu/packages/patches/coffeescript-backport-lexer-inof-forinof.patch @@ -0,0 +1,145 @@ +From 061a2220a882e1b6954d4e9c6623502f456d649d Mon Sep 17 00:00:00 2001 +From: Jelle Licht +Date: Sun, 21 Aug 2016 02:02:29 +0200 +Subject: [PATCH] [BACKPORT] lexer now distinguishes between IN/OF and + FORIN/FOROF to help grammar, fixing #737 +To: guix-devel@gnu.org + +--- + lib/parser.js | 18 ++++++------------ + src/lexer.coffee | 42 ++++++++++++++++++++++++------------------ + 2 files changed, 30 insertions(+), 30 deletions(-) + +diff --git a/lib/parser.js b/lib/parser.js +index a6b56b1..891d631 100755 +--- a/lib/parser.js ++++ b/lib/parser.js +@@ -2,9 +2,9 @@ + var parser = (function(){ + var parser = {trace: function trace() { }, + yy: {}, +-symbols_: {"error":2,"Root":3,"TERMINATOR":4,"Body":5,"Block":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"Throw":11,"BREAK":12,"CONTINUE":13,"DEBUGGER":14,"Value":15,"Invocation":16,"Code":17,"Operation":18,"Assign":19,"If":20,"Try":21,"While":22,"For":23,"Switch":24,"Extends":25,"Class":26,"Existence":27,"Comment":28,"INDENT":29,"OUTDENT":30,"Identifier":31,"IDENTIFIER":32,"AlphaNumeric":33,"NUMBER":34,"STRING":35,"Literal":36,"JS":37,"REGEX":38,"TRUE":39,"FALSE":40,"YES":41,"NO":42,"ON":43,"OFF":44,"Assignable":45,"=":46,"AssignObj":47,"ThisProperty":48,":":49,"RETURN":50,"HERECOMMENT":51,"?":52,"PARAM_START":53,"ParamList":54,"PARAM_END":55,"FuncGlyph":56,"->":57,"=>":58,"OptComma":59,",":60,"Param":61,"PARAM":62,"@":63,".":64,"Splat":65,"SimpleAssignable":66,"Accessor":67,"Array":68,"Object":69,"Parenthetical":70,"Range":71,"This":72,"NULL":73,"PROPERTY_ACCESS":74,"PROTOTYPE_ACCESS":75,"::":76,"SOAK_ACCESS":77,"Index":78,"Slice":79,"INDEX_START":80,"INDEX_END":81,"INDEX_SOAK":82,"INDEX_PROTO":83,"{":84,"AssignList":85,"}":86,"CLASS":87,"EXTENDS":88,"ClassBody":89,"ClassAssign":90,"OptFuncExist":91,"Arguments":92,"SUPER":93,"FUNC_EXIST":94,"CALL_START":95,"CALL_END":96,"ArgList":97,"THIS":98,"RangeDots":99,"[":100,"]":101,"Arg":102,"SimpleArgs":103,"TRY":104,"Catch":105,"FINALLY":106,"CATCH":107,"THROW":108,"(":109,")":110,"WhileSource":111,"WHILE":112,"WHEN":113,"UNTIL":114,"Loop":115,"LOOP":116,"ForBody":117,"FOR":118,"ForStart":119,"ForSource":120,"ForVariables":121,"ALL":122,"ForValue":123,"IN":124,"OF":125,"BY":126,"SWITCH":127,"Whens":128,"ELSE":129,"When":130,"LEADING_WHEN":131,"IfBlock":132,"IF":133,"UNLESS":134,"POST_IF":135,"POST_UNLESS":136,"UNARY":137,"-":138,"+":139,"--":140,"++":141,"==":142,"!=":143,"MATH":144,"SHIFT":145,"COMPARE":146,"LOGIC":147,"COMPOUND_ASSIGN":148,"INSTANCEOF":149,"NOT_RELATED":150,"$accept":0,"$end":1}, +-terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","14":"DEBUGGER","29":"INDENT","30":"OUTDENT","32":"IDENTIFIER","34":"NUMBER","35":"STRING","37":"JS","38":"REGEX","39":"TRUE","40":"FALSE","41":"YES","42":"NO","43":"ON","44":"OFF","46":"=","49":":","50":"RETURN","51":"HERECOMMENT","52":"?","53":"PARAM_START","55":"PARAM_END","57":"->","58":"=>","60":",","62":"PARAM","63":"@","64":".","73":"NULL","74":"PROPERTY_ACCESS","75":"PROTOTYPE_ACCESS","76":"::","77":"SOAK_ACCESS","80":"INDEX_START","81":"INDEX_END","82":"INDEX_SOAK","83":"INDEX_PROTO","84":"{","86":"}","87":"CLASS","88":"EXTENDS","93":"SUPER","94":"FUNC_EXIST","95":"CALL_START","96":"CALL_END","98":"THIS","100":"[","101":"]","104":"TRY","106":"FINALLY","107":"CATCH","108":"THROW","109":"(","110":")","112":"WHILE","113":"WHEN","114":"UNTIL","116":"LOOP","118":"FOR","122":"ALL","124":"IN","125":"OF","126":"BY","127":"SWITCH","129":"ELSE","131":"LEADING_WHEN","133":"IF","134":"UNLESS","135":"POST_IF","136":"POST_UNLESS","137":"UNARY","138":"-","139":"+","140":"--","141":"++","142":"==","143":"!=","144":"MATH","145":"SHIFT","146":"COMPARE","147":"LOGIC","148":"COMPOUND_ASSIGN","149":"INSTANCEOF","150":"NOT_RELATED"}, +-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],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[31,1],[33,1],[33,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[19,3],[19,5],[47,1],[47,1],[47,1],[47,3],[47,3],[47,5],[47,5],[47,1],[10,2],[10,1],[28,1],[27,2],[17,5],[17,2],[56,1],[56,1],[59,0],[59,1],[54,0],[54,1],[54,3],[61,1],[61,2],[61,4],[61,5],[65,4],[66,1],[66,2],[66,2],[66,1],[45,1],[45,1],[45,1],[15,1],[15,1],[15,1],[15,1],[15,1],[15,1],[67,2],[67,2],[67,1],[67,2],[67,1],[67,1],[78,3],[78,2],[78,2],[69,4],[85,0],[85,1],[85,3],[85,4],[85,6],[26,2],[26,4],[26,5],[26,7],[26,4],[26,1],[26,3],[26,6],[90,1],[90,3],[90,5],[89,0],[89,1],[89,3],[89,3],[25,3],[16,3],[16,3],[16,1],[16,2],[91,0],[91,1],[92,2],[92,4],[72,1],[72,1],[99,2],[99,3],[48,2],[71,5],[79,5],[79,4],[79,4],[68,2],[68,4],[97,1],[97,3],[97,4],[97,4],[97,6],[102,1],[102,1],[103,1],[103,3],[21,2],[21,3],[21,4],[21,5],[105,3],[11,2],[70,3],[70,2],[111,2],[111,4],[111,2],[111,4],[22,2],[22,2],[22,2],[22,1],[115,2],[115,2],[23,2],[23,2],[23,2],[117,2],[117,2],[119,2],[119,3],[123,1],[123,1],[123,1],[121,1],[121,3],[120,2],[120,2],[120,4],[120,4],[120,4],[120,6],[120,6],[24,5],[24,7],[24,4],[24,6],[128,1],[128,2],[130,3],[130,4],[132,3],[132,3],[132,5],[132,3],[20,1],[20,3],[20,3],[20,3],[20,3],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,5],[18,3],[18,3],[18,3],[18,3]], ++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,"Value":15,"Invocation":16,"Code":17,"Operation":18,"Assign":19,"If":20,"Try":21,"While":22,"For":23,"Switch":24,"Extends":25,"Class":26,"Existence":27,"Comment":28,"INDENT":29,"OUTDENT":30,"Identifier":31,"IDENTIFIER":32,"AlphaNumeric":33,"NUMBER":34,"STRING":35,"Literal":36,"JS":37,"REGEX":38,"TRUE":39,"FALSE":40,"YES":41,"NO":42,"ON":43,"OFF":44,"Assignable":45,"=":46,"AssignObj":47,"ThisProperty":48,":":49,"RETURN":50,"HERECOMMENT":51,"?":52,"PARAM_START":53,"ParamList":54,"PARAM_END":55,"FuncGlyph":56,"->":57,"=>":58,"OptComma":59,",":60,"Param":61,"PARAM":62,"@":63,".":64,"Splat":65,"SimpleAssignable":66,"Accessor":67,"Array":68,"Object":69,"Parenthetical":70,"Range":71,"This":72,"NULL":73,"PROPERTY_ACCESS":74,"PROTOTYPE_ACCESS":75,"::":76,"SOAK_ACCESS":77,"Index":78,"Slice":79,"INDEX_START":80,"INDEX_END":81,"INDEX_SOAK":82,"INDEX_PROTO":83,"{":84,"AssignList":85,"}":86,"CLASS":87,"EXTENDS":88,"ClassBody":89,"ClassAssign":90,"OptFuncExist":91,"Arguments":92,"SUPER":93,"FUNC_EXIST":94,"CALL_START":95,"CALL_END":96,"ArgList":97,"THIS":98,"RangeDots":99,"[":100,"]":101,"Arg":102,"SimpleArgs":103,"TRY":104,"Catch":105,"FINALLY":106,"CATCH":107,"THROW":108,"(":109,")":110,"WhileSource":111,"WHILE":112,"WHEN":113,"UNTIL":114,"Loop":115,"LOOP":116,"ForBody":117,"FOR":118,"ForStart":119,"ForSource":120,"ForVariables":121,"ALL":122,"ForValue":123,"FORIN":124,"FOROF":125,"BY":126,"SWITCH":127,"Whens":128,"ELSE":129,"When":130,"LEADING_WHEN":131,"IfBlock":132,"IF":133,"UNLESS":134,"POST_IF":135,"POST_UNLESS":136,"UNARY":137,"-":138,"+":139,"--":140,"++":141,"==":142,"!=":143,"MATH":144,"SHIFT":145,"COMPARE":146,"LOGIC":147,"COMPOUND_ASSIGN":148,"RELATION":149,"$accept":0,"$end":1}, ++terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","14":"DEBUGGER","29":"INDENT","30":"OUTDENT","32":"IDENTIFIER","34":"NUMBER","35":"STRING","37":"JS","38":"REGEX","39":"TRUE","40":"FALSE","41":"YES","42":"NO","43":"ON","44":"OFF","46":"=","49":":","50":"RETURN","51":"HERECOMMENT","52":"?","53":"PARAM_START","55":"PARAM_END","57":"->","58":"=>","60":",","62":"PARAM","63":"@","64":".","73":"NULL","74":"PROPERTY_ACCESS","75":"PROTOTYPE_ACCESS","76":"::","77":"SOAK_ACCESS","80":"INDEX_START","81":"INDEX_END","82":"INDEX_SOAK","83":"INDEX_PROTO","84":"{","86":"}","87":"CLASS","88":"EXTENDS","93":"SUPER","94":"FUNC_EXIST","95":"CALL_START","96":"CALL_END","98":"THIS","100":"[","101":"]","104":"TRY","106":"FINALLY","107":"CATCH","108":"THROW","109":"(","110":")","112":"WHILE","113":"WHEN","114":"UNTIL","116":"LOOP","118":"FOR","122":"ALL","124":"FORIN","125":"FOROF","126":"BY","127":"SWITCH","129":"ELSE","131":"LEADING_WHEN","133":"IF","134":"UNLESS","135":"POST_IF","136":"POST_UNLESS","137":"UNARY","138":"-","139":"+","140":"--","141":"++","142":"==","143":"!=","144":"MATH","145":"SHIFT","146":"COMPARE","147":"LOGIC","148":"COMPOUND_ASSIGN","149":"RELATION"}, ++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],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[31,1],[33,1],[33,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[19,3],[19,5],[47,1],[47,1],[47,1],[47,3],[47,3],[47,5],[47,5],[47,1],[10,2],[10,1],[28,1],[27,2],[17,5],[17,2],[56,1],[56,1],[59,0],[59,1],[54,0],[54,1],[54,3],[61,1],[61,2],[61,4],[61,5],[65,4],[66,1],[66,2],[66,2],[66,1],[45,1],[45,1],[45,1],[15,1],[15,1],[15,1],[15,1],[15,1],[15,1],[67,2],[67,2],[67,1],[67,2],[67,1],[67,1],[78,3],[78,2],[78,2],[69,4],[85,0],[85,1],[85,3],[85,4],[85,6],[26,2],[26,4],[26,5],[26,7],[26,4],[26,1],[26,3],[26,6],[90,1],[90,3],[90,5],[89,0],[89,1],[89,3],[89,3],[25,3],[16,3],[16,3],[16,1],[16,2],[91,0],[91,1],[92,2],[92,4],[72,1],[72,1],[99,2],[99,3],[48,2],[71,5],[79,5],[79,4],[79,4],[68,2],[68,4],[97,1],[97,3],[97,4],[97,4],[97,6],[102,1],[102,1],[103,1],[103,3],[21,2],[21,3],[21,4],[21,5],[105,3],[11,2],[70,3],[70,2],[111,2],[111,4],[111,2],[111,4],[22,2],[22,2],[22,2],[22,1],[115,2],[115,2],[23,2],[23,2],[23,2],[117,2],[117,2],[119,2],[119,3],[123,1],[123,1],[123,1],[121,1],[121,3],[120,2],[120,2],[120,4],[120,4],[120,4],[120,6],[120,6],[24,5],[24,7],[24,4],[24,6],[128,1],[128,2],[130,3],[130,4],[132,3],[132,3],[132,5],[132,3],[20,1],[20,3],[20,3],[20,3],[20,3],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,5],[18,3]], + performAction: function anonymous(yytext,yyleng,yylineno,yy) { + + var $$ = arguments[5],$0=arguments[5].length; +@@ -497,18 +497,12 @@ case 214:this.$ = new yy.OpNode($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); + break; + case 215:this.$ = new yy.OpNode($$[$0-5+2-1], $$[$0-5+1-1], $$[$0-5+4-1]); + break; +-case 216:this.$ = new yy.InNode($$[$0-3+1-1], $$[$0-3+3-1]); +-break; +-case 217:this.$ = new yy.OpNode($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); +-break; +-case 218:this.$ = new yy.OpNode($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); +-break; +-case 219:this.$ = $$[$0-3+2-1] === 'in' ? new yy.OpNode('!', new yy.InNode($$[$0-3+1-1], $$[$0-3+3-1])) : new yy.OpNode('!', new yy.ParentheticalNode(new yy.OpNode($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]))); ++case 216:this.$ = $$[$0-3+2-1].charAt(0) === '!' ? ($$[$0-3+2-1] === '!in' ? new yy.OpNode('!', new yy.InNode($$[$0-3+1-1], $$[$0-3+3-1])) : new yy.OpNode('!', new yy.ParentheticalNode(new yy.OpNode($$[$0-3+2-1].slice(1), $$[$0-3+1-1], $$[$0-3+3-1])))) : ($$[$0-3+2-1] === 'in' ? new yy.InNode($$[$0-3+1-1], $$[$0-3+3-1]) : new yy.OpNode($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1])); + break; + } + }, +-table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,6],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[3]},{"1":[2,2],"28":83,"51":[1,50]},{"1":[2,3],"4":[1,84]},{"4":[1,85]},{"1":[2,5],"4":[2,5],"30":[2,5]},{"5":86,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"30":[1,87],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,8],"4":[2,8],"30":[2,8],"52":[1,90],"110":[2,8],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,9],"4":[2,9],"30":[2,9],"110":[2,9],"111":109,"112":[1,72],"114":[1,73],"117":110,"118":[1,75],"119":76,"135":[1,107],"136":[1,108]},{"1":[2,15],"4":[2,15],"29":[2,15],"30":[2,15],"52":[2,15],"60":[2,15],"64":[2,15],"67":113,"74":[1,115],"75":[1,116],"76":[1,117],"77":[1,118],"78":119,"79":120,"80":[1,121],"81":[2,15],"82":[1,122],"83":[1,123],"86":[2,15],"91":111,"94":[1,114],"95":[2,120],"96":[2,15],"101":[2,15],"110":[2,15],"112":[2,15],"113":[2,15],"114":[2,15],"118":[2,15],"124":[2,15],"125":[2,15],"126":[2,15],"135":[2,15],"136":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[1,112],"149":[2,15],"150":[2,15]},{"1":[2,16],"4":[2,16],"29":[2,16],"30":[2,16],"52":[2,16],"60":[2,16],"64":[2,16],"67":125,"74":[1,115],"75":[1,116],"76":[1,117],"77":[1,118],"78":119,"79":120,"80":[1,121],"81":[2,16],"82":[1,122],"83":[1,123],"86":[2,16],"91":124,"94":[1,114],"95":[2,120],"96":[2,16],"101":[2,16],"110":[2,16],"112":[2,16],"113":[2,16],"114":[2,16],"118":[2,16],"124":[2,16],"125":[2,16],"126":[2,16],"135":[2,16],"136":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"149":[2,16],"150":[2,16]},{"1":[2,17],"4":[2,17],"29":[2,17],"30":[2,17],"52":[2,17],"60":[2,17],"64":[2,17],"81":[2,17],"86":[2,17],"96":[2,17],"101":[2,17],"110":[2,17],"112":[2,17],"113":[2,17],"114":[2,17],"118":[2,17],"124":[2,17],"125":[2,17],"126":[2,17],"135":[2,17],"136":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"149":[2,17],"150":[2,17]},{"1":[2,18],"4":[2,18],"29":[2,18],"30":[2,18],"52":[2,18],"60":[2,18],"64":[2,18],"81":[2,18],"86":[2,18],"96":[2,18],"101":[2,18],"110":[2,18],"112":[2,18],"113":[2,18],"114":[2,18],"118":[2,18],"124":[2,18],"125":[2,18],"126":[2,18],"135":[2,18],"136":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"149":[2,18],"150":[2,18]},{"1":[2,19],"4":[2,19],"29":[2,19],"30":[2,19],"52":[2,19],"60":[2,19],"64":[2,19],"81":[2,19],"86":[2,19],"96":[2,19],"101":[2,19],"110":[2,19],"112":[2,19],"113":[2,19],"114":[2,19],"118":[2,19],"124":[2,19],"125":[2,19],"126":[2,19],"135":[2,19],"136":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"149":[2,19],"150":[2,19]},{"1":[2,20],"4":[2,20],"29":[2,20],"30":[2,20],"52":[2,20],"60":[2,20],"64":[2,20],"81":[2,20],"86":[2,20],"96":[2,20],"101":[2,20],"110":[2,20],"112":[2,20],"113":[2,20],"114":[2,20],"118":[2,20],"124":[2,20],"125":[2,20],"126":[2,20],"135":[2,20],"136":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"149":[2,20],"150":[2,20]},{"1":[2,21],"4":[2,21],"29":[2,21],"30":[2,21],"52":[2,21],"60":[2,21],"64":[2,21],"81":[2,21],"86":[2,21],"96":[2,21],"101":[2,21],"110":[2,21],"112":[2,21],"113":[2,21],"114":[2,21],"118":[2,21],"124":[2,21],"125":[2,21],"126":[2,21],"135":[2,21],"136":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"149":[2,21],"150":[2,21]},{"1":[2,22],"4":[2,22],"29":[2,22],"30":[2,22],"52":[2,22],"60":[2,22],"64":[2,22],"81":[2,22],"86":[2,22],"96":[2,22],"101":[2,22],"110":[2,22],"112":[2,22],"113":[2,22],"114":[2,22],"118":[2,22],"124":[2,22],"125":[2,22],"126":[2,22],"135":[2,22],"136":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"149":[2,22],"150":[2,22]},{"1":[2,23],"4":[2,23],"29":[2,23],"30":[2,23],"52":[2,23],"60":[2,23],"64":[2,23],"81":[2,23],"86":[2,23],"96":[2,23],"101":[2,23],"110":[2,23],"112":[2,23],"113":[2,23],"114":[2,23],"118":[2,23],"124":[2,23],"125":[2,23],"126":[2,23],"135":[2,23],"136":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"149":[2,23],"150":[2,23]},{"1":[2,24],"4":[2,24],"29":[2,24],"30":[2,24],"52":[2,24],"60":[2,24],"64":[2,24],"81":[2,24],"86":[2,24],"96":[2,24],"101":[2,24],"110":[2,24],"112":[2,24],"113":[2,24],"114":[2,24],"118":[2,24],"124":[2,24],"125":[2,24],"126":[2,24],"135":[2,24],"136":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"149":[2,24],"150":[2,24]},{"1":[2,25],"4":[2,25],"29":[2,25],"30":[2,25],"52":[2,25],"60":[2,25],"64":[2,25],"81":[2,25],"86":[2,25],"96":[2,25],"101":[2,25],"110":[2,25],"112":[2,25],"113":[2,25],"114":[2,25],"118":[2,25],"124":[2,25],"125":[2,25],"126":[2,25],"135":[2,25],"136":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"149":[2,25],"150":[2,25]},{"1":[2,26],"4":[2,26],"29":[2,26],"30":[2,26],"52":[2,26],"60":[2,26],"64":[2,26],"81":[2,26],"86":[2,26],"96":[2,26],"101":[2,26],"110":[2,26],"112":[2,26],"113":[2,26],"114":[2,26],"118":[2,26],"124":[2,26],"125":[2,26],"126":[2,26],"135":[2,26],"136":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"149":[2,26],"150":[2,26]},{"1":[2,27],"4":[2,27],"29":[2,27],"30":[2,27],"52":[2,27],"60":[2,27],"64":[2,27],"81":[2,27],"86":[2,27],"96":[2,27],"101":[2,27],"110":[2,27],"112":[2,27],"113":[2,27],"114":[2,27],"118":[2,27],"124":[2,27],"125":[2,27],"126":[2,27],"135":[2,27],"136":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"149":[2,27],"150":[2,27]},{"1":[2,28],"4":[2,28],"29":[2,28],"30":[2,28],"52":[2,28],"60":[2,28],"64":[2,28],"81":[2,28],"86":[2,28],"96":[2,28],"101":[2,28],"110":[2,28],"112":[2,28],"113":[2,28],"114":[2,28],"118":[2,28],"124":[2,28],"125":[2,28],"126":[2,28],"135":[2,28],"136":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"149":[2,28],"150":[2,28]},{"1":[2,10],"4":[2,10],"30":[2,10],"110":[2,10],"112":[2,10],"114":[2,10],"118":[2,10],"135":[2,10],"136":[2,10]},{"1":[2,11],"4":[2,11],"30":[2,11],"110":[2,11],"112":[2,11],"114":[2,11],"118":[2,11],"135":[2,11],"136":[2,11]},{"1":[2,12],"4":[2,12],"30":[2,12],"110":[2,12],"112":[2,12],"114":[2,12],"118":[2,12],"135":[2,12],"136":[2,12]},{"1":[2,13],"4":[2,13],"30":[2,13],"110":[2,13],"112":[2,13],"114":[2,13],"118":[2,13],"135":[2,13],"136":[2,13]},{"1":[2,14],"4":[2,14],"30":[2,14],"110":[2,14],"112":[2,14],"114":[2,14],"118":[2,14],"135":[2,14],"136":[2,14]},{"1":[2,79],"4":[2,79],"29":[2,79],"30":[2,79],"46":[1,126],"52":[2,79],"60":[2,79],"64":[2,79],"74":[2,79],"75":[2,79],"76":[2,79],"77":[2,79],"80":[2,79],"81":[2,79],"82":[2,79],"83":[2,79],"86":[2,79],"94":[2,79],"95":[2,79],"96":[2,79],"101":[2,79],"110":[2,79],"112":[2,79],"113":[2,79],"114":[2,79],"118":[2,79],"124":[2,79],"125":[2,79],"126":[2,79],"135":[2,79],"136":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79]},{"1":[2,80],"4":[2,80],"29":[2,80],"30":[2,80],"52":[2,80],"60":[2,80],"64":[2,80],"74":[2,80],"75":[2,80],"76":[2,80],"77":[2,80],"80":[2,80],"81":[2,80],"82":[2,80],"83":[2,80],"86":[2,80],"94":[2,80],"95":[2,80],"96":[2,80],"101":[2,80],"110":[2,80],"112":[2,80],"113":[2,80],"114":[2,80],"118":[2,80],"124":[2,80],"125":[2,80],"126":[2,80],"135":[2,80],"136":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80]},{"1":[2,81],"4":[2,81],"29":[2,81],"30":[2,81],"52":[2,81],"60":[2,81],"64":[2,81],"74":[2,81],"75":[2,81],"76":[2,81],"77":[2,81],"80":[2,81],"81":[2,81],"82":[2,81],"83":[2,81],"86":[2,81],"94":[2,81],"95":[2,81],"96":[2,81],"101":[2,81],"110":[2,81],"112":[2,81],"113":[2,81],"114":[2,81],"118":[2,81],"124":[2,81],"125":[2,81],"126":[2,81],"135":[2,81],"136":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81]},{"1":[2,82],"4":[2,82],"29":[2,82],"30":[2,82],"52":[2,82],"60":[2,82],"64":[2,82],"74":[2,82],"75":[2,82],"76":[2,82],"77":[2,82],"80":[2,82],"81":[2,82],"82":[2,82],"83":[2,82],"86":[2,82],"94":[2,82],"95":[2,82],"96":[2,82],"101":[2,82],"110":[2,82],"112":[2,82],"113":[2,82],"114":[2,82],"118":[2,82],"124":[2,82],"125":[2,82],"126":[2,82],"135":[2,82],"136":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82]},{"1":[2,83],"4":[2,83],"29":[2,83],"30":[2,83],"52":[2,83],"60":[2,83],"64":[2,83],"74":[2,83],"75":[2,83],"76":[2,83],"77":[2,83],"80":[2,83],"81":[2,83],"82":[2,83],"83":[2,83],"86":[2,83],"94":[2,83],"95":[2,83],"96":[2,83],"101":[2,83],"110":[2,83],"112":[2,83],"113":[2,83],"114":[2,83],"118":[2,83],"124":[2,83],"125":[2,83],"126":[2,83],"135":[2,83],"136":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83]},{"1":[2,84],"4":[2,84],"29":[2,84],"30":[2,84],"52":[2,84],"60":[2,84],"64":[2,84],"74":[2,84],"75":[2,84],"76":[2,84],"77":[2,84],"80":[2,84],"81":[2,84],"82":[2,84],"83":[2,84],"86":[2,84],"94":[2,84],"95":[2,84],"96":[2,84],"101":[2,84],"110":[2,84],"112":[2,84],"113":[2,84],"114":[2,84],"118":[2,84],"124":[2,84],"125":[2,84],"126":[2,84],"135":[2,84],"136":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84]},{"1":[2,118],"4":[2,118],"29":[2,118],"30":[2,118],"52":[2,118],"60":[2,118],"64":[2,118],"74":[2,118],"75":[2,118],"76":[2,118],"77":[2,118],"80":[2,118],"81":[2,118],"82":[2,118],"83":[2,118],"86":[2,118],"92":127,"94":[2,118],"95":[1,128],"96":[2,118],"101":[2,118],"110":[2,118],"112":[2,118],"113":[2,118],"114":[2,118],"118":[2,118],"124":[2,118],"125":[2,118],"126":[2,118],"135":[2,118],"136":[2,118],"138":[2,118],"139":[2,118],"140":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"146":[2,118],"147":[2,118],"149":[2,118],"150":[2,118]},{"54":129,"55":[2,64],"60":[2,64],"61":130,"62":[1,131],"63":[1,132]},{"4":[1,134],"6":133,"29":[1,6]},{"8":135,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":137,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":138,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":139,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":140,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,193],"4":[2,193],"29":[2,193],"30":[2,193],"52":[2,193],"60":[2,193],"64":[2,193],"81":[2,193],"86":[2,193],"96":[2,193],"101":[2,193],"110":[2,193],"112":[2,193],"113":[2,193],"114":[2,193],"118":[2,193],"124":[2,193],"125":[2,193],"126":[2,193],"129":[1,141],"135":[2,193],"136":[2,193],"138":[2,193],"139":[2,193],"140":[2,193],"141":[2,193],"142":[2,193],"143":[2,193],"144":[2,193],"145":[2,193],"146":[2,193],"147":[2,193],"149":[2,193],"150":[2,193]},{"4":[1,134],"6":142,"29":[1,6]},{"4":[1,134],"6":143,"29":[1,6]},{"1":[2,159],"4":[2,159],"29":[2,159],"30":[2,159],"52":[2,159],"60":[2,159],"64":[2,159],"81":[2,159],"86":[2,159],"96":[2,159],"101":[2,159],"110":[2,159],"112":[2,159],"113":[2,159],"114":[2,159],"118":[2,159],"124":[2,159],"125":[2,159],"126":[2,159],"135":[2,159],"136":[2,159],"138":[2,159],"139":[2,159],"140":[2,159],"141":[2,159],"142":[2,159],"143":[2,159],"144":[2,159],"145":[2,159],"146":[2,159],"147":[2,159],"149":[2,159],"150":[2,159]},{"4":[1,134],"6":144,"29":[1,6]},{"8":145,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,146],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"46":[2,76],"52":[2,76],"60":[2,76],"64":[2,76],"74":[2,76],"75":[2,76],"76":[2,76],"77":[2,76],"80":[2,76],"81":[2,76],"82":[2,76],"83":[2,76],"86":[2,76],"88":[1,147],"94":[2,76],"95":[2,76],"96":[2,76],"101":[2,76],"110":[2,76],"112":[2,76],"113":[2,76],"114":[2,76],"118":[2,76],"124":[2,76],"125":[2,76],"126":[2,76],"135":[2,76],"136":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76]},{"1":[2,105],"4":[2,105],"15":151,"16":152,"29":[1,149],"30":[2,105],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":153,"48":78,"52":[2,105],"60":[2,105],"63":[1,67],"64":[2,105],"66":148,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"81":[2,105],"84":[1,79],"86":[2,105],"88":[1,150],"93":[1,34],"96":[2,105],"98":[1,66],"100":[1,65],"101":[2,105],"109":[1,64],"110":[2,105],"112":[2,105],"113":[2,105],"114":[2,105],"118":[2,105],"124":[2,105],"125":[2,105],"126":[2,105],"135":[2,105],"136":[2,105],"138":[2,105],"139":[2,105],"140":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"149":[2,105],"150":[2,105]},{"1":[2,56],"4":[2,56],"29":[2,56],"30":[2,56],"52":[2,56],"60":[2,56],"64":[2,56],"81":[2,56],"86":[2,56],"96":[2,56],"101":[2,56],"106":[2,56],"107":[2,56],"110":[2,56],"112":[2,56],"113":[2,56],"114":[2,56],"118":[2,56],"124":[2,56],"125":[2,56],"126":[2,56],"129":[2,56],"131":[2,56],"135":[2,56],"136":[2,56],"138":[2,56],"139":[2,56],"140":[2,56],"141":[2,56],"142":[2,56],"143":[2,56],"144":[2,56],"145":[2,56],"146":[2,56],"147":[2,56],"149":[2,56],"150":[2,56]},{"1":[2,55],"4":[2,55],"8":154,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"30":[2,55],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"110":[2,55],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"135":[2,55],"136":[2,55],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":155,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,77],"4":[2,77],"29":[2,77],"30":[2,77],"46":[2,77],"52":[2,77],"60":[2,77],"64":[2,77],"74":[2,77],"75":[2,77],"76":[2,77],"77":[2,77],"80":[2,77],"81":[2,77],"82":[2,77],"83":[2,77],"86":[2,77],"94":[2,77],"95":[2,77],"96":[2,77],"101":[2,77],"110":[2,77],"112":[2,77],"113":[2,77],"114":[2,77],"118":[2,77],"124":[2,77],"125":[2,77],"126":[2,77],"135":[2,77],"136":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77]},{"1":[2,78],"4":[2,78],"29":[2,78],"30":[2,78],"46":[2,78],"52":[2,78],"60":[2,78],"64":[2,78],"74":[2,78],"75":[2,78],"76":[2,78],"77":[2,78],"80":[2,78],"81":[2,78],"82":[2,78],"83":[2,78],"86":[2,78],"94":[2,78],"95":[2,78],"96":[2,78],"101":[2,78],"110":[2,78],"112":[2,78],"113":[2,78],"114":[2,78],"118":[2,78],"124":[2,78],"125":[2,78],"126":[2,78],"135":[2,78],"136":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78]},{"1":[2,35],"4":[2,35],"29":[2,35],"30":[2,35],"52":[2,35],"60":[2,35],"64":[2,35],"74":[2,35],"75":[2,35],"76":[2,35],"77":[2,35],"80":[2,35],"81":[2,35],"82":[2,35],"83":[2,35],"86":[2,35],"94":[2,35],"95":[2,35],"96":[2,35],"101":[2,35],"110":[2,35],"112":[2,35],"113":[2,35],"114":[2,35],"118":[2,35],"124":[2,35],"125":[2,35],"126":[2,35],"135":[2,35],"136":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35]},{"1":[2,36],"4":[2,36],"29":[2,36],"30":[2,36],"52":[2,36],"60":[2,36],"64":[2,36],"74":[2,36],"75":[2,36],"76":[2,36],"77":[2,36],"80":[2,36],"81":[2,36],"82":[2,36],"83":[2,36],"86":[2,36],"94":[2,36],"95":[2,36],"96":[2,36],"101":[2,36],"110":[2,36],"112":[2,36],"113":[2,36],"114":[2,36],"118":[2,36],"124":[2,36],"125":[2,36],"126":[2,36],"135":[2,36],"136":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36]},{"1":[2,37],"4":[2,37],"29":[2,37],"30":[2,37],"52":[2,37],"60":[2,37],"64":[2,37],"74":[2,37],"75":[2,37],"76":[2,37],"77":[2,37],"80":[2,37],"81":[2,37],"82":[2,37],"83":[2,37],"86":[2,37],"94":[2,37],"95":[2,37],"96":[2,37],"101":[2,37],"110":[2,37],"112":[2,37],"113":[2,37],"114":[2,37],"118":[2,37],"124":[2,37],"125":[2,37],"126":[2,37],"135":[2,37],"136":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37]},{"1":[2,38],"4":[2,38],"29":[2,38],"30":[2,38],"52":[2,38],"60":[2,38],"64":[2,38],"74":[2,38],"75":[2,38],"76":[2,38],"77":[2,38],"80":[2,38],"81":[2,38],"82":[2,38],"83":[2,38],"86":[2,38],"94":[2,38],"95":[2,38],"96":[2,38],"101":[2,38],"110":[2,38],"112":[2,38],"113":[2,38],"114":[2,38],"118":[2,38],"124":[2,38],"125":[2,38],"126":[2,38],"135":[2,38],"136":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38]},{"1":[2,39],"4":[2,39],"29":[2,39],"30":[2,39],"52":[2,39],"60":[2,39],"64":[2,39],"74":[2,39],"75":[2,39],"76":[2,39],"77":[2,39],"80":[2,39],"81":[2,39],"82":[2,39],"83":[2,39],"86":[2,39],"94":[2,39],"95":[2,39],"96":[2,39],"101":[2,39],"110":[2,39],"112":[2,39],"113":[2,39],"114":[2,39],"118":[2,39],"124":[2,39],"125":[2,39],"126":[2,39],"135":[2,39],"136":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39]},{"1":[2,40],"4":[2,40],"29":[2,40],"30":[2,40],"52":[2,40],"60":[2,40],"64":[2,40],"74":[2,40],"75":[2,40],"76":[2,40],"77":[2,40],"80":[2,40],"81":[2,40],"82":[2,40],"83":[2,40],"86":[2,40],"94":[2,40],"95":[2,40],"96":[2,40],"101":[2,40],"110":[2,40],"112":[2,40],"113":[2,40],"114":[2,40],"118":[2,40],"124":[2,40],"125":[2,40],"126":[2,40],"135":[2,40],"136":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40]},{"1":[2,41],"4":[2,41],"29":[2,41],"30":[2,41],"52":[2,41],"60":[2,41],"64":[2,41],"74":[2,41],"75":[2,41],"76":[2,41],"77":[2,41],"80":[2,41],"81":[2,41],"82":[2,41],"83":[2,41],"86":[2,41],"94":[2,41],"95":[2,41],"96":[2,41],"101":[2,41],"110":[2,41],"112":[2,41],"113":[2,41],"114":[2,41],"118":[2,41],"124":[2,41],"125":[2,41],"126":[2,41],"135":[2,41],"136":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41]},{"1":[2,42],"4":[2,42],"29":[2,42],"30":[2,42],"52":[2,42],"60":[2,42],"64":[2,42],"74":[2,42],"75":[2,42],"76":[2,42],"77":[2,42],"80":[2,42],"81":[2,42],"82":[2,42],"83":[2,42],"86":[2,42],"94":[2,42],"95":[2,42],"96":[2,42],"101":[2,42],"110":[2,42],"112":[2,42],"113":[2,42],"114":[2,42],"118":[2,42],"124":[2,42],"125":[2,42],"126":[2,42],"135":[2,42],"136":[2,42],"138":[2,42],"139":[2,42],"140":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"148":[2,42],"149":[2,42],"150":[2,42]},{"1":[2,43],"4":[2,43],"29":[2,43],"30":[2,43],"52":[2,43],"60":[2,43],"64":[2,43],"74":[2,43],"75":[2,43],"76":[2,43],"77":[2,43],"80":[2,43],"81":[2,43],"82":[2,43],"83":[2,43],"86":[2,43],"94":[2,43],"95":[2,43],"96":[2,43],"101":[2,43],"110":[2,43],"112":[2,43],"113":[2,43],"114":[2,43],"118":[2,43],"124":[2,43],"125":[2,43],"126":[2,43],"135":[2,43],"136":[2,43],"138":[2,43],"139":[2,43],"140":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"148":[2,43],"149":[2,43],"150":[2,43]},{"7":156,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"110":[1,157],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":158,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,162],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"65":163,"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"97":160,"98":[1,66],"100":[1,65],"101":[1,159],"102":161,"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,124],"4":[2,124],"29":[2,124],"30":[2,124],"52":[2,124],"60":[2,124],"64":[2,124],"74":[2,124],"75":[2,124],"76":[2,124],"77":[2,124],"80":[2,124],"81":[2,124],"82":[2,124],"83":[2,124],"86":[2,124],"94":[2,124],"95":[2,124],"96":[2,124],"101":[2,124],"110":[2,124],"112":[2,124],"113":[2,124],"114":[2,124],"118":[2,124],"124":[2,124],"125":[2,124],"126":[2,124],"135":[2,124],"136":[2,124],"138":[2,124],"139":[2,124],"140":[2,124],"141":[2,124],"142":[2,124],"143":[2,124],"144":[2,124],"145":[2,124],"146":[2,124],"147":[2,124],"148":[2,124],"149":[2,124],"150":[2,124]},{"1":[2,125],"4":[2,125],"29":[2,125],"30":[2,125],"31":164,"32":[1,82],"52":[2,125],"60":[2,125],"64":[2,125],"74":[2,125],"75":[2,125],"76":[2,125],"77":[2,125],"80":[2,125],"81":[2,125],"82":[2,125],"83":[2,125],"86":[2,125],"94":[2,125],"95":[2,125],"96":[2,125],"101":[2,125],"110":[2,125],"112":[2,125],"113":[2,125],"114":[2,125],"118":[2,125],"124":[2,125],"125":[2,125],"126":[2,125],"135":[2,125],"136":[2,125],"138":[2,125],"139":[2,125],"140":[2,125],"141":[2,125],"142":[2,125],"143":[2,125],"144":[2,125],"145":[2,125],"146":[2,125],"147":[2,125],"148":[2,125],"149":[2,125],"150":[2,125]},{"4":[2,60],"29":[2,60]},{"4":[2,61],"29":[2,61]},{"8":165,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":166,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":167,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":168,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[1,134],"6":169,"8":170,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,6],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"31":175,"32":[1,82],"68":176,"69":177,"71":171,"84":[1,79],"100":[1,65],"121":172,"122":[1,173],"123":174},{"120":178,"124":[1,179],"125":[1,180]},{"1":[2,72],"4":[2,72],"29":[2,72],"30":[2,72],"46":[2,72],"52":[2,72],"60":[2,72],"64":[2,72],"74":[2,72],"75":[2,72],"76":[2,72],"77":[2,72],"80":[2,72],"81":[2,72],"82":[2,72],"83":[2,72],"86":[2,72],"88":[2,72],"94":[2,72],"95":[2,72],"96":[2,72],"101":[2,72],"110":[2,72],"112":[2,72],"113":[2,72],"114":[2,72],"118":[2,72],"124":[2,72],"125":[2,72],"126":[2,72],"135":[2,72],"136":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72]},{"1":[2,75],"4":[2,75],"29":[2,75],"30":[2,75],"46":[2,75],"52":[2,75],"60":[2,75],"64":[2,75],"74":[2,75],"75":[2,75],"76":[2,75],"77":[2,75],"80":[2,75],"81":[2,75],"82":[2,75],"83":[2,75],"86":[2,75],"88":[2,75],"94":[2,75],"95":[2,75],"96":[2,75],"101":[2,75],"110":[2,75],"112":[2,75],"113":[2,75],"114":[2,75],"118":[2,75],"124":[2,75],"125":[2,75],"126":[2,75],"135":[2,75],"136":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75]},{"4":[2,95],"28":186,"29":[2,95],"31":183,"32":[1,82],"33":184,"34":[1,80],"35":[1,81],"47":182,"48":185,"51":[1,50],"60":[2,95],"63":[1,187],"85":181,"86":[2,95]},{"1":[2,33],"4":[2,33],"29":[2,33],"30":[2,33],"49":[2,33],"52":[2,33],"60":[2,33],"64":[2,33],"74":[2,33],"75":[2,33],"76":[2,33],"77":[2,33],"80":[2,33],"81":[2,33],"82":[2,33],"83":[2,33],"86":[2,33],"94":[2,33],"95":[2,33],"96":[2,33],"101":[2,33],"110":[2,33],"112":[2,33],"113":[2,33],"114":[2,33],"118":[2,33],"124":[2,33],"125":[2,33],"126":[2,33],"135":[2,33],"136":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33]},{"1":[2,34],"4":[2,34],"29":[2,34],"30":[2,34],"49":[2,34],"52":[2,34],"60":[2,34],"64":[2,34],"74":[2,34],"75":[2,34],"76":[2,34],"77":[2,34],"80":[2,34],"81":[2,34],"82":[2,34],"83":[2,34],"86":[2,34],"94":[2,34],"95":[2,34],"96":[2,34],"101":[2,34],"110":[2,34],"112":[2,34],"113":[2,34],"114":[2,34],"118":[2,34],"124":[2,34],"125":[2,34],"126":[2,34],"135":[2,34],"136":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34]},{"1":[2,32],"4":[2,32],"29":[2,32],"30":[2,32],"46":[2,32],"49":[2,32],"52":[2,32],"60":[2,32],"64":[2,32],"74":[2,32],"75":[2,32],"76":[2,32],"77":[2,32],"80":[2,32],"81":[2,32],"82":[2,32],"83":[2,32],"86":[2,32],"88":[2,32],"94":[2,32],"95":[2,32],"96":[2,32],"101":[2,32],"110":[2,32],"112":[2,32],"113":[2,32],"114":[2,32],"118":[2,32],"124":[2,32],"125":[2,32],"126":[2,32],"135":[2,32],"136":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32]},{"1":[2,31],"4":[2,31],"29":[2,31],"30":[2,31],"52":[2,31],"60":[2,31],"64":[2,31],"81":[2,31],"86":[2,31],"96":[2,31],"101":[2,31],"106":[2,31],"107":[2,31],"110":[2,31],"112":[2,31],"113":[2,31],"114":[2,31],"118":[2,31],"124":[2,31],"125":[2,31],"126":[2,31],"129":[2,31],"131":[2,31],"135":[2,31],"136":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"149":[2,31],"150":[2,31]},{"1":[2,7],"4":[2,7],"7":188,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"30":[2,7],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,4]},{"4":[1,84],"30":[1,189]},{"1":[2,30],"4":[2,30],"29":[2,30],"30":[2,30],"52":[2,30],"60":[2,30],"64":[2,30],"81":[2,30],"86":[2,30],"96":[2,30],"101":[2,30],"106":[2,30],"107":[2,30],"110":[2,30],"112":[2,30],"113":[2,30],"114":[2,30],"118":[2,30],"124":[2,30],"125":[2,30],"126":[2,30],"129":[2,30],"131":[2,30],"135":[2,30],"136":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"149":[2,30],"150":[2,30]},{"1":[2,203],"4":[2,203],"29":[2,203],"30":[2,203],"52":[2,203],"60":[2,203],"64":[2,203],"81":[2,203],"86":[2,203],"96":[2,203],"101":[2,203],"110":[2,203],"112":[2,203],"113":[2,203],"114":[2,203],"118":[2,203],"124":[2,203],"125":[2,203],"126":[2,203],"135":[2,203],"136":[2,203],"138":[2,203],"139":[2,203],"140":[2,203],"141":[2,203],"142":[2,203],"143":[2,203],"144":[2,203],"145":[2,203],"146":[2,203],"147":[2,203],"149":[2,203],"150":[2,203]},{"1":[2,204],"4":[2,204],"29":[2,204],"30":[2,204],"52":[2,204],"60":[2,204],"64":[2,204],"81":[2,204],"86":[2,204],"96":[2,204],"101":[2,204],"110":[2,204],"112":[2,204],"113":[2,204],"114":[2,204],"118":[2,204],"124":[2,204],"125":[2,204],"126":[2,204],"135":[2,204],"136":[2,204],"138":[2,204],"139":[2,204],"140":[2,204],"141":[2,204],"142":[2,204],"143":[2,204],"144":[2,204],"145":[2,204],"146":[2,204],"147":[2,204],"149":[2,204],"150":[2,204]},{"1":[2,57],"4":[2,57],"8":190,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[2,57],"30":[2,57],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"52":[2,57],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"60":[2,57],"63":[1,67],"64":[2,57],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"81":[2,57],"84":[1,79],"86":[2,57],"87":[1,49],"93":[1,34],"96":[2,57],"98":[1,66],"100":[1,65],"101":[2,57],"104":[1,43],"108":[1,52],"109":[1,64],"110":[2,57],"111":44,"112":[2,57],"113":[2,57],"114":[2,57],"115":45,"116":[1,74],"117":46,"118":[2,57],"119":76,"124":[2,57],"125":[2,57],"126":[2,57],"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"135":[2,57],"136":[2,57],"137":[1,37],"138":[2,57],"139":[2,57],"140":[2,57],"141":[2,57],"142":[2,57],"143":[2,57],"144":[2,57],"145":[2,57],"146":[2,57],"147":[2,57],"149":[2,57],"150":[2,57]},{"8":191,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":192,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":193,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":194,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":195,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":196,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":197,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":198,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":199,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":200,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":201,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":202,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":203,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":204,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,158],"4":[2,158],"29":[2,158],"30":[2,158],"52":[2,158],"60":[2,158],"64":[2,158],"81":[2,158],"86":[2,158],"96":[2,158],"101":[2,158],"110":[2,158],"112":[2,158],"113":[2,158],"114":[2,158],"118":[2,158],"124":[2,158],"125":[2,158],"126":[2,158],"135":[2,158],"136":[2,158],"138":[2,158],"139":[2,158],"140":[2,158],"141":[2,158],"142":[2,158],"143":[2,158],"144":[2,158],"145":[2,158],"146":[2,158],"147":[2,158],"149":[2,158],"150":[2,158]},{"1":[2,163],"4":[2,163],"29":[2,163],"30":[2,163],"52":[2,163],"60":[2,163],"64":[2,163],"81":[2,163],"86":[2,163],"96":[2,163],"101":[2,163],"110":[2,163],"112":[2,163],"113":[2,163],"114":[2,163],"118":[2,163],"124":[2,163],"125":[2,163],"126":[2,163],"135":[2,163],"136":[2,163],"138":[2,163],"139":[2,163],"140":[2,163],"141":[2,163],"142":[2,163],"143":[2,163],"144":[2,163],"145":[2,163],"146":[2,163],"147":[2,163],"149":[2,163],"150":[2,163]},{"8":205,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":206,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,157],"4":[2,157],"29":[2,157],"30":[2,157],"52":[2,157],"60":[2,157],"64":[2,157],"81":[2,157],"86":[2,157],"96":[2,157],"101":[2,157],"110":[2,157],"112":[2,157],"113":[2,157],"114":[2,157],"118":[2,157],"124":[2,157],"125":[2,157],"126":[2,157],"135":[2,157],"136":[2,157],"138":[2,157],"139":[2,157],"140":[2,157],"141":[2,157],"142":[2,157],"143":[2,157],"144":[2,157],"145":[2,157],"146":[2,157],"147":[2,157],"149":[2,157],"150":[2,157]},{"1":[2,162],"4":[2,162],"29":[2,162],"30":[2,162],"52":[2,162],"60":[2,162],"64":[2,162],"81":[2,162],"86":[2,162],"96":[2,162],"101":[2,162],"110":[2,162],"112":[2,162],"113":[2,162],"114":[2,162],"118":[2,162],"124":[2,162],"125":[2,162],"126":[2,162],"135":[2,162],"136":[2,162],"138":[2,162],"139":[2,162],"140":[2,162],"141":[2,162],"142":[2,162],"143":[2,162],"144":[2,162],"145":[2,162],"146":[2,162],"147":[2,162],"149":[2,162],"150":[2,162]},{"92":207,"95":[1,128]},{"8":208,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,209],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"46":[2,73],"52":[2,73],"60":[2,73],"64":[2,73],"74":[2,73],"75":[2,73],"76":[2,73],"77":[2,73],"80":[2,73],"81":[2,73],"82":[2,73],"83":[2,73],"86":[2,73],"88":[2,73],"94":[2,73],"95":[2,73],"96":[2,73],"101":[2,73],"110":[2,73],"112":[2,73],"113":[2,73],"114":[2,73],"118":[2,73],"124":[2,73],"125":[2,73],"126":[2,73],"135":[2,73],"136":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73]},{"95":[2,121]},{"31":210,"32":[1,82]},{"31":211,"32":[1,82]},{"1":[2,87],"4":[2,87],"29":[2,87],"30":[2,87],"46":[2,87],"52":[2,87],"60":[2,87],"64":[2,87],"74":[2,87],"75":[2,87],"76":[2,87],"77":[2,87],"80":[2,87],"81":[2,87],"82":[2,87],"83":[2,87],"86":[2,87],"88":[2,87],"94":[2,87],"95":[2,87],"96":[2,87],"101":[2,87],"110":[2,87],"112":[2,87],"113":[2,87],"114":[2,87],"118":[2,87],"124":[2,87],"125":[2,87],"126":[2,87],"135":[2,87],"136":[2,87],"138":[2,87],"139":[2,87],"140":[2,87],"141":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87],"148":[2,87],"149":[2,87],"150":[2,87]},{"31":212,"32":[1,82]},{"1":[2,89],"4":[2,89],"29":[2,89],"30":[2,89],"46":[2,89],"52":[2,89],"60":[2,89],"64":[2,89],"74":[2,89],"75":[2,89],"76":[2,89],"77":[2,89],"80":[2,89],"81":[2,89],"82":[2,89],"83":[2,89],"86":[2,89],"88":[2,89],"94":[2,89],"95":[2,89],"96":[2,89],"101":[2,89],"110":[2,89],"112":[2,89],"113":[2,89],"114":[2,89],"118":[2,89],"124":[2,89],"125":[2,89],"126":[2,89],"135":[2,89],"136":[2,89],"138":[2,89],"139":[2,89],"140":[2,89],"141":[2,89],"142":[2,89],"143":[2,89],"144":[2,89],"145":[2,89],"146":[2,89],"147":[2,89],"148":[2,89],"149":[2,89],"150":[2,89]},{"1":[2,90],"4":[2,90],"29":[2,90],"30":[2,90],"46":[2,90],"52":[2,90],"60":[2,90],"64":[2,90],"74":[2,90],"75":[2,90],"76":[2,90],"77":[2,90],"80":[2,90],"81":[2,90],"82":[2,90],"83":[2,90],"86":[2,90],"88":[2,90],"94":[2,90],"95":[2,90],"96":[2,90],"101":[2,90],"110":[2,90],"112":[2,90],"113":[2,90],"114":[2,90],"118":[2,90],"124":[2,90],"125":[2,90],"126":[2,90],"135":[2,90],"136":[2,90],"138":[2,90],"139":[2,90],"140":[2,90],"141":[2,90],"142":[2,90],"143":[2,90],"144":[2,90],"145":[2,90],"146":[2,90],"147":[2,90],"148":[2,90],"149":[2,90],"150":[2,90]},{"8":213,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"64":[1,215],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"99":214,"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"78":216,"80":[1,217],"82":[1,122],"83":[1,123]},{"78":218,"80":[1,217],"82":[1,122],"83":[1,123]},{"92":219,"95":[1,128]},{"1":[2,74],"4":[2,74],"29":[2,74],"30":[2,74],"46":[2,74],"52":[2,74],"60":[2,74],"64":[2,74],"74":[2,74],"75":[2,74],"76":[2,74],"77":[2,74],"80":[2,74],"81":[2,74],"82":[2,74],"83":[2,74],"86":[2,74],"88":[2,74],"94":[2,74],"95":[2,74],"96":[2,74],"101":[2,74],"110":[2,74],"112":[2,74],"113":[2,74],"114":[2,74],"118":[2,74],"124":[2,74],"125":[2,74],"126":[2,74],"135":[2,74],"136":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74]},{"8":220,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,221],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,119],"4":[2,119],"29":[2,119],"30":[2,119],"52":[2,119],"60":[2,119],"64":[2,119],"74":[2,119],"75":[2,119],"76":[2,119],"77":[2,119],"80":[2,119],"81":[2,119],"82":[2,119],"83":[2,119],"86":[2,119],"94":[2,119],"95":[2,119],"96":[2,119],"101":[2,119],"110":[2,119],"112":[2,119],"113":[2,119],"114":[2,119],"118":[2,119],"124":[2,119],"125":[2,119],"126":[2,119],"135":[2,119],"136":[2,119],"138":[2,119],"139":[2,119],"140":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"146":[2,119],"147":[2,119],"149":[2,119],"150":[2,119]},{"8":224,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,162],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"65":163,"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"96":[1,222],"97":223,"98":[1,66],"100":[1,65],"102":161,"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"55":[1,225],"60":[1,226]},{"55":[2,65],"60":[2,65]},{"55":[2,67],"60":[2,67],"64":[1,227]},{"62":[1,228]},{"1":[2,59],"4":[2,59],"29":[2,59],"30":[2,59],"52":[2,59],"60":[2,59],"64":[2,59],"81":[2,59],"86":[2,59],"96":[2,59],"101":[2,59],"110":[2,59],"112":[2,59],"113":[2,59],"114":[2,59],"118":[2,59],"124":[2,59],"125":[2,59],"126":[2,59],"135":[2,59],"136":[2,59],"138":[2,59],"139":[2,59],"140":[2,59],"141":[2,59],"142":[2,59],"143":[2,59],"144":[2,59],"145":[2,59],"146":[2,59],"147":[2,59],"149":[2,59],"150":[2,59]},{"28":83,"51":[1,50]},{"1":[2,198],"4":[2,198],"29":[2,198],"30":[2,198],"52":[1,90],"60":[2,198],"64":[2,198],"81":[2,198],"86":[2,198],"96":[2,198],"101":[2,198],"110":[2,198],"111":105,"112":[2,198],"113":[2,198],"114":[2,198],"117":106,"118":[2,198],"119":76,"124":[2,198],"125":[2,198],"126":[2,198],"135":[2,198],"136":[2,198],"138":[2,198],"139":[2,198],"140":[1,88],"141":[1,89],"142":[2,198],"143":[2,198],"144":[2,198],"145":[2,198],"146":[2,198],"147":[2,198],"149":[2,198],"150":[2,198]},{"111":109,"112":[1,72],"114":[1,73],"117":110,"118":[1,75],"119":76,"135":[1,107],"136":[1,108]},{"1":[2,199],"4":[2,199],"29":[2,199],"30":[2,199],"52":[1,90],"60":[2,199],"64":[2,199],"81":[2,199],"86":[2,199],"96":[2,199],"101":[2,199],"110":[2,199],"111":105,"112":[2,199],"113":[2,199],"114":[2,199],"117":106,"118":[2,199],"119":76,"124":[2,199],"125":[2,199],"126":[2,199],"135":[2,199],"136":[2,199],"138":[2,199],"139":[2,199],"140":[1,88],"141":[1,89],"142":[2,199],"143":[2,199],"144":[2,199],"145":[2,199],"146":[2,199],"147":[2,199],"149":[2,199],"150":[2,199]},{"1":[2,200],"4":[2,200],"29":[2,200],"30":[2,200],"52":[1,90],"60":[2,200],"64":[2,200],"81":[2,200],"86":[2,200],"96":[2,200],"101":[2,200],"110":[2,200],"111":105,"112":[2,200],"113":[2,200],"114":[2,200],"117":106,"118":[2,200],"119":76,"124":[2,200],"125":[2,200],"126":[2,200],"135":[2,200],"136":[2,200],"138":[2,200],"139":[2,200],"140":[1,88],"141":[1,89],"142":[2,200],"143":[2,200],"144":[2,200],"145":[2,200],"146":[2,200],"147":[2,200],"149":[2,200],"150":[2,200]},{"1":[2,201],"4":[2,201],"29":[2,201],"30":[2,201],"52":[1,90],"60":[2,201],"64":[2,201],"81":[2,201],"86":[2,201],"96":[2,201],"101":[2,201],"110":[2,201],"111":105,"112":[2,201],"113":[2,201],"114":[2,201],"117":106,"118":[2,201],"119":76,"124":[2,201],"125":[2,201],"126":[2,201],"135":[2,201],"136":[2,201],"138":[2,201],"139":[2,201],"142":[2,201],"143":[2,201],"144":[2,201],"145":[2,201],"146":[2,201],"147":[2,201],"149":[2,201],"150":[2,201]},{"1":[2,202],"4":[2,202],"29":[2,202],"30":[2,202],"52":[1,90],"60":[2,202],"64":[2,202],"81":[2,202],"86":[2,202],"96":[2,202],"101":[2,202],"110":[2,202],"111":105,"112":[2,202],"113":[2,202],"114":[2,202],"117":106,"118":[2,202],"119":76,"124":[2,202],"125":[2,202],"126":[2,202],"135":[2,202],"136":[2,202],"138":[2,202],"139":[2,202],"142":[2,202],"143":[2,202],"144":[2,202],"145":[2,202],"146":[2,202],"147":[2,202],"149":[2,202],"150":[2,202]},{"4":[1,134],"6":230,"29":[1,6],"133":[1,229]},{"1":[2,144],"4":[2,144],"29":[2,144],"30":[2,144],"52":[2,144],"60":[2,144],"64":[2,144],"81":[2,144],"86":[2,144],"96":[2,144],"101":[2,144],"105":231,"106":[1,232],"107":[1,233],"110":[2,144],"112":[2,144],"113":[2,144],"114":[2,144],"118":[2,144],"124":[2,144],"125":[2,144],"126":[2,144],"135":[2,144],"136":[2,144],"138":[2,144],"139":[2,144],"140":[2,144],"141":[2,144],"142":[2,144],"143":[2,144],"144":[2,144],"145":[2,144],"146":[2,144],"147":[2,144],"149":[2,144],"150":[2,144]},{"1":[2,156],"4":[2,156],"29":[2,156],"30":[2,156],"52":[2,156],"60":[2,156],"64":[2,156],"81":[2,156],"86":[2,156],"96":[2,156],"101":[2,156],"110":[2,156],"112":[2,156],"113":[2,156],"114":[2,156],"118":[2,156],"124":[2,156],"125":[2,156],"126":[2,156],"135":[2,156],"136":[2,156],"138":[2,156],"139":[2,156],"140":[2,156],"141":[2,156],"142":[2,156],"143":[2,156],"144":[2,156],"145":[2,156],"146":[2,156],"147":[2,156],"149":[2,156],"150":[2,156]},{"1":[2,164],"4":[2,164],"29":[2,164],"30":[2,164],"52":[2,164],"60":[2,164],"64":[2,164],"81":[2,164],"86":[2,164],"96":[2,164],"101":[2,164],"110":[2,164],"112":[2,164],"113":[2,164],"114":[2,164],"118":[2,164],"124":[2,164],"125":[2,164],"126":[2,164],"135":[2,164],"136":[2,164],"138":[2,164],"139":[2,164],"140":[2,164],"141":[2,164],"142":[2,164],"143":[2,164],"144":[2,164],"145":[2,164],"146":[2,164],"147":[2,164],"149":[2,164],"150":[2,164]},{"29":[1,234],"52":[1,90],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"128":235,"130":236,"131":[1,237]},{"15":238,"16":152,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":153,"48":78,"63":[1,67],"66":239,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"93":[1,34],"98":[1,66],"100":[1,65],"109":[1,64]},{"1":[2,100],"4":[2,100],"29":[1,241],"30":[2,100],"52":[2,100],"60":[2,100],"64":[2,100],"74":[2,76],"75":[2,76],"76":[2,76],"77":[2,76],"80":[2,76],"81":[2,100],"82":[2,76],"83":[2,76],"86":[2,100],"88":[1,240],"94":[2,76],"95":[2,76],"96":[2,100],"101":[2,100],"110":[2,100],"112":[2,100],"113":[2,100],"114":[2,100],"118":[2,100],"124":[2,100],"125":[2,100],"126":[2,100],"135":[2,100],"136":[2,100],"138":[2,100],"139":[2,100],"140":[2,100],"141":[2,100],"142":[2,100],"143":[2,100],"144":[2,100],"145":[2,100],"146":[2,100],"147":[2,100],"149":[2,100],"150":[2,100]},{"4":[2,111],"28":186,"30":[2,111],"31":183,"32":[1,82],"33":184,"34":[1,80],"35":[1,81],"47":245,"48":246,"51":[1,50],"63":[1,187],"84":[1,244],"89":242,"90":243},{"15":247,"16":152,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":153,"48":78,"63":[1,67],"66":239,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"93":[1,34],"98":[1,66],"100":[1,65],"109":[1,64]},{"67":113,"74":[1,115],"75":[1,116],"76":[1,117],"77":[1,118],"78":119,"79":120,"80":[1,121],"82":[1,122],"83":[1,123],"91":111,"94":[1,114],"95":[2,120]},{"67":125,"74":[1,115],"75":[1,116],"76":[1,117],"77":[1,118],"78":119,"79":120,"80":[1,121],"82":[1,122],"83":[1,123],"91":124,"94":[1,114],"95":[2,120]},{"1":[2,79],"4":[2,79],"29":[2,79],"30":[2,79],"52":[2,79],"60":[2,79],"64":[2,79],"74":[2,79],"75":[2,79],"76":[2,79],"77":[2,79],"80":[2,79],"81":[2,79],"82":[2,79],"83":[2,79],"86":[2,79],"94":[2,79],"95":[2,79],"96":[2,79],"101":[2,79],"110":[2,79],"112":[2,79],"113":[2,79],"114":[2,79],"118":[2,79],"124":[2,79],"125":[2,79],"126":[2,79],"135":[2,79],"136":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"149":[2,79],"150":[2,79]},{"1":[2,54],"4":[2,54],"30":[2,54],"52":[1,90],"110":[2,54],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[2,54],"136":[2,54],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,149],"4":[2,149],"30":[2,149],"52":[1,90],"110":[2,149],"111":105,"112":[2,149],"114":[2,149],"117":106,"118":[2,149],"119":76,"124":[1,99],"125":[1,100],"135":[2,149],"136":[2,149],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"110":[1,248]},{"1":[2,151],"4":[2,151],"29":[2,151],"30":[2,151],"52":[2,151],"60":[2,151],"64":[2,151],"74":[2,151],"75":[2,151],"76":[2,151],"77":[2,151],"80":[2,151],"81":[2,151],"82":[2,151],"83":[2,151],"86":[2,151],"94":[2,151],"95":[2,151],"96":[2,151],"101":[2,151],"110":[2,151],"112":[2,151],"113":[2,151],"114":[2,151],"118":[2,151],"124":[2,151],"125":[2,151],"126":[2,151],"135":[2,151],"136":[2,151],"138":[2,151],"139":[2,151],"140":[2,151],"141":[2,151],"142":[2,151],"143":[2,151],"144":[2,151],"145":[2,151],"146":[2,151],"147":[2,151],"148":[2,151],"149":[2,151],"150":[2,151]},{"4":[2,140],"29":[2,140],"52":[1,90],"60":[2,140],"64":[1,250],"99":249,"101":[2,140],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,133],"4":[2,133],"29":[2,133],"30":[2,133],"46":[2,133],"52":[2,133],"60":[2,133],"64":[2,133],"74":[2,133],"75":[2,133],"76":[2,133],"77":[2,133],"80":[2,133],"81":[2,133],"82":[2,133],"83":[2,133],"86":[2,133],"94":[2,133],"95":[2,133],"96":[2,133],"101":[2,133],"110":[2,133],"112":[2,133],"113":[2,133],"114":[2,133],"118":[2,133],"124":[2,133],"125":[2,133],"126":[2,133],"135":[2,133],"136":[2,133],"138":[2,133],"139":[2,133],"140":[2,133],"141":[2,133],"142":[2,133],"143":[2,133],"144":[2,133],"145":[2,133],"146":[2,133],"147":[2,133],"148":[2,133],"149":[2,133],"150":[2,133]},{"4":[2,62],"29":[2,62],"59":251,"60":[1,252],"101":[2,62]},{"4":[2,135],"29":[2,135],"30":[2,135],"60":[2,135],"96":[2,135],"101":[2,135]},{"8":224,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,162],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"65":163,"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"97":253,"98":[1,66],"100":[1,65],"102":161,"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[2,141],"29":[2,141],"30":[2,141],"60":[2,141],"96":[2,141],"101":[2,141]},{"1":[2,128],"4":[2,128],"29":[2,128],"30":[2,128],"46":[2,128],"49":[2,128],"52":[2,128],"60":[2,128],"64":[2,128],"74":[2,128],"75":[2,128],"76":[2,128],"77":[2,128],"80":[2,128],"81":[2,128],"82":[2,128],"83":[2,128],"86":[2,128],"88":[2,128],"94":[2,128],"95":[2,128],"96":[2,128],"101":[2,128],"110":[2,128],"112":[2,128],"113":[2,128],"114":[2,128],"118":[2,128],"124":[2,128],"125":[2,128],"126":[2,128],"135":[2,128],"136":[2,128],"138":[2,128],"139":[2,128],"140":[2,128],"141":[2,128],"142":[2,128],"143":[2,128],"144":[2,128],"145":[2,128],"146":[2,128],"147":[2,128],"148":[2,128],"149":[2,128],"150":[2,128]},{"4":[1,134],"6":254,"29":[1,6],"52":[1,90],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"4":[1,134],"6":255,"29":[1,6],"52":[1,90],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,152],"4":[2,152],"29":[2,152],"30":[2,152],"52":[1,90],"60":[2,152],"64":[2,152],"81":[2,152],"86":[2,152],"96":[2,152],"101":[2,152],"110":[2,152],"111":105,"112":[1,72],"113":[1,256],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"126":[2,152],"135":[2,152],"136":[2,152],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,154],"4":[2,154],"29":[2,154],"30":[2,154],"52":[1,90],"60":[2,154],"64":[2,154],"81":[2,154],"86":[2,154],"96":[2,154],"101":[2,154],"110":[2,154],"111":105,"112":[1,72],"113":[1,257],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"126":[2,154],"135":[2,154],"136":[2,154],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,160],"4":[2,160],"29":[2,160],"30":[2,160],"52":[2,160],"60":[2,160],"64":[2,160],"81":[2,160],"86":[2,160],"96":[2,160],"101":[2,160],"110":[2,160],"112":[2,160],"113":[2,160],"114":[2,160],"118":[2,160],"124":[2,160],"125":[2,160],"126":[2,160],"135":[2,160],"136":[2,160],"138":[2,160],"139":[2,160],"140":[2,160],"141":[2,160],"142":[2,160],"143":[2,160],"144":[2,160],"145":[2,160],"146":[2,160],"147":[2,160],"149":[2,160],"150":[2,160]},{"1":[2,161],"4":[2,161],"29":[2,161],"30":[2,161],"52":[1,90],"60":[2,161],"64":[2,161],"81":[2,161],"86":[2,161],"96":[2,161],"101":[2,161],"110":[2,161],"111":105,"112":[1,72],"113":[2,161],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"126":[2,161],"135":[2,161],"136":[2,161],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,165],"4":[2,165],"29":[2,165],"30":[2,165],"52":[2,165],"60":[2,165],"64":[2,165],"81":[2,165],"86":[2,165],"96":[2,165],"101":[2,165],"110":[2,165],"112":[2,165],"113":[2,165],"114":[2,165],"118":[2,165],"124":[2,165],"125":[2,165],"126":[2,165],"135":[2,165],"136":[2,165],"138":[2,165],"139":[2,165],"140":[2,165],"141":[2,165],"142":[2,165],"143":[2,165],"144":[2,165],"145":[2,165],"146":[2,165],"147":[2,165],"149":[2,165],"150":[2,165]},{"124":[2,167],"125":[2,167]},{"31":175,"32":[1,82],"68":176,"69":177,"84":[1,79],"100":[1,259],"121":258,"123":174},{"60":[1,260],"124":[2,172],"125":[2,172]},{"60":[2,169],"124":[2,169],"125":[2,169]},{"60":[2,170],"124":[2,170],"125":[2,170]},{"60":[2,171],"124":[2,171],"125":[2,171]},{"1":[2,166],"4":[2,166],"29":[2,166],"30":[2,166],"52":[2,166],"60":[2,166],"64":[2,166],"81":[2,166],"86":[2,166],"96":[2,166],"101":[2,166],"110":[2,166],"112":[2,166],"113":[2,166],"114":[2,166],"118":[2,166],"124":[2,166],"125":[2,166],"126":[2,166],"135":[2,166],"136":[2,166],"138":[2,166],"139":[2,166],"140":[2,166],"141":[2,166],"142":[2,166],"143":[2,166],"144":[2,166],"145":[2,166],"146":[2,166],"147":[2,166],"149":[2,166],"150":[2,166]},{"8":261,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":262,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[2,62],"29":[2,62],"59":263,"60":[1,264],"86":[2,62]},{"4":[2,96],"29":[2,96],"30":[2,96],"60":[2,96],"86":[2,96]},{"4":[2,46],"29":[2,46],"30":[2,46],"49":[1,265],"60":[2,46],"86":[2,46]},{"4":[2,47],"29":[2,47],"30":[2,47],"49":[1,266],"60":[2,47],"86":[2,47]},{"4":[2,48],"29":[2,48],"30":[2,48],"60":[2,48],"86":[2,48]},{"4":[2,53],"29":[2,53],"30":[2,53],"60":[2,53],"86":[2,53]},{"31":164,"32":[1,82]},{"1":[2,6],"4":[2,6],"30":[2,6]},{"1":[2,29],"4":[2,29],"29":[2,29],"30":[2,29],"52":[2,29],"60":[2,29],"64":[2,29],"81":[2,29],"86":[2,29],"96":[2,29],"101":[2,29],"106":[2,29],"107":[2,29],"110":[2,29],"112":[2,29],"113":[2,29],"114":[2,29],"118":[2,29],"124":[2,29],"125":[2,29],"126":[2,29],"129":[2,29],"131":[2,29],"135":[2,29],"136":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"149":[2,29],"150":[2,29]},{"1":[2,205],"4":[2,205],"29":[2,205],"30":[2,205],"52":[1,90],"60":[2,205],"64":[2,205],"81":[2,205],"86":[2,205],"96":[2,205],"101":[2,205],"110":[2,205],"111":105,"112":[2,205],"113":[2,205],"114":[2,205],"117":106,"118":[2,205],"119":76,"124":[2,205],"125":[2,205],"126":[2,205],"135":[2,205],"136":[2,205],"138":[2,205],"139":[2,205],"140":[2,205],"141":[2,205],"142":[2,205],"143":[2,205],"144":[2,205],"145":[2,205],"146":[2,205],"147":[2,205],"149":[2,205],"150":[2,205]},{"1":[2,206],"4":[2,206],"29":[2,206],"30":[2,206],"52":[1,90],"60":[2,206],"64":[2,206],"81":[2,206],"86":[2,206],"96":[2,206],"101":[2,206],"110":[2,206],"111":105,"112":[2,206],"113":[2,206],"114":[2,206],"117":106,"118":[2,206],"119":76,"124":[2,206],"125":[2,206],"126":[2,206],"135":[2,206],"136":[2,206],"138":[2,206],"139":[2,206],"140":[1,88],"141":[1,89],"142":[2,206],"143":[2,206],"144":[1,95],"145":[2,206],"146":[2,206],"147":[2,206],"149":[2,206],"150":[2,206]},{"1":[2,207],"4":[2,207],"29":[2,207],"30":[2,207],"52":[1,90],"60":[2,207],"64":[2,207],"81":[2,207],"86":[2,207],"96":[2,207],"101":[2,207],"110":[2,207],"111":105,"112":[2,207],"113":[2,207],"114":[2,207],"117":106,"118":[2,207],"119":76,"124":[2,207],"125":[2,207],"126":[2,207],"135":[2,207],"136":[2,207],"138":[2,207],"139":[2,207],"140":[1,88],"141":[1,89],"142":[2,207],"143":[2,207],"144":[1,95],"145":[2,207],"146":[2,207],"147":[2,207],"149":[2,207],"150":[2,207]},{"1":[2,208],"4":[2,208],"29":[2,208],"30":[2,208],"52":[1,90],"60":[2,208],"64":[2,208],"81":[2,208],"86":[2,208],"96":[2,208],"101":[2,208],"110":[2,208],"111":105,"112":[2,208],"113":[2,208],"114":[2,208],"117":106,"118":[2,208],"119":76,"124":[2,208],"125":[2,208],"126":[2,208],"135":[2,208],"136":[2,208],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[2,208],"143":[2,208],"144":[1,95],"145":[1,96],"146":[1,97],"147":[2,208],"149":[1,101],"150":[1,102]},{"1":[2,209],"4":[2,209],"29":[2,209],"30":[2,209],"52":[1,90],"60":[2,209],"64":[2,209],"81":[2,209],"86":[2,209],"96":[2,209],"101":[2,209],"110":[2,209],"111":105,"112":[2,209],"113":[2,209],"114":[2,209],"117":106,"118":[2,209],"119":76,"124":[2,209],"125":[2,209],"126":[2,209],"135":[2,209],"136":[2,209],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[2,209],"143":[2,209],"144":[1,95],"145":[1,96],"146":[1,97],"147":[2,209],"149":[1,101],"150":[1,102]},{"1":[2,210],"4":[2,210],"29":[2,210],"30":[2,210],"52":[1,90],"60":[2,210],"64":[2,210],"81":[2,210],"86":[2,210],"96":[2,210],"101":[2,210],"110":[2,210],"111":105,"112":[2,210],"113":[2,210],"114":[2,210],"117":106,"118":[2,210],"119":76,"124":[2,210],"125":[2,210],"126":[2,210],"135":[2,210],"136":[2,210],"138":[2,210],"139":[2,210],"140":[1,88],"141":[1,89],"142":[2,210],"143":[2,210],"144":[2,210],"145":[2,210],"146":[2,210],"147":[2,210],"149":[2,210],"150":[2,210]},{"1":[2,211],"4":[2,211],"29":[2,211],"30":[2,211],"52":[1,90],"60":[2,211],"64":[2,211],"81":[2,211],"86":[2,211],"96":[2,211],"101":[2,211],"110":[2,211],"111":105,"112":[2,211],"113":[2,211],"114":[2,211],"117":106,"118":[2,211],"119":76,"124":[2,211],"125":[2,211],"126":[2,211],"135":[2,211],"136":[2,211],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[2,211],"143":[2,211],"144":[1,95],"145":[2,211],"146":[2,211],"147":[2,211],"149":[2,211],"150":[2,211]},{"1":[2,212],"4":[2,212],"29":[2,212],"30":[2,212],"52":[1,90],"60":[2,212],"64":[2,212],"81":[2,212],"86":[2,212],"96":[2,212],"101":[2,212],"110":[2,212],"111":105,"112":[2,212],"113":[2,212],"114":[2,212],"117":106,"118":[2,212],"119":76,"124":[2,212],"125":[2,212],"126":[2,212],"135":[2,212],"136":[2,212],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[2,212],"143":[2,212],"144":[1,95],"145":[1,96],"146":[2,212],"147":[2,212],"149":[2,212],"150":[2,212]},{"1":[2,213],"4":[2,213],"29":[2,213],"30":[2,213],"52":[1,90],"60":[2,213],"64":[2,213],"81":[2,213],"86":[2,213],"96":[2,213],"101":[2,213],"110":[2,213],"111":105,"112":[2,213],"113":[2,213],"114":[2,213],"117":106,"118":[2,213],"119":76,"124":[2,213],"125":[2,213],"126":[2,213],"135":[2,213],"136":[2,213],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[2,213],"149":[1,101],"150":[1,102]},{"1":[2,216],"4":[2,216],"29":[2,216],"30":[2,216],"52":[1,90],"60":[2,216],"64":[2,216],"81":[2,216],"86":[2,216],"96":[2,216],"101":[2,216],"110":[2,216],"111":105,"112":[2,216],"113":[2,216],"114":[2,216],"117":106,"118":[2,216],"119":76,"124":[1,99],"125":[1,100],"126":[2,216],"135":[2,216],"136":[2,216],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,217],"4":[2,217],"29":[2,217],"30":[2,217],"52":[1,90],"60":[2,217],"64":[2,217],"81":[2,217],"86":[2,217],"96":[2,217],"101":[2,217],"110":[2,217],"111":105,"112":[2,217],"113":[2,217],"114":[2,217],"117":106,"118":[2,217],"119":76,"124":[1,99],"125":[1,100],"126":[2,217],"135":[2,217],"136":[2,217],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,218],"4":[2,218],"29":[2,218],"30":[2,218],"52":[1,90],"60":[2,218],"64":[2,218],"81":[2,218],"86":[2,218],"96":[2,218],"101":[2,218],"110":[2,218],"111":105,"112":[2,218],"113":[2,218],"114":[2,218],"117":106,"118":[2,218],"119":76,"124":[2,218],"125":[2,218],"126":[2,218],"135":[2,218],"136":[2,218],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[2,218],"143":[2,218],"144":[1,95],"145":[1,96],"146":[1,97],"147":[2,218],"149":[2,218],"150":[2,218]},{"1":[2,219],"4":[2,219],"29":[2,219],"30":[2,219],"52":[1,90],"60":[2,219],"64":[2,219],"81":[2,219],"86":[2,219],"96":[2,219],"101":[2,219],"110":[2,219],"111":105,"112":[2,219],"113":[2,219],"114":[2,219],"117":106,"118":[2,219],"119":76,"124":[2,219],"125":[2,219],"126":[2,219],"135":[2,219],"136":[2,219],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[2,219],"143":[2,219],"144":[1,95],"145":[1,96],"146":[1,97],"147":[2,219],"149":[2,219],"150":[2,219]},{"1":[2,195],"4":[2,195],"29":[2,195],"30":[2,195],"52":[1,90],"60":[2,195],"64":[2,195],"81":[2,195],"86":[2,195],"96":[2,195],"101":[2,195],"110":[2,195],"111":105,"112":[1,72],"113":[2,195],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"126":[2,195],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,197],"4":[2,197],"29":[2,197],"30":[2,197],"52":[1,90],"60":[2,197],"64":[2,197],"81":[2,197],"86":[2,197],"96":[2,197],"101":[2,197],"110":[2,197],"111":105,"112":[1,72],"113":[2,197],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"126":[2,197],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,194],"4":[2,194],"29":[2,194],"30":[2,194],"52":[1,90],"60":[2,194],"64":[2,194],"81":[2,194],"86":[2,194],"96":[2,194],"101":[2,194],"110":[2,194],"111":105,"112":[1,72],"113":[2,194],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"126":[2,194],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,196],"4":[2,196],"29":[2,196],"30":[2,196],"52":[1,90],"60":[2,196],"64":[2,196],"81":[2,196],"86":[2,196],"96":[2,196],"101":[2,196],"110":[2,196],"111":105,"112":[1,72],"113":[2,196],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"126":[2,196],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,116],"4":[2,116],"29":[2,116],"30":[2,116],"52":[2,116],"60":[2,116],"64":[2,116],"74":[2,116],"75":[2,116],"76":[2,116],"77":[2,116],"80":[2,116],"81":[2,116],"82":[2,116],"83":[2,116],"86":[2,116],"94":[2,116],"95":[2,116],"96":[2,116],"101":[2,116],"110":[2,116],"112":[2,116],"113":[2,116],"114":[2,116],"118":[2,116],"124":[2,116],"125":[2,116],"126":[2,116],"135":[2,116],"136":[2,116],"138":[2,116],"139":[2,116],"140":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"146":[2,116],"147":[2,116],"149":[2,116],"150":[2,116]},{"1":[2,214],"4":[2,214],"29":[2,214],"30":[2,214],"52":[1,90],"60":[2,214],"64":[2,214],"81":[2,214],"86":[2,214],"96":[2,214],"101":[2,214],"110":[2,214],"111":105,"112":[2,214],"113":[2,214],"114":[2,214],"117":106,"118":[2,214],"119":76,"124":[2,214],"125":[2,214],"126":[2,214],"135":[2,214],"136":[2,214],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"8":267,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,85],"4":[2,85],"29":[2,85],"30":[2,85],"46":[2,85],"52":[2,85],"60":[2,85],"64":[2,85],"74":[2,85],"75":[2,85],"76":[2,85],"77":[2,85],"80":[2,85],"81":[2,85],"82":[2,85],"83":[2,85],"86":[2,85],"88":[2,85],"94":[2,85],"95":[2,85],"96":[2,85],"101":[2,85],"110":[2,85],"112":[2,85],"113":[2,85],"114":[2,85],"118":[2,85],"124":[2,85],"125":[2,85],"126":[2,85],"135":[2,85],"136":[2,85],"138":[2,85],"139":[2,85],"140":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"148":[2,85],"149":[2,85],"150":[2,85]},{"1":[2,86],"4":[2,86],"29":[2,86],"30":[2,86],"46":[2,86],"52":[2,86],"60":[2,86],"64":[2,86],"74":[2,86],"75":[2,86],"76":[2,86],"77":[2,86],"80":[2,86],"81":[2,86],"82":[2,86],"83":[2,86],"86":[2,86],"88":[2,86],"94":[2,86],"95":[2,86],"96":[2,86],"101":[2,86],"110":[2,86],"112":[2,86],"113":[2,86],"114":[2,86],"118":[2,86],"124":[2,86],"125":[2,86],"126":[2,86],"135":[2,86],"136":[2,86],"138":[2,86],"139":[2,86],"140":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"148":[2,86],"149":[2,86],"150":[2,86]},{"1":[2,88],"4":[2,88],"29":[2,88],"30":[2,88],"46":[2,88],"52":[2,88],"60":[2,88],"64":[2,88],"74":[2,88],"75":[2,88],"76":[2,88],"77":[2,88],"80":[2,88],"81":[2,88],"82":[2,88],"83":[2,88],"86":[2,88],"88":[2,88],"94":[2,88],"95":[2,88],"96":[2,88],"101":[2,88],"110":[2,88],"112":[2,88],"113":[2,88],"114":[2,88],"118":[2,88],"124":[2,88],"125":[2,88],"126":[2,88],"135":[2,88],"136":[2,88],"138":[2,88],"139":[2,88],"140":[2,88],"141":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88],"148":[2,88],"149":[2,88],"150":[2,88]},{"52":[1,90],"64":[1,215],"81":[1,268],"99":269,"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"8":270,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"64":[1,271]},{"1":[2,92],"4":[2,92],"29":[2,92],"30":[2,92],"46":[2,92],"52":[2,92],"60":[2,92],"64":[2,92],"74":[2,92],"75":[2,92],"76":[2,92],"77":[2,92],"80":[2,92],"81":[2,92],"82":[2,92],"83":[2,92],"86":[2,92],"88":[2,92],"94":[2,92],"95":[2,92],"96":[2,92],"101":[2,92],"110":[2,92],"112":[2,92],"113":[2,92],"114":[2,92],"118":[2,92],"124":[2,92],"125":[2,92],"126":[2,92],"135":[2,92],"136":[2,92],"138":[2,92],"139":[2,92],"140":[2,92],"141":[2,92],"142":[2,92],"143":[2,92],"144":[2,92],"145":[2,92],"146":[2,92],"147":[2,92],"148":[2,92],"149":[2,92],"150":[2,92]},{"8":272,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,93],"4":[2,93],"29":[2,93],"30":[2,93],"46":[2,93],"52":[2,93],"60":[2,93],"64":[2,93],"74":[2,93],"75":[2,93],"76":[2,93],"77":[2,93],"80":[2,93],"81":[2,93],"82":[2,93],"83":[2,93],"86":[2,93],"88":[2,93],"94":[2,93],"95":[2,93],"96":[2,93],"101":[2,93],"110":[2,93],"112":[2,93],"113":[2,93],"114":[2,93],"118":[2,93],"124":[2,93],"125":[2,93],"126":[2,93],"135":[2,93],"136":[2,93],"138":[2,93],"139":[2,93],"140":[2,93],"141":[2,93],"142":[2,93],"143":[2,93],"144":[2,93],"145":[2,93],"146":[2,93],"147":[2,93],"148":[2,93],"149":[2,93],"150":[2,93]},{"1":[2,117],"4":[2,117],"29":[2,117],"30":[2,117],"52":[2,117],"60":[2,117],"64":[2,117],"74":[2,117],"75":[2,117],"76":[2,117],"77":[2,117],"80":[2,117],"81":[2,117],"82":[2,117],"83":[2,117],"86":[2,117],"94":[2,117],"95":[2,117],"96":[2,117],"101":[2,117],"110":[2,117],"112":[2,117],"113":[2,117],"114":[2,117],"118":[2,117],"124":[2,117],"125":[2,117],"126":[2,117],"135":[2,117],"136":[2,117],"138":[2,117],"139":[2,117],"140":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"146":[2,117],"147":[2,117],"149":[2,117],"150":[2,117]},{"1":[2,44],"4":[2,44],"29":[2,44],"30":[2,44],"52":[1,90],"60":[2,44],"64":[2,44],"81":[2,44],"86":[2,44],"96":[2,44],"101":[2,44],"110":[2,44],"111":105,"112":[1,72],"113":[2,44],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"126":[2,44],"135":[2,44],"136":[2,44],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"8":273,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,122],"4":[2,122],"29":[2,122],"30":[2,122],"52":[2,122],"60":[2,122],"64":[2,122],"74":[2,122],"75":[2,122],"76":[2,122],"77":[2,122],"80":[2,122],"81":[2,122],"82":[2,122],"83":[2,122],"86":[2,122],"94":[2,122],"95":[2,122],"96":[2,122],"101":[2,122],"110":[2,122],"112":[2,122],"113":[2,122],"114":[2,122],"118":[2,122],"124":[2,122],"125":[2,122],"126":[2,122],"135":[2,122],"136":[2,122],"138":[2,122],"139":[2,122],"140":[2,122],"141":[2,122],"142":[2,122],"143":[2,122],"144":[2,122],"145":[2,122],"146":[2,122],"147":[2,122],"149":[2,122],"150":[2,122]},{"4":[2,62],"29":[2,62],"59":274,"60":[1,252],"96":[2,62]},{"4":[2,140],"29":[2,140],"30":[2,140],"52":[1,90],"60":[2,140],"64":[1,275],"96":[2,140],"101":[2,140],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"56":276,"57":[1,68],"58":[1,69]},{"61":277,"62":[1,131],"63":[1,132]},{"64":[1,278]},{"55":[2,68],"60":[2,68],"64":[1,279]},{"8":280,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,192],"4":[2,192],"29":[2,192],"30":[2,192],"52":[2,192],"60":[2,192],"64":[2,192],"81":[2,192],"86":[2,192],"96":[2,192],"101":[2,192],"110":[2,192],"112":[2,192],"113":[2,192],"114":[2,192],"118":[2,192],"124":[2,192],"125":[2,192],"126":[2,192],"129":[2,192],"135":[2,192],"136":[2,192],"138":[2,192],"139":[2,192],"140":[2,192],"141":[2,192],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"149":[2,192],"150":[2,192]},{"1":[2,145],"4":[2,145],"29":[2,145],"30":[2,145],"52":[2,145],"60":[2,145],"64":[2,145],"81":[2,145],"86":[2,145],"96":[2,145],"101":[2,145],"106":[1,281],"110":[2,145],"112":[2,145],"113":[2,145],"114":[2,145],"118":[2,145],"124":[2,145],"125":[2,145],"126":[2,145],"135":[2,145],"136":[2,145],"138":[2,145],"139":[2,145],"140":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"146":[2,145],"147":[2,145],"149":[2,145],"150":[2,145]},{"4":[1,134],"6":282,"29":[1,6]},{"31":283,"32":[1,82]},{"128":284,"130":236,"131":[1,237]},{"30":[1,285],"129":[1,286],"130":287,"131":[1,237]},{"30":[2,185],"129":[2,185],"131":[2,185]},{"8":289,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"103":288,"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,115],"4":[2,115],"29":[2,115],"30":[2,115],"52":[2,115],"60":[2,115],"64":[2,115],"67":113,"74":[1,115],"75":[1,116],"76":[1,117],"77":[1,118],"78":119,"79":120,"80":[1,121],"81":[2,115],"82":[1,122],"83":[1,123],"86":[2,115],"91":111,"94":[1,114],"95":[2,120],"96":[2,115],"101":[2,115],"110":[2,115],"112":[2,115],"113":[2,115],"114":[2,115],"118":[2,115],"124":[2,115],"125":[2,115],"126":[2,115],"135":[2,115],"136":[2,115],"138":[2,115],"139":[2,115],"140":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"149":[2,115],"150":[2,115]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"52":[2,76],"60":[2,76],"64":[2,76],"74":[2,76],"75":[2,76],"76":[2,76],"77":[2,76],"80":[2,76],"81":[2,76],"82":[2,76],"83":[2,76],"86":[2,76],"94":[2,76],"95":[2,76],"96":[2,76],"101":[2,76],"110":[2,76],"112":[2,76],"113":[2,76],"114":[2,76],"118":[2,76],"124":[2,76],"125":[2,76],"126":[2,76],"135":[2,76],"136":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"149":[2,76],"150":[2,76]},{"15":290,"16":152,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":153,"48":78,"63":[1,67],"66":239,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"93":[1,34],"98":[1,66],"100":[1,65],"109":[1,64]},{"4":[2,111],"28":186,"30":[2,111],"31":183,"32":[1,82],"33":184,"34":[1,80],"35":[1,81],"47":245,"48":246,"51":[1,50],"63":[1,187],"84":[1,244],"89":291,"90":243},{"4":[1,293],"30":[1,292]},{"4":[2,112],"30":[2,112],"86":[2,112]},{"4":[2,111],"28":186,"31":183,"32":[1,82],"33":184,"34":[1,80],"35":[1,81],"47":245,"48":246,"51":[1,50],"63":[1,187],"84":[1,244],"86":[2,111],"89":294,"90":243},{"4":[2,108],"30":[2,108],"86":[2,108]},{"4":[2,48],"30":[2,48],"49":[1,295],"86":[2,48]},{"1":[2,106],"4":[2,106],"29":[1,296],"30":[2,106],"52":[2,106],"60":[2,106],"64":[2,106],"67":113,"74":[1,115],"75":[1,116],"76":[1,117],"77":[1,118],"78":119,"79":120,"80":[1,121],"81":[2,106],"82":[1,122],"83":[1,123],"86":[2,106],"91":111,"94":[1,114],"95":[2,120],"96":[2,106],"101":[2,106],"110":[2,106],"112":[2,106],"113":[2,106],"114":[2,106],"118":[2,106],"124":[2,106],"125":[2,106],"126":[2,106],"135":[2,106],"136":[2,106],"138":[2,106],"139":[2,106],"140":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"149":[2,106],"150":[2,106]},{"1":[2,150],"4":[2,150],"29":[2,150],"30":[2,150],"52":[2,150],"60":[2,150],"64":[2,150],"74":[2,150],"75":[2,150],"76":[2,150],"77":[2,150],"80":[2,150],"81":[2,150],"82":[2,150],"83":[2,150],"86":[2,150],"94":[2,150],"95":[2,150],"96":[2,150],"101":[2,150],"110":[2,150],"112":[2,150],"113":[2,150],"114":[2,150],"118":[2,150],"124":[2,150],"125":[2,150],"126":[2,150],"135":[2,150],"136":[2,150],"138":[2,150],"139":[2,150],"140":[2,150],"141":[2,150],"142":[2,150],"143":[2,150],"144":[2,150],"145":[2,150],"146":[2,150],"147":[2,150],"148":[2,150],"149":[2,150],"150":[2,150]},{"8":297,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"64":[1,298]},{"4":[1,300],"29":[1,301],"101":[1,299]},{"4":[2,63],"8":224,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[2,63],"30":[2,63],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"65":163,"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"96":[2,63],"98":[1,66],"100":[1,65],"101":[2,63],"102":302,"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[2,62],"29":[2,62],"30":[2,62],"59":303,"60":[1,252]},{"1":[2,189],"4":[2,189],"29":[2,189],"30":[2,189],"52":[2,189],"60":[2,189],"64":[2,189],"81":[2,189],"86":[2,189],"96":[2,189],"101":[2,189],"110":[2,189],"112":[2,189],"113":[2,189],"114":[2,189],"118":[2,189],"124":[2,189],"125":[2,189],"126":[2,189],"129":[2,189],"135":[2,189],"136":[2,189],"138":[2,189],"139":[2,189],"140":[2,189],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"149":[2,189],"150":[2,189]},{"1":[2,190],"4":[2,190],"29":[2,190],"30":[2,190],"52":[2,190],"60":[2,190],"64":[2,190],"81":[2,190],"86":[2,190],"96":[2,190],"101":[2,190],"110":[2,190],"112":[2,190],"113":[2,190],"114":[2,190],"118":[2,190],"124":[2,190],"125":[2,190],"126":[2,190],"129":[2,190],"135":[2,190],"136":[2,190],"138":[2,190],"139":[2,190],"140":[2,190],"141":[2,190],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"149":[2,190],"150":[2,190]},{"8":304,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":305,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"124":[2,168],"125":[2,168]},{"8":224,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,162],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"65":163,"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"97":160,"98":[1,66],"100":[1,65],"101":[1,159],"102":161,"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"31":175,"32":[1,82],"68":176,"69":177,"84":[1,79],"100":[1,259],"123":306},{"1":[2,174],"4":[2,174],"29":[2,174],"30":[2,174],"52":[1,90],"60":[2,174],"64":[2,174],"81":[2,174],"86":[2,174],"96":[2,174],"101":[2,174],"110":[2,174],"111":105,"112":[2,174],"113":[1,307],"114":[2,174],"117":106,"118":[2,174],"119":76,"124":[1,99],"125":[1,100],"126":[1,308],"135":[2,174],"136":[2,174],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,175],"4":[2,175],"29":[2,175],"30":[2,175],"52":[1,90],"60":[2,175],"64":[2,175],"81":[2,175],"86":[2,175],"96":[2,175],"101":[2,175],"110":[2,175],"111":105,"112":[2,175],"113":[1,309],"114":[2,175],"117":106,"118":[2,175],"119":76,"124":[1,99],"125":[1,100],"126":[2,175],"135":[2,175],"136":[2,175],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"4":[1,311],"29":[1,312],"86":[1,310]},{"4":[2,63],"28":186,"29":[2,63],"30":[2,63],"31":183,"32":[1,82],"33":184,"34":[1,80],"35":[1,81],"47":313,"48":185,"51":[1,50],"63":[1,187],"86":[2,63]},{"8":314,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,315],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":316,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,317],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"30":[1,318],"52":[1,90],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,91],"4":[2,91],"29":[2,91],"30":[2,91],"46":[2,91],"52":[2,91],"60":[2,91],"64":[2,91],"74":[2,91],"75":[2,91],"76":[2,91],"77":[2,91],"80":[2,91],"81":[2,91],"82":[2,91],"83":[2,91],"86":[2,91],"88":[2,91],"94":[2,91],"95":[2,91],"96":[2,91],"101":[2,91],"110":[2,91],"112":[2,91],"113":[2,91],"114":[2,91],"118":[2,91],"124":[2,91],"125":[2,91],"126":[2,91],"135":[2,91],"136":[2,91],"138":[2,91],"139":[2,91],"140":[2,91],"141":[2,91],"142":[2,91],"143":[2,91],"144":[2,91],"145":[2,91],"146":[2,91],"147":[2,91],"148":[2,91],"149":[2,91],"150":[2,91]},{"8":319,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"81":[1,320],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"52":[1,90],"81":[1,321],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"12":[2,126],"13":[2,126],"14":[2,126],"32":[2,126],"34":[2,126],"35":[2,126],"37":[2,126],"38":[2,126],"39":[2,126],"40":[2,126],"41":[2,126],"42":[2,126],"43":[2,126],"44":[2,126],"50":[2,126],"51":[2,126],"53":[2,126],"57":[2,126],"58":[2,126],"63":[2,126],"64":[1,322],"73":[2,126],"81":[2,126],"84":[2,126],"87":[2,126],"93":[2,126],"98":[2,126],"100":[2,126],"104":[2,126],"108":[2,126],"109":[2,126],"112":[2,126],"114":[2,126],"116":[2,126],"118":[2,126],"127":[2,126],"133":[2,126],"134":[2,126],"137":[2,126],"138":[2,126],"139":[2,126],"140":[2,126],"141":[2,126]},{"52":[1,90],"81":[1,268],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"30":[1,323],"52":[1,90],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"4":[1,300],"29":[1,301],"96":[1,324]},{"64":[1,325]},{"4":[1,134],"6":326,"29":[1,6]},{"55":[2,66],"60":[2,66]},{"64":[1,327]},{"64":[1,328]},{"4":[1,134],"6":329,"29":[1,6],"52":[1,90],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"4":[1,134],"6":330,"29":[1,6]},{"1":[2,146],"4":[2,146],"29":[2,146],"30":[2,146],"52":[2,146],"60":[2,146],"64":[2,146],"81":[2,146],"86":[2,146],"96":[2,146],"101":[2,146],"110":[2,146],"112":[2,146],"113":[2,146],"114":[2,146],"118":[2,146],"124":[2,146],"125":[2,146],"126":[2,146],"135":[2,146],"136":[2,146],"138":[2,146],"139":[2,146],"140":[2,146],"141":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"146":[2,146],"147":[2,146],"149":[2,146],"150":[2,146]},{"4":[1,134],"6":331,"29":[1,6]},{"30":[1,332],"129":[1,333],"130":287,"131":[1,237]},{"1":[2,183],"4":[2,183],"29":[2,183],"30":[2,183],"52":[2,183],"60":[2,183],"64":[2,183],"81":[2,183],"86":[2,183],"96":[2,183],"101":[2,183],"110":[2,183],"112":[2,183],"113":[2,183],"114":[2,183],"118":[2,183],"124":[2,183],"125":[2,183],"126":[2,183],"135":[2,183],"136":[2,183],"138":[2,183],"139":[2,183],"140":[2,183],"141":[2,183],"142":[2,183],"143":[2,183],"144":[2,183],"145":[2,183],"146":[2,183],"147":[2,183],"149":[2,183],"150":[2,183]},{"4":[1,134],"6":334,"29":[1,6]},{"30":[2,186],"129":[2,186],"131":[2,186]},{"4":[1,134],"6":335,"29":[1,6],"60":[1,336]},{"4":[2,142],"29":[2,142],"52":[1,90],"60":[2,142],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,101],"4":[2,101],"29":[1,337],"30":[2,101],"52":[2,101],"60":[2,101],"64":[2,101],"67":113,"74":[1,115],"75":[1,116],"76":[1,117],"77":[1,118],"78":119,"79":120,"80":[1,121],"81":[2,101],"82":[1,122],"83":[1,123],"86":[2,101],"91":111,"94":[1,114],"95":[2,120],"96":[2,101],"101":[2,101],"110":[2,101],"112":[2,101],"113":[2,101],"114":[2,101],"118":[2,101],"124":[2,101],"125":[2,101],"126":[2,101],"135":[2,101],"136":[2,101],"138":[2,101],"139":[2,101],"140":[2,101],"141":[2,101],"142":[2,101],"143":[2,101],"144":[2,101],"145":[2,101],"146":[2,101],"147":[2,101],"149":[2,101],"150":[2,101]},{"4":[1,293],"30":[1,338]},{"1":[2,104],"4":[2,104],"29":[2,104],"30":[2,104],"52":[2,104],"60":[2,104],"64":[2,104],"81":[2,104],"86":[2,104],"96":[2,104],"101":[2,104],"110":[2,104],"112":[2,104],"113":[2,104],"114":[2,104],"118":[2,104],"124":[2,104],"125":[2,104],"126":[2,104],"135":[2,104],"136":[2,104],"138":[2,104],"139":[2,104],"140":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"149":[2,104],"150":[2,104]},{"28":186,"31":183,"32":[1,82],"33":184,"34":[1,80],"35":[1,81],"47":245,"48":246,"51":[1,50],"63":[1,187],"90":339},{"4":[1,293],"86":[1,340]},{"8":341,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,342],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[2,111],"28":186,"30":[2,111],"31":183,"32":[1,82],"33":184,"34":[1,80],"35":[1,81],"47":245,"48":246,"51":[1,50],"63":[1,187],"84":[1,244],"89":343,"90":243},{"52":[1,90],"101":[1,344],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"12":[2,126],"13":[2,126],"14":[2,126],"32":[2,126],"34":[2,126],"35":[2,126],"37":[2,126],"38":[2,126],"39":[2,126],"40":[2,126],"41":[2,126],"42":[2,126],"43":[2,126],"44":[2,126],"50":[2,126],"51":[2,126],"53":[2,126],"57":[2,126],"58":[2,126],"63":[2,126],"64":[1,345],"73":[2,126],"84":[2,126],"87":[2,126],"93":[2,126],"98":[2,126],"100":[2,126],"104":[2,126],"108":[2,126],"109":[2,126],"112":[2,126],"114":[2,126],"116":[2,126],"118":[2,126],"127":[2,126],"133":[2,126],"134":[2,126],"137":[2,126],"138":[2,126],"139":[2,126],"140":[2,126],"141":[2,126]},{"1":[2,134],"4":[2,134],"29":[2,134],"30":[2,134],"46":[2,134],"52":[2,134],"60":[2,134],"64":[2,134],"74":[2,134],"75":[2,134],"76":[2,134],"77":[2,134],"80":[2,134],"81":[2,134],"82":[2,134],"83":[2,134],"86":[2,134],"94":[2,134],"95":[2,134],"96":[2,134],"101":[2,134],"110":[2,134],"112":[2,134],"113":[2,134],"114":[2,134],"118":[2,134],"124":[2,134],"125":[2,134],"126":[2,134],"135":[2,134],"136":[2,134],"138":[2,134],"139":[2,134],"140":[2,134],"141":[2,134],"142":[2,134],"143":[2,134],"144":[2,134],"145":[2,134],"146":[2,134],"147":[2,134],"148":[2,134],"149":[2,134],"150":[2,134]},{"8":224,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"65":163,"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"102":346,"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":224,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,162],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"65":163,"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"97":347,"98":[1,66],"100":[1,65],"102":161,"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[2,136],"29":[2,136],"30":[2,136],"60":[2,136],"96":[2,136],"101":[2,136]},{"4":[1,300],"29":[1,301],"30":[1,348]},{"1":[2,153],"4":[2,153],"29":[2,153],"30":[2,153],"52":[1,90],"60":[2,153],"64":[2,153],"81":[2,153],"86":[2,153],"96":[2,153],"101":[2,153],"110":[2,153],"111":105,"112":[1,72],"113":[2,153],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"126":[2,153],"135":[2,153],"136":[2,153],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,155],"4":[2,155],"29":[2,155],"30":[2,155],"52":[1,90],"60":[2,155],"64":[2,155],"81":[2,155],"86":[2,155],"96":[2,155],"101":[2,155],"110":[2,155],"111":105,"112":[1,72],"113":[2,155],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"126":[2,155],"135":[2,155],"136":[2,155],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"124":[2,173],"125":[2,173]},{"8":349,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":350,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":351,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,94],"4":[2,94],"29":[2,94],"30":[2,94],"46":[2,94],"52":[2,94],"60":[2,94],"64":[2,94],"74":[2,94],"75":[2,94],"76":[2,94],"77":[2,94],"80":[2,94],"81":[2,94],"82":[2,94],"83":[2,94],"86":[2,94],"94":[2,94],"95":[2,94],"96":[2,94],"101":[2,94],"110":[2,94],"112":[2,94],"113":[2,94],"114":[2,94],"118":[2,94],"124":[2,94],"125":[2,94],"126":[2,94],"135":[2,94],"136":[2,94],"138":[2,94],"139":[2,94],"140":[2,94],"141":[2,94],"142":[2,94],"143":[2,94],"144":[2,94],"145":[2,94],"146":[2,94],"147":[2,94],"148":[2,94],"149":[2,94],"150":[2,94]},{"28":186,"31":183,"32":[1,82],"33":184,"34":[1,80],"35":[1,81],"47":352,"48":185,"51":[1,50],"63":[1,187]},{"4":[2,95],"28":186,"29":[2,95],"30":[2,95],"31":183,"32":[1,82],"33":184,"34":[1,80],"35":[1,81],"47":182,"48":185,"51":[1,50],"60":[2,95],"63":[1,187],"85":353},{"4":[2,97],"29":[2,97],"30":[2,97],"60":[2,97],"86":[2,97]},{"4":[2,49],"29":[2,49],"30":[2,49],"52":[1,90],"60":[2,49],"86":[2,49],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"8":354,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[2,50],"29":[2,50],"30":[2,50],"52":[1,90],"60":[2,50],"86":[2,50],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"8":355,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,215],"4":[2,215],"29":[2,215],"30":[2,215],"52":[2,215],"60":[2,215],"64":[2,215],"81":[2,215],"86":[2,215],"96":[2,215],"101":[2,215],"110":[2,215],"112":[2,215],"113":[2,215],"114":[2,215],"118":[2,215],"124":[2,215],"125":[2,215],"126":[2,215],"135":[2,215],"136":[2,215],"138":[2,215],"139":[2,215],"140":[2,215],"141":[2,215],"142":[2,215],"143":[2,215],"144":[2,215],"145":[2,215],"146":[2,215],"147":[2,215],"149":[2,215],"150":[2,215]},{"52":[1,90],"81":[1,356],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,131],"4":[2,131],"29":[2,131],"30":[2,131],"46":[2,131],"52":[2,131],"60":[2,131],"64":[2,131],"74":[2,131],"75":[2,131],"76":[2,131],"77":[2,131],"80":[2,131],"81":[2,131],"82":[2,131],"83":[2,131],"86":[2,131],"88":[2,131],"94":[2,131],"95":[2,131],"96":[2,131],"101":[2,131],"110":[2,131],"112":[2,131],"113":[2,131],"114":[2,131],"118":[2,131],"124":[2,131],"125":[2,131],"126":[2,131],"135":[2,131],"136":[2,131],"138":[2,131],"139":[2,131],"140":[2,131],"141":[2,131],"142":[2,131],"143":[2,131],"144":[2,131],"145":[2,131],"146":[2,131],"147":[2,131],"148":[2,131],"149":[2,131],"150":[2,131]},{"1":[2,132],"4":[2,132],"29":[2,132],"30":[2,132],"46":[2,132],"52":[2,132],"60":[2,132],"64":[2,132],"74":[2,132],"75":[2,132],"76":[2,132],"77":[2,132],"80":[2,132],"81":[2,132],"82":[2,132],"83":[2,132],"86":[2,132],"88":[2,132],"94":[2,132],"95":[2,132],"96":[2,132],"101":[2,132],"110":[2,132],"112":[2,132],"113":[2,132],"114":[2,132],"118":[2,132],"124":[2,132],"125":[2,132],"126":[2,132],"135":[2,132],"136":[2,132],"138":[2,132],"139":[2,132],"140":[2,132],"141":[2,132],"142":[2,132],"143":[2,132],"144":[2,132],"145":[2,132],"146":[2,132],"147":[2,132],"148":[2,132],"149":[2,132],"150":[2,132]},{"12":[2,127],"13":[2,127],"14":[2,127],"32":[2,127],"34":[2,127],"35":[2,127],"37":[2,127],"38":[2,127],"39":[2,127],"40":[2,127],"41":[2,127],"42":[2,127],"43":[2,127],"44":[2,127],"50":[2,127],"51":[2,127],"53":[2,127],"57":[2,127],"58":[2,127],"63":[2,127],"73":[2,127],"81":[2,127],"84":[2,127],"87":[2,127],"93":[2,127],"98":[2,127],"100":[2,127],"104":[2,127],"108":[2,127],"109":[2,127],"112":[2,127],"114":[2,127],"116":[2,127],"118":[2,127],"127":[2,127],"133":[2,127],"134":[2,127],"137":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127]},{"1":[2,45],"4":[2,45],"29":[2,45],"30":[2,45],"52":[2,45],"60":[2,45],"64":[2,45],"81":[2,45],"86":[2,45],"96":[2,45],"101":[2,45],"110":[2,45],"112":[2,45],"113":[2,45],"114":[2,45],"118":[2,45],"124":[2,45],"125":[2,45],"126":[2,45],"135":[2,45],"136":[2,45],"138":[2,45],"139":[2,45],"140":[2,45],"141":[2,45],"142":[2,45],"143":[2,45],"144":[2,45],"145":[2,45],"146":[2,45],"147":[2,45],"149":[2,45],"150":[2,45]},{"1":[2,123],"4":[2,123],"29":[2,123],"30":[2,123],"52":[2,123],"60":[2,123],"64":[2,123],"74":[2,123],"75":[2,123],"76":[2,123],"77":[2,123],"80":[2,123],"81":[2,123],"82":[2,123],"83":[2,123],"86":[2,123],"94":[2,123],"95":[2,123],"96":[2,123],"101":[2,123],"110":[2,123],"112":[2,123],"113":[2,123],"114":[2,123],"118":[2,123],"124":[2,123],"125":[2,123],"126":[2,123],"135":[2,123],"136":[2,123],"138":[2,123],"139":[2,123],"140":[2,123],"141":[2,123],"142":[2,123],"143":[2,123],"144":[2,123],"145":[2,123],"146":[2,123],"147":[2,123],"149":[2,123],"150":[2,123]},{"64":[1,357]},{"1":[2,58],"4":[2,58],"29":[2,58],"30":[2,58],"52":[2,58],"60":[2,58],"64":[2,58],"81":[2,58],"86":[2,58],"96":[2,58],"101":[2,58],"110":[2,58],"112":[2,58],"113":[2,58],"114":[2,58],"118":[2,58],"124":[2,58],"125":[2,58],"126":[2,58],"135":[2,58],"136":[2,58],"138":[2,58],"139":[2,58],"140":[2,58],"141":[2,58],"142":[2,58],"143":[2,58],"144":[2,58],"145":[2,58],"146":[2,58],"147":[2,58],"149":[2,58],"150":[2,58]},{"55":[2,69],"60":[2,69]},{"64":[1,358]},{"1":[2,191],"4":[2,191],"29":[2,191],"30":[2,191],"52":[2,191],"60":[2,191],"64":[2,191],"81":[2,191],"86":[2,191],"96":[2,191],"101":[2,191],"110":[2,191],"112":[2,191],"113":[2,191],"114":[2,191],"118":[2,191],"124":[2,191],"125":[2,191],"126":[2,191],"129":[2,191],"135":[2,191],"136":[2,191],"138":[2,191],"139":[2,191],"140":[2,191],"141":[2,191],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"149":[2,191],"150":[2,191]},{"1":[2,147],"4":[2,147],"29":[2,147],"30":[2,147],"52":[2,147],"60":[2,147],"64":[2,147],"81":[2,147],"86":[2,147],"96":[2,147],"101":[2,147],"110":[2,147],"112":[2,147],"113":[2,147],"114":[2,147],"118":[2,147],"124":[2,147],"125":[2,147],"126":[2,147],"135":[2,147],"136":[2,147],"138":[2,147],"139":[2,147],"140":[2,147],"141":[2,147],"142":[2,147],"143":[2,147],"144":[2,147],"145":[2,147],"146":[2,147],"147":[2,147],"149":[2,147],"150":[2,147]},{"1":[2,148],"4":[2,148],"29":[2,148],"30":[2,148],"52":[2,148],"60":[2,148],"64":[2,148],"81":[2,148],"86":[2,148],"96":[2,148],"101":[2,148],"106":[2,148],"110":[2,148],"112":[2,148],"113":[2,148],"114":[2,148],"118":[2,148],"124":[2,148],"125":[2,148],"126":[2,148],"135":[2,148],"136":[2,148],"138":[2,148],"139":[2,148],"140":[2,148],"141":[2,148],"142":[2,148],"143":[2,148],"144":[2,148],"145":[2,148],"146":[2,148],"147":[2,148],"149":[2,148],"150":[2,148]},{"1":[2,181],"4":[2,181],"29":[2,181],"30":[2,181],"52":[2,181],"60":[2,181],"64":[2,181],"81":[2,181],"86":[2,181],"96":[2,181],"101":[2,181],"110":[2,181],"112":[2,181],"113":[2,181],"114":[2,181],"118":[2,181],"124":[2,181],"125":[2,181],"126":[2,181],"135":[2,181],"136":[2,181],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"149":[2,181],"150":[2,181]},{"4":[1,134],"6":359,"29":[1,6]},{"30":[1,360]},{"4":[1,361],"30":[2,187],"129":[2,187],"131":[2,187]},{"8":362,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[2,111],"28":186,"30":[2,111],"31":183,"32":[1,82],"33":184,"34":[1,80],"35":[1,81],"47":245,"48":246,"51":[1,50],"63":[1,187],"84":[1,244],"89":363,"90":243},{"1":[2,102],"4":[2,102],"29":[2,102],"30":[2,102],"52":[2,102],"60":[2,102],"64":[2,102],"81":[2,102],"86":[2,102],"96":[2,102],"101":[2,102],"110":[2,102],"112":[2,102],"113":[2,102],"114":[2,102],"118":[2,102],"124":[2,102],"125":[2,102],"126":[2,102],"135":[2,102],"136":[2,102],"138":[2,102],"139":[2,102],"140":[2,102],"141":[2,102],"142":[2,102],"143":[2,102],"144":[2,102],"145":[2,102],"146":[2,102],"147":[2,102],"149":[2,102],"150":[2,102]},{"4":[2,113],"30":[2,113],"86":[2,113]},{"4":[2,114],"30":[2,114],"86":[2,114]},{"4":[2,109],"30":[2,109],"52":[1,90],"86":[2,109],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"8":364,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[1,293],"30":[1,365]},{"1":[2,129],"4":[2,129],"29":[2,129],"30":[2,129],"52":[2,129],"60":[2,129],"64":[2,129],"74":[2,129],"75":[2,129],"76":[2,129],"77":[2,129],"80":[2,129],"81":[2,129],"82":[2,129],"83":[2,129],"86":[2,129],"94":[2,129],"95":[2,129],"96":[2,129],"101":[2,129],"110":[2,129],"112":[2,129],"113":[2,129],"114":[2,129],"118":[2,129],"124":[2,129],"125":[2,129],"126":[2,129],"135":[2,129],"136":[2,129],"138":[2,129],"139":[2,129],"140":[2,129],"141":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129],"149":[2,129],"150":[2,129]},{"4":[2,71],"12":[2,127],"13":[2,127],"14":[2,127],"29":[2,71],"32":[2,127],"34":[2,127],"35":[2,127],"37":[2,127],"38":[2,127],"39":[2,127],"40":[2,127],"41":[2,127],"42":[2,127],"43":[2,127],"44":[2,127],"50":[2,127],"51":[2,127],"53":[2,127],"57":[2,127],"58":[2,127],"60":[2,71],"63":[2,127],"73":[2,127],"84":[2,127],"87":[2,127],"93":[2,127],"98":[2,127],"100":[2,127],"101":[2,71],"104":[2,127],"108":[2,127],"109":[2,127],"112":[2,127],"114":[2,127],"116":[2,127],"118":[2,127],"127":[2,127],"133":[2,127],"134":[2,127],"137":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127]},{"4":[2,137],"29":[2,137],"30":[2,137],"60":[2,137],"96":[2,137],"101":[2,137]},{"4":[2,62],"29":[2,62],"30":[2,62],"59":366,"60":[1,252]},{"4":[2,138],"29":[2,138],"30":[2,138],"60":[2,138],"96":[2,138],"101":[2,138]},{"1":[2,176],"4":[2,176],"29":[2,176],"30":[2,176],"52":[1,90],"60":[2,176],"64":[2,176],"81":[2,176],"86":[2,176],"96":[2,176],"101":[2,176],"110":[2,176],"111":105,"112":[2,176],"113":[2,176],"114":[2,176],"117":106,"118":[2,176],"119":76,"124":[1,99],"125":[1,100],"126":[1,367],"135":[2,176],"136":[2,176],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,178],"4":[2,178],"29":[2,178],"30":[2,178],"52":[1,90],"60":[2,178],"64":[2,178],"81":[2,178],"86":[2,178],"96":[2,178],"101":[2,178],"110":[2,178],"111":105,"112":[2,178],"113":[1,368],"114":[2,178],"117":106,"118":[2,178],"119":76,"124":[1,99],"125":[1,100],"126":[2,178],"135":[2,178],"136":[2,178],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,177],"4":[2,177],"29":[2,177],"30":[2,177],"52":[1,90],"60":[2,177],"64":[2,177],"81":[2,177],"86":[2,177],"96":[2,177],"101":[2,177],"110":[2,177],"111":105,"112":[2,177],"113":[2,177],"114":[2,177],"117":106,"118":[2,177],"119":76,"124":[1,99],"125":[1,100],"126":[2,177],"135":[2,177],"136":[2,177],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"4":[2,98],"29":[2,98],"30":[2,98],"60":[2,98],"86":[2,98]},{"4":[2,62],"29":[2,62],"30":[2,62],"59":369,"60":[1,264]},{"30":[1,370],"52":[1,90],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"30":[1,371],"52":[1,90],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,130],"4":[2,130],"29":[2,130],"30":[2,130],"46":[2,130],"52":[2,130],"60":[2,130],"64":[2,130],"74":[2,130],"75":[2,130],"76":[2,130],"77":[2,130],"80":[2,130],"81":[2,130],"82":[2,130],"83":[2,130],"86":[2,130],"88":[2,130],"94":[2,130],"95":[2,130],"96":[2,130],"101":[2,130],"110":[2,130],"112":[2,130],"113":[2,130],"114":[2,130],"118":[2,130],"124":[2,130],"125":[2,130],"126":[2,130],"135":[2,130],"136":[2,130],"138":[2,130],"139":[2,130],"140":[2,130],"141":[2,130],"142":[2,130],"143":[2,130],"144":[2,130],"145":[2,130],"146":[2,130],"147":[2,130],"148":[2,130],"149":[2,130],"150":[2,130]},{"4":[2,71],"29":[2,71],"30":[2,71],"60":[2,71],"96":[2,71],"101":[2,71]},{"55":[2,70],"60":[2,70]},{"30":[1,372]},{"1":[2,184],"4":[2,184],"29":[2,184],"30":[2,184],"52":[2,184],"60":[2,184],"64":[2,184],"81":[2,184],"86":[2,184],"96":[2,184],"101":[2,184],"110":[2,184],"112":[2,184],"113":[2,184],"114":[2,184],"118":[2,184],"124":[2,184],"125":[2,184],"126":[2,184],"135":[2,184],"136":[2,184],"138":[2,184],"139":[2,184],"140":[2,184],"141":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"147":[2,184],"149":[2,184],"150":[2,184]},{"30":[2,188],"129":[2,188],"131":[2,188]},{"4":[2,143],"29":[2,143],"52":[1,90],"60":[2,143],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"4":[1,293],"30":[1,373]},{"30":[1,374],"52":[1,90],"111":105,"112":[1,72],"114":[1,73],"117":106,"118":[1,75],"119":76,"124":[1,99],"125":[1,100],"135":[1,103],"136":[1,104],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,107],"4":[2,107],"29":[2,107],"30":[2,107],"52":[2,107],"60":[2,107],"64":[2,107],"81":[2,107],"86":[2,107],"96":[2,107],"101":[2,107],"110":[2,107],"112":[2,107],"113":[2,107],"114":[2,107],"118":[2,107],"124":[2,107],"125":[2,107],"126":[2,107],"135":[2,107],"136":[2,107],"138":[2,107],"139":[2,107],"140":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"149":[2,107],"150":[2,107]},{"4":[1,300],"29":[1,301],"30":[1,375]},{"8":376,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":377,"9":136,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[1,311],"29":[1,312],"30":[1,378]},{"4":[2,51],"29":[2,51],"30":[2,51],"60":[2,51],"86":[2,51]},{"4":[2,52],"29":[2,52],"30":[2,52],"60":[2,52],"86":[2,52]},{"1":[2,182],"4":[2,182],"29":[2,182],"30":[2,182],"52":[2,182],"60":[2,182],"64":[2,182],"81":[2,182],"86":[2,182],"96":[2,182],"101":[2,182],"110":[2,182],"112":[2,182],"113":[2,182],"114":[2,182],"118":[2,182],"124":[2,182],"125":[2,182],"126":[2,182],"135":[2,182],"136":[2,182],"138":[2,182],"139":[2,182],"140":[2,182],"141":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"146":[2,182],"147":[2,182],"149":[2,182],"150":[2,182]},{"1":[2,103],"4":[2,103],"29":[2,103],"30":[2,103],"52":[2,103],"60":[2,103],"64":[2,103],"81":[2,103],"86":[2,103],"96":[2,103],"101":[2,103],"110":[2,103],"112":[2,103],"113":[2,103],"114":[2,103],"118":[2,103],"124":[2,103],"125":[2,103],"126":[2,103],"135":[2,103],"136":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"146":[2,103],"147":[2,103],"149":[2,103],"150":[2,103]},{"4":[2,110],"30":[2,110],"86":[2,110]},{"4":[2,139],"29":[2,139],"30":[2,139],"60":[2,139],"96":[2,139],"101":[2,139]},{"1":[2,179],"4":[2,179],"29":[2,179],"30":[2,179],"52":[1,90],"60":[2,179],"64":[2,179],"81":[2,179],"86":[2,179],"96":[2,179],"101":[2,179],"110":[2,179],"111":105,"112":[2,179],"113":[2,179],"114":[2,179],"117":106,"118":[2,179],"119":76,"124":[1,99],"125":[1,100],"126":[2,179],"135":[2,179],"136":[2,179],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"1":[2,180],"4":[2,180],"29":[2,180],"30":[2,180],"52":[1,90],"60":[2,180],"64":[2,180],"81":[2,180],"86":[2,180],"96":[2,180],"101":[2,180],"110":[2,180],"111":105,"112":[2,180],"113":[2,180],"114":[2,180],"117":106,"118":[2,180],"119":76,"124":[1,99],"125":[1,100],"126":[2,180],"135":[2,180],"136":[2,180],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,101],"150":[1,102]},{"4":[2,99],"29":[2,99],"30":[2,99],"60":[2,99],"86":[2,99]}], +-defaultActions: {"85":[2,4],"114":[2,121]}, ++table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,6],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[3]},{"1":[2,2],"28":83,"51":[1,50]},{"1":[2,3],"4":[1,84]},{"4":[1,85]},{"1":[2,5],"4":[2,5],"30":[2,5]},{"5":86,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"30":[1,87],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,8],"4":[2,8],"30":[2,8],"52":[1,90],"110":[2,8],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,9],"4":[2,9],"30":[2,9],"110":[2,9],"111":106,"112":[1,72],"114":[1,73],"117":107,"118":[1,75],"119":76,"135":[1,104],"136":[1,105]},{"1":[2,15],"4":[2,15],"29":[2,15],"30":[2,15],"52":[2,15],"60":[2,15],"64":[2,15],"67":110,"74":[1,112],"75":[1,113],"76":[1,114],"77":[1,115],"78":116,"79":117,"80":[1,118],"81":[2,15],"82":[1,119],"83":[1,120],"86":[2,15],"91":108,"94":[1,111],"95":[2,120],"96":[2,15],"101":[2,15],"110":[2,15],"112":[2,15],"113":[2,15],"114":[2,15],"118":[2,15],"126":[2,15],"135":[2,15],"136":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[1,109],"149":[2,15]},{"1":[2,16],"4":[2,16],"29":[2,16],"30":[2,16],"52":[2,16],"60":[2,16],"64":[2,16],"67":122,"74":[1,112],"75":[1,113],"76":[1,114],"77":[1,115],"78":116,"79":117,"80":[1,118],"81":[2,16],"82":[1,119],"83":[1,120],"86":[2,16],"91":121,"94":[1,111],"95":[2,120],"96":[2,16],"101":[2,16],"110":[2,16],"112":[2,16],"113":[2,16],"114":[2,16],"118":[2,16],"126":[2,16],"135":[2,16],"136":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"149":[2,16]},{"1":[2,17],"4":[2,17],"29":[2,17],"30":[2,17],"52":[2,17],"60":[2,17],"64":[2,17],"81":[2,17],"86":[2,17],"96":[2,17],"101":[2,17],"110":[2,17],"112":[2,17],"113":[2,17],"114":[2,17],"118":[2,17],"126":[2,17],"135":[2,17],"136":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"149":[2,17]},{"1":[2,18],"4":[2,18],"29":[2,18],"30":[2,18],"52":[2,18],"60":[2,18],"64":[2,18],"81":[2,18],"86":[2,18],"96":[2,18],"101":[2,18],"110":[2,18],"112":[2,18],"113":[2,18],"114":[2,18],"118":[2,18],"126":[2,18],"135":[2,18],"136":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"149":[2,18]},{"1":[2,19],"4":[2,19],"29":[2,19],"30":[2,19],"52":[2,19],"60":[2,19],"64":[2,19],"81":[2,19],"86":[2,19],"96":[2,19],"101":[2,19],"110":[2,19],"112":[2,19],"113":[2,19],"114":[2,19],"118":[2,19],"126":[2,19],"135":[2,19],"136":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"149":[2,19]},{"1":[2,20],"4":[2,20],"29":[2,20],"30":[2,20],"52":[2,20],"60":[2,20],"64":[2,20],"81":[2,20],"86":[2,20],"96":[2,20],"101":[2,20],"110":[2,20],"112":[2,20],"113":[2,20],"114":[2,20],"118":[2,20],"126":[2,20],"135":[2,20],"136":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"149":[2,20]},{"1":[2,21],"4":[2,21],"29":[2,21],"30":[2,21],"52":[2,21],"60":[2,21],"64":[2,21],"81":[2,21],"86":[2,21],"96":[2,21],"101":[2,21],"110":[2,21],"112":[2,21],"113":[2,21],"114":[2,21],"118":[2,21],"126":[2,21],"135":[2,21],"136":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"149":[2,21]},{"1":[2,22],"4":[2,22],"29":[2,22],"30":[2,22],"52":[2,22],"60":[2,22],"64":[2,22],"81":[2,22],"86":[2,22],"96":[2,22],"101":[2,22],"110":[2,22],"112":[2,22],"113":[2,22],"114":[2,22],"118":[2,22],"126":[2,22],"135":[2,22],"136":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"149":[2,22]},{"1":[2,23],"4":[2,23],"29":[2,23],"30":[2,23],"52":[2,23],"60":[2,23],"64":[2,23],"81":[2,23],"86":[2,23],"96":[2,23],"101":[2,23],"110":[2,23],"112":[2,23],"113":[2,23],"114":[2,23],"118":[2,23],"126":[2,23],"135":[2,23],"136":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"149":[2,23]},{"1":[2,24],"4":[2,24],"29":[2,24],"30":[2,24],"52":[2,24],"60":[2,24],"64":[2,24],"81":[2,24],"86":[2,24],"96":[2,24],"101":[2,24],"110":[2,24],"112":[2,24],"113":[2,24],"114":[2,24],"118":[2,24],"126":[2,24],"135":[2,24],"136":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"149":[2,24]},{"1":[2,25],"4":[2,25],"29":[2,25],"30":[2,25],"52":[2,25],"60":[2,25],"64":[2,25],"81":[2,25],"86":[2,25],"96":[2,25],"101":[2,25],"110":[2,25],"112":[2,25],"113":[2,25],"114":[2,25],"118":[2,25],"126":[2,25],"135":[2,25],"136":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"149":[2,25]},{"1":[2,26],"4":[2,26],"29":[2,26],"30":[2,26],"52":[2,26],"60":[2,26],"64":[2,26],"81":[2,26],"86":[2,26],"96":[2,26],"101":[2,26],"110":[2,26],"112":[2,26],"113":[2,26],"114":[2,26],"118":[2,26],"126":[2,26],"135":[2,26],"136":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"149":[2,26]},{"1":[2,27],"4":[2,27],"29":[2,27],"30":[2,27],"52":[2,27],"60":[2,27],"64":[2,27],"81":[2,27],"86":[2,27],"96":[2,27],"101":[2,27],"110":[2,27],"112":[2,27],"113":[2,27],"114":[2,27],"118":[2,27],"126":[2,27],"135":[2,27],"136":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"149":[2,27]},{"1":[2,28],"4":[2,28],"29":[2,28],"30":[2,28],"52":[2,28],"60":[2,28],"64":[2,28],"81":[2,28],"86":[2,28],"96":[2,28],"101":[2,28],"110":[2,28],"112":[2,28],"113":[2,28],"114":[2,28],"118":[2,28],"126":[2,28],"135":[2,28],"136":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"149":[2,28]},{"1":[2,10],"4":[2,10],"30":[2,10],"110":[2,10],"112":[2,10],"114":[2,10],"118":[2,10],"135":[2,10],"136":[2,10]},{"1":[2,11],"4":[2,11],"30":[2,11],"110":[2,11],"112":[2,11],"114":[2,11],"118":[2,11],"135":[2,11],"136":[2,11]},{"1":[2,12],"4":[2,12],"30":[2,12],"110":[2,12],"112":[2,12],"114":[2,12],"118":[2,12],"135":[2,12],"136":[2,12]},{"1":[2,13],"4":[2,13],"30":[2,13],"110":[2,13],"112":[2,13],"114":[2,13],"118":[2,13],"135":[2,13],"136":[2,13]},{"1":[2,14],"4":[2,14],"30":[2,14],"110":[2,14],"112":[2,14],"114":[2,14],"118":[2,14],"135":[2,14],"136":[2,14]},{"1":[2,79],"4":[2,79],"29":[2,79],"30":[2,79],"46":[1,123],"52":[2,79],"60":[2,79],"64":[2,79],"74":[2,79],"75":[2,79],"76":[2,79],"77":[2,79],"80":[2,79],"81":[2,79],"82":[2,79],"83":[2,79],"86":[2,79],"94":[2,79],"95":[2,79],"96":[2,79],"101":[2,79],"110":[2,79],"112":[2,79],"113":[2,79],"114":[2,79],"118":[2,79],"126":[2,79],"135":[2,79],"136":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79]},{"1":[2,80],"4":[2,80],"29":[2,80],"30":[2,80],"52":[2,80],"60":[2,80],"64":[2,80],"74":[2,80],"75":[2,80],"76":[2,80],"77":[2,80],"80":[2,80],"81":[2,80],"82":[2,80],"83":[2,80],"86":[2,80],"94":[2,80],"95":[2,80],"96":[2,80],"101":[2,80],"110":[2,80],"112":[2,80],"113":[2,80],"114":[2,80],"118":[2,80],"126":[2,80],"135":[2,80],"136":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80]},{"1":[2,81],"4":[2,81],"29":[2,81],"30":[2,81],"52":[2,81],"60":[2,81],"64":[2,81],"74":[2,81],"75":[2,81],"76":[2,81],"77":[2,81],"80":[2,81],"81":[2,81],"82":[2,81],"83":[2,81],"86":[2,81],"94":[2,81],"95":[2,81],"96":[2,81],"101":[2,81],"110":[2,81],"112":[2,81],"113":[2,81],"114":[2,81],"118":[2,81],"126":[2,81],"135":[2,81],"136":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81]},{"1":[2,82],"4":[2,82],"29":[2,82],"30":[2,82],"52":[2,82],"60":[2,82],"64":[2,82],"74":[2,82],"75":[2,82],"76":[2,82],"77":[2,82],"80":[2,82],"81":[2,82],"82":[2,82],"83":[2,82],"86":[2,82],"94":[2,82],"95":[2,82],"96":[2,82],"101":[2,82],"110":[2,82],"112":[2,82],"113":[2,82],"114":[2,82],"118":[2,82],"126":[2,82],"135":[2,82],"136":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82]},{"1":[2,83],"4":[2,83],"29":[2,83],"30":[2,83],"52":[2,83],"60":[2,83],"64":[2,83],"74":[2,83],"75":[2,83],"76":[2,83],"77":[2,83],"80":[2,83],"81":[2,83],"82":[2,83],"83":[2,83],"86":[2,83],"94":[2,83],"95":[2,83],"96":[2,83],"101":[2,83],"110":[2,83],"112":[2,83],"113":[2,83],"114":[2,83],"118":[2,83],"126":[2,83],"135":[2,83],"136":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83]},{"1":[2,84],"4":[2,84],"29":[2,84],"30":[2,84],"52":[2,84],"60":[2,84],"64":[2,84],"74":[2,84],"75":[2,84],"76":[2,84],"77":[2,84],"80":[2,84],"81":[2,84],"82":[2,84],"83":[2,84],"86":[2,84],"94":[2,84],"95":[2,84],"96":[2,84],"101":[2,84],"110":[2,84],"112":[2,84],"113":[2,84],"114":[2,84],"118":[2,84],"126":[2,84],"135":[2,84],"136":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84]},{"1":[2,118],"4":[2,118],"29":[2,118],"30":[2,118],"52":[2,118],"60":[2,118],"64":[2,118],"74":[2,118],"75":[2,118],"76":[2,118],"77":[2,118],"80":[2,118],"81":[2,118],"82":[2,118],"83":[2,118],"86":[2,118],"92":124,"94":[2,118],"95":[1,125],"96":[2,118],"101":[2,118],"110":[2,118],"112":[2,118],"113":[2,118],"114":[2,118],"118":[2,118],"126":[2,118],"135":[2,118],"136":[2,118],"138":[2,118],"139":[2,118],"140":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"146":[2,118],"147":[2,118],"149":[2,118]},{"54":126,"55":[2,64],"60":[2,64],"61":127,"62":[1,128],"63":[1,129]},{"4":[1,131],"6":130,"29":[1,6]},{"8":132,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":134,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":135,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":136,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":137,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,193],"4":[2,193],"29":[2,193],"30":[2,193],"52":[2,193],"60":[2,193],"64":[2,193],"81":[2,193],"86":[2,193],"96":[2,193],"101":[2,193],"110":[2,193],"112":[2,193],"113":[2,193],"114":[2,193],"118":[2,193],"126":[2,193],"129":[1,138],"135":[2,193],"136":[2,193],"138":[2,193],"139":[2,193],"140":[2,193],"141":[2,193],"142":[2,193],"143":[2,193],"144":[2,193],"145":[2,193],"146":[2,193],"147":[2,193],"149":[2,193]},{"4":[1,131],"6":139,"29":[1,6]},{"4":[1,131],"6":140,"29":[1,6]},{"1":[2,159],"4":[2,159],"29":[2,159],"30":[2,159],"52":[2,159],"60":[2,159],"64":[2,159],"81":[2,159],"86":[2,159],"96":[2,159],"101":[2,159],"110":[2,159],"112":[2,159],"113":[2,159],"114":[2,159],"118":[2,159],"126":[2,159],"135":[2,159],"136":[2,159],"138":[2,159],"139":[2,159],"140":[2,159],"141":[2,159],"142":[2,159],"143":[2,159],"144":[2,159],"145":[2,159],"146":[2,159],"147":[2,159],"149":[2,159]},{"4":[1,131],"6":141,"29":[1,6]},{"8":142,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,143],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"46":[2,76],"52":[2,76],"60":[2,76],"64":[2,76],"74":[2,76],"75":[2,76],"76":[2,76],"77":[2,76],"80":[2,76],"81":[2,76],"82":[2,76],"83":[2,76],"86":[2,76],"88":[1,144],"94":[2,76],"95":[2,76],"96":[2,76],"101":[2,76],"110":[2,76],"112":[2,76],"113":[2,76],"114":[2,76],"118":[2,76],"126":[2,76],"135":[2,76],"136":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76]},{"1":[2,105],"4":[2,105],"15":148,"16":149,"29":[1,146],"30":[2,105],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":150,"48":78,"52":[2,105],"60":[2,105],"63":[1,67],"64":[2,105],"66":145,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"81":[2,105],"84":[1,79],"86":[2,105],"88":[1,147],"93":[1,34],"96":[2,105],"98":[1,66],"100":[1,65],"101":[2,105],"109":[1,64],"110":[2,105],"112":[2,105],"113":[2,105],"114":[2,105],"118":[2,105],"126":[2,105],"135":[2,105],"136":[2,105],"138":[2,105],"139":[2,105],"140":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"149":[2,105]},{"1":[2,56],"4":[2,56],"29":[2,56],"30":[2,56],"52":[2,56],"60":[2,56],"64":[2,56],"81":[2,56],"86":[2,56],"96":[2,56],"101":[2,56],"106":[2,56],"107":[2,56],"110":[2,56],"112":[2,56],"113":[2,56],"114":[2,56],"118":[2,56],"126":[2,56],"129":[2,56],"131":[2,56],"135":[2,56],"136":[2,56],"138":[2,56],"139":[2,56],"140":[2,56],"141":[2,56],"142":[2,56],"143":[2,56],"144":[2,56],"145":[2,56],"146":[2,56],"147":[2,56],"149":[2,56]},{"1":[2,55],"4":[2,55],"8":151,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"30":[2,55],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"110":[2,55],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"135":[2,55],"136":[2,55],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":152,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,77],"4":[2,77],"29":[2,77],"30":[2,77],"46":[2,77],"52":[2,77],"60":[2,77],"64":[2,77],"74":[2,77],"75":[2,77],"76":[2,77],"77":[2,77],"80":[2,77],"81":[2,77],"82":[2,77],"83":[2,77],"86":[2,77],"94":[2,77],"95":[2,77],"96":[2,77],"101":[2,77],"110":[2,77],"112":[2,77],"113":[2,77],"114":[2,77],"118":[2,77],"126":[2,77],"135":[2,77],"136":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77]},{"1":[2,78],"4":[2,78],"29":[2,78],"30":[2,78],"46":[2,78],"52":[2,78],"60":[2,78],"64":[2,78],"74":[2,78],"75":[2,78],"76":[2,78],"77":[2,78],"80":[2,78],"81":[2,78],"82":[2,78],"83":[2,78],"86":[2,78],"94":[2,78],"95":[2,78],"96":[2,78],"101":[2,78],"110":[2,78],"112":[2,78],"113":[2,78],"114":[2,78],"118":[2,78],"126":[2,78],"135":[2,78],"136":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78]},{"1":[2,35],"4":[2,35],"29":[2,35],"30":[2,35],"52":[2,35],"60":[2,35],"64":[2,35],"74":[2,35],"75":[2,35],"76":[2,35],"77":[2,35],"80":[2,35],"81":[2,35],"82":[2,35],"83":[2,35],"86":[2,35],"94":[2,35],"95":[2,35],"96":[2,35],"101":[2,35],"110":[2,35],"112":[2,35],"113":[2,35],"114":[2,35],"118":[2,35],"126":[2,35],"135":[2,35],"136":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35]},{"1":[2,36],"4":[2,36],"29":[2,36],"30":[2,36],"52":[2,36],"60":[2,36],"64":[2,36],"74":[2,36],"75":[2,36],"76":[2,36],"77":[2,36],"80":[2,36],"81":[2,36],"82":[2,36],"83":[2,36],"86":[2,36],"94":[2,36],"95":[2,36],"96":[2,36],"101":[2,36],"110":[2,36],"112":[2,36],"113":[2,36],"114":[2,36],"118":[2,36],"126":[2,36],"135":[2,36],"136":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36]},{"1":[2,37],"4":[2,37],"29":[2,37],"30":[2,37],"52":[2,37],"60":[2,37],"64":[2,37],"74":[2,37],"75":[2,37],"76":[2,37],"77":[2,37],"80":[2,37],"81":[2,37],"82":[2,37],"83":[2,37],"86":[2,37],"94":[2,37],"95":[2,37],"96":[2,37],"101":[2,37],"110":[2,37],"112":[2,37],"113":[2,37],"114":[2,37],"118":[2,37],"126":[2,37],"135":[2,37],"136":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37]},{"1":[2,38],"4":[2,38],"29":[2,38],"30":[2,38],"52":[2,38],"60":[2,38],"64":[2,38],"74":[2,38],"75":[2,38],"76":[2,38],"77":[2,38],"80":[2,38],"81":[2,38],"82":[2,38],"83":[2,38],"86":[2,38],"94":[2,38],"95":[2,38],"96":[2,38],"101":[2,38],"110":[2,38],"112":[2,38],"113":[2,38],"114":[2,38],"118":[2,38],"126":[2,38],"135":[2,38],"136":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38]},{"1":[2,39],"4":[2,39],"29":[2,39],"30":[2,39],"52":[2,39],"60":[2,39],"64":[2,39],"74":[2,39],"75":[2,39],"76":[2,39],"77":[2,39],"80":[2,39],"81":[2,39],"82":[2,39],"83":[2,39],"86":[2,39],"94":[2,39],"95":[2,39],"96":[2,39],"101":[2,39],"110":[2,39],"112":[2,39],"113":[2,39],"114":[2,39],"118":[2,39],"126":[2,39],"135":[2,39],"136":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39]},{"1":[2,40],"4":[2,40],"29":[2,40],"30":[2,40],"52":[2,40],"60":[2,40],"64":[2,40],"74":[2,40],"75":[2,40],"76":[2,40],"77":[2,40],"80":[2,40],"81":[2,40],"82":[2,40],"83":[2,40],"86":[2,40],"94":[2,40],"95":[2,40],"96":[2,40],"101":[2,40],"110":[2,40],"112":[2,40],"113":[2,40],"114":[2,40],"118":[2,40],"126":[2,40],"135":[2,40],"136":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40]},{"1":[2,41],"4":[2,41],"29":[2,41],"30":[2,41],"52":[2,41],"60":[2,41],"64":[2,41],"74":[2,41],"75":[2,41],"76":[2,41],"77":[2,41],"80":[2,41],"81":[2,41],"82":[2,41],"83":[2,41],"86":[2,41],"94":[2,41],"95":[2,41],"96":[2,41],"101":[2,41],"110":[2,41],"112":[2,41],"113":[2,41],"114":[2,41],"118":[2,41],"126":[2,41],"135":[2,41],"136":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41]},{"1":[2,42],"4":[2,42],"29":[2,42],"30":[2,42],"52":[2,42],"60":[2,42],"64":[2,42],"74":[2,42],"75":[2,42],"76":[2,42],"77":[2,42],"80":[2,42],"81":[2,42],"82":[2,42],"83":[2,42],"86":[2,42],"94":[2,42],"95":[2,42],"96":[2,42],"101":[2,42],"110":[2,42],"112":[2,42],"113":[2,42],"114":[2,42],"118":[2,42],"126":[2,42],"135":[2,42],"136":[2,42],"138":[2,42],"139":[2,42],"140":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"148":[2,42],"149":[2,42]},{"1":[2,43],"4":[2,43],"29":[2,43],"30":[2,43],"52":[2,43],"60":[2,43],"64":[2,43],"74":[2,43],"75":[2,43],"76":[2,43],"77":[2,43],"80":[2,43],"81":[2,43],"82":[2,43],"83":[2,43],"86":[2,43],"94":[2,43],"95":[2,43],"96":[2,43],"101":[2,43],"110":[2,43],"112":[2,43],"113":[2,43],"114":[2,43],"118":[2,43],"126":[2,43],"135":[2,43],"136":[2,43],"138":[2,43],"139":[2,43],"140":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"148":[2,43],"149":[2,43]},{"7":153,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"110":[1,154],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":155,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,159],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"65":160,"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"97":157,"98":[1,66],"100":[1,65],"101":[1,156],"102":158,"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,124],"4":[2,124],"29":[2,124],"30":[2,124],"52":[2,124],"60":[2,124],"64":[2,124],"74":[2,124],"75":[2,124],"76":[2,124],"77":[2,124],"80":[2,124],"81":[2,124],"82":[2,124],"83":[2,124],"86":[2,124],"94":[2,124],"95":[2,124],"96":[2,124],"101":[2,124],"110":[2,124],"112":[2,124],"113":[2,124],"114":[2,124],"118":[2,124],"126":[2,124],"135":[2,124],"136":[2,124],"138":[2,124],"139":[2,124],"140":[2,124],"141":[2,124],"142":[2,124],"143":[2,124],"144":[2,124],"145":[2,124],"146":[2,124],"147":[2,124],"148":[2,124],"149":[2,124]},{"1":[2,125],"4":[2,125],"29":[2,125],"30":[2,125],"31":161,"32":[1,82],"52":[2,125],"60":[2,125],"64":[2,125],"74":[2,125],"75":[2,125],"76":[2,125],"77":[2,125],"80":[2,125],"81":[2,125],"82":[2,125],"83":[2,125],"86":[2,125],"94":[2,125],"95":[2,125],"96":[2,125],"101":[2,125],"110":[2,125],"112":[2,125],"113":[2,125],"114":[2,125],"118":[2,125],"126":[2,125],"135":[2,125],"136":[2,125],"138":[2,125],"139":[2,125],"140":[2,125],"141":[2,125],"142":[2,125],"143":[2,125],"144":[2,125],"145":[2,125],"146":[2,125],"147":[2,125],"148":[2,125],"149":[2,125]},{"4":[2,60],"29":[2,60]},{"4":[2,61],"29":[2,61]},{"8":162,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":163,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":164,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":165,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[1,131],"6":166,"8":167,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,6],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"31":172,"32":[1,82],"68":173,"69":174,"71":168,"84":[1,79],"100":[1,65],"121":169,"122":[1,170],"123":171},{"120":175,"124":[1,176],"125":[1,177]},{"1":[2,72],"4":[2,72],"29":[2,72],"30":[2,72],"46":[2,72],"52":[2,72],"60":[2,72],"64":[2,72],"74":[2,72],"75":[2,72],"76":[2,72],"77":[2,72],"80":[2,72],"81":[2,72],"82":[2,72],"83":[2,72],"86":[2,72],"88":[2,72],"94":[2,72],"95":[2,72],"96":[2,72],"101":[2,72],"110":[2,72],"112":[2,72],"113":[2,72],"114":[2,72],"118":[2,72],"126":[2,72],"135":[2,72],"136":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72]},{"1":[2,75],"4":[2,75],"29":[2,75],"30":[2,75],"46":[2,75],"52":[2,75],"60":[2,75],"64":[2,75],"74":[2,75],"75":[2,75],"76":[2,75],"77":[2,75],"80":[2,75],"81":[2,75],"82":[2,75],"83":[2,75],"86":[2,75],"88":[2,75],"94":[2,75],"95":[2,75],"96":[2,75],"101":[2,75],"110":[2,75],"112":[2,75],"113":[2,75],"114":[2,75],"118":[2,75],"126":[2,75],"135":[2,75],"136":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75]},{"4":[2,95],"28":183,"29":[2,95],"31":180,"32":[1,82],"33":181,"34":[1,80],"35":[1,81],"47":179,"48":182,"51":[1,50],"60":[2,95],"63":[1,184],"85":178,"86":[2,95]},{"1":[2,33],"4":[2,33],"29":[2,33],"30":[2,33],"49":[2,33],"52":[2,33],"60":[2,33],"64":[2,33],"74":[2,33],"75":[2,33],"76":[2,33],"77":[2,33],"80":[2,33],"81":[2,33],"82":[2,33],"83":[2,33],"86":[2,33],"94":[2,33],"95":[2,33],"96":[2,33],"101":[2,33],"110":[2,33],"112":[2,33],"113":[2,33],"114":[2,33],"118":[2,33],"126":[2,33],"135":[2,33],"136":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33]},{"1":[2,34],"4":[2,34],"29":[2,34],"30":[2,34],"49":[2,34],"52":[2,34],"60":[2,34],"64":[2,34],"74":[2,34],"75":[2,34],"76":[2,34],"77":[2,34],"80":[2,34],"81":[2,34],"82":[2,34],"83":[2,34],"86":[2,34],"94":[2,34],"95":[2,34],"96":[2,34],"101":[2,34],"110":[2,34],"112":[2,34],"113":[2,34],"114":[2,34],"118":[2,34],"126":[2,34],"135":[2,34],"136":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34]},{"1":[2,32],"4":[2,32],"29":[2,32],"30":[2,32],"46":[2,32],"49":[2,32],"52":[2,32],"60":[2,32],"64":[2,32],"74":[2,32],"75":[2,32],"76":[2,32],"77":[2,32],"80":[2,32],"81":[2,32],"82":[2,32],"83":[2,32],"86":[2,32],"88":[2,32],"94":[2,32],"95":[2,32],"96":[2,32],"101":[2,32],"110":[2,32],"112":[2,32],"113":[2,32],"114":[2,32],"118":[2,32],"124":[2,32],"125":[2,32],"126":[2,32],"135":[2,32],"136":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32]},{"1":[2,31],"4":[2,31],"29":[2,31],"30":[2,31],"52":[2,31],"60":[2,31],"64":[2,31],"81":[2,31],"86":[2,31],"96":[2,31],"101":[2,31],"106":[2,31],"107":[2,31],"110":[2,31],"112":[2,31],"113":[2,31],"114":[2,31],"118":[2,31],"126":[2,31],"129":[2,31],"131":[2,31],"135":[2,31],"136":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"149":[2,31]},{"1":[2,7],"4":[2,7],"7":185,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"30":[2,7],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,4]},{"4":[1,84],"30":[1,186]},{"1":[2,30],"4":[2,30],"29":[2,30],"30":[2,30],"52":[2,30],"60":[2,30],"64":[2,30],"81":[2,30],"86":[2,30],"96":[2,30],"101":[2,30],"106":[2,30],"107":[2,30],"110":[2,30],"112":[2,30],"113":[2,30],"114":[2,30],"118":[2,30],"126":[2,30],"129":[2,30],"131":[2,30],"135":[2,30],"136":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"149":[2,30]},{"1":[2,203],"4":[2,203],"29":[2,203],"30":[2,203],"52":[2,203],"60":[2,203],"64":[2,203],"81":[2,203],"86":[2,203],"96":[2,203],"101":[2,203],"110":[2,203],"112":[2,203],"113":[2,203],"114":[2,203],"118":[2,203],"126":[2,203],"135":[2,203],"136":[2,203],"138":[2,203],"139":[2,203],"140":[2,203],"141":[2,203],"142":[2,203],"143":[2,203],"144":[2,203],"145":[2,203],"146":[2,203],"147":[2,203],"149":[2,203]},{"1":[2,204],"4":[2,204],"29":[2,204],"30":[2,204],"52":[2,204],"60":[2,204],"64":[2,204],"81":[2,204],"86":[2,204],"96":[2,204],"101":[2,204],"110":[2,204],"112":[2,204],"113":[2,204],"114":[2,204],"118":[2,204],"126":[2,204],"135":[2,204],"136":[2,204],"138":[2,204],"139":[2,204],"140":[2,204],"141":[2,204],"142":[2,204],"143":[2,204],"144":[2,204],"145":[2,204],"146":[2,204],"147":[2,204],"149":[2,204]},{"1":[2,57],"4":[2,57],"8":187,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[2,57],"30":[2,57],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"52":[2,57],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"60":[2,57],"63":[1,67],"64":[2,57],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"81":[2,57],"84":[1,79],"86":[2,57],"87":[1,49],"93":[1,34],"96":[2,57],"98":[1,66],"100":[1,65],"101":[2,57],"104":[1,43],"108":[1,52],"109":[1,64],"110":[2,57],"111":44,"112":[2,57],"113":[2,57],"114":[2,57],"115":45,"116":[1,74],"117":46,"118":[2,57],"119":76,"126":[2,57],"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"135":[2,57],"136":[2,57],"137":[1,37],"138":[2,57],"139":[2,57],"140":[2,57],"141":[2,57],"142":[2,57],"143":[2,57],"144":[2,57],"145":[2,57],"146":[2,57],"147":[2,57],"149":[2,57]},{"8":188,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":189,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":190,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":191,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":192,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":193,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":194,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":195,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":196,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":197,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":198,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,158],"4":[2,158],"29":[2,158],"30":[2,158],"52":[2,158],"60":[2,158],"64":[2,158],"81":[2,158],"86":[2,158],"96":[2,158],"101":[2,158],"110":[2,158],"112":[2,158],"113":[2,158],"114":[2,158],"118":[2,158],"126":[2,158],"135":[2,158],"136":[2,158],"138":[2,158],"139":[2,158],"140":[2,158],"141":[2,158],"142":[2,158],"143":[2,158],"144":[2,158],"145":[2,158],"146":[2,158],"147":[2,158],"149":[2,158]},{"1":[2,163],"4":[2,163],"29":[2,163],"30":[2,163],"52":[2,163],"60":[2,163],"64":[2,163],"81":[2,163],"86":[2,163],"96":[2,163],"101":[2,163],"110":[2,163],"112":[2,163],"113":[2,163],"114":[2,163],"118":[2,163],"126":[2,163],"135":[2,163],"136":[2,163],"138":[2,163],"139":[2,163],"140":[2,163],"141":[2,163],"142":[2,163],"143":[2,163],"144":[2,163],"145":[2,163],"146":[2,163],"147":[2,163],"149":[2,163]},{"8":199,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":200,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,157],"4":[2,157],"29":[2,157],"30":[2,157],"52":[2,157],"60":[2,157],"64":[2,157],"81":[2,157],"86":[2,157],"96":[2,157],"101":[2,157],"110":[2,157],"112":[2,157],"113":[2,157],"114":[2,157],"118":[2,157],"126":[2,157],"135":[2,157],"136":[2,157],"138":[2,157],"139":[2,157],"140":[2,157],"141":[2,157],"142":[2,157],"143":[2,157],"144":[2,157],"145":[2,157],"146":[2,157],"147":[2,157],"149":[2,157]},{"1":[2,162],"4":[2,162],"29":[2,162],"30":[2,162],"52":[2,162],"60":[2,162],"64":[2,162],"81":[2,162],"86":[2,162],"96":[2,162],"101":[2,162],"110":[2,162],"112":[2,162],"113":[2,162],"114":[2,162],"118":[2,162],"126":[2,162],"135":[2,162],"136":[2,162],"138":[2,162],"139":[2,162],"140":[2,162],"141":[2,162],"142":[2,162],"143":[2,162],"144":[2,162],"145":[2,162],"146":[2,162],"147":[2,162],"149":[2,162]},{"92":201,"95":[1,125]},{"8":202,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,203],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"46":[2,73],"52":[2,73],"60":[2,73],"64":[2,73],"74":[2,73],"75":[2,73],"76":[2,73],"77":[2,73],"80":[2,73],"81":[2,73],"82":[2,73],"83":[2,73],"86":[2,73],"88":[2,73],"94":[2,73],"95":[2,73],"96":[2,73],"101":[2,73],"110":[2,73],"112":[2,73],"113":[2,73],"114":[2,73],"118":[2,73],"126":[2,73],"135":[2,73],"136":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73]},{"95":[2,121]},{"31":204,"32":[1,82]},{"31":205,"32":[1,82]},{"1":[2,87],"4":[2,87],"29":[2,87],"30":[2,87],"46":[2,87],"52":[2,87],"60":[2,87],"64":[2,87],"74":[2,87],"75":[2,87],"76":[2,87],"77":[2,87],"80":[2,87],"81":[2,87],"82":[2,87],"83":[2,87],"86":[2,87],"88":[2,87],"94":[2,87],"95":[2,87],"96":[2,87],"101":[2,87],"110":[2,87],"112":[2,87],"113":[2,87],"114":[2,87],"118":[2,87],"126":[2,87],"135":[2,87],"136":[2,87],"138":[2,87],"139":[2,87],"140":[2,87],"141":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87],"148":[2,87],"149":[2,87]},{"31":206,"32":[1,82]},{"1":[2,89],"4":[2,89],"29":[2,89],"30":[2,89],"46":[2,89],"52":[2,89],"60":[2,89],"64":[2,89],"74":[2,89],"75":[2,89],"76":[2,89],"77":[2,89],"80":[2,89],"81":[2,89],"82":[2,89],"83":[2,89],"86":[2,89],"88":[2,89],"94":[2,89],"95":[2,89],"96":[2,89],"101":[2,89],"110":[2,89],"112":[2,89],"113":[2,89],"114":[2,89],"118":[2,89],"126":[2,89],"135":[2,89],"136":[2,89],"138":[2,89],"139":[2,89],"140":[2,89],"141":[2,89],"142":[2,89],"143":[2,89],"144":[2,89],"145":[2,89],"146":[2,89],"147":[2,89],"148":[2,89],"149":[2,89]},{"1":[2,90],"4":[2,90],"29":[2,90],"30":[2,90],"46":[2,90],"52":[2,90],"60":[2,90],"64":[2,90],"74":[2,90],"75":[2,90],"76":[2,90],"77":[2,90],"80":[2,90],"81":[2,90],"82":[2,90],"83":[2,90],"86":[2,90],"88":[2,90],"94":[2,90],"95":[2,90],"96":[2,90],"101":[2,90],"110":[2,90],"112":[2,90],"113":[2,90],"114":[2,90],"118":[2,90],"126":[2,90],"135":[2,90],"136":[2,90],"138":[2,90],"139":[2,90],"140":[2,90],"141":[2,90],"142":[2,90],"143":[2,90],"144":[2,90],"145":[2,90],"146":[2,90],"147":[2,90],"148":[2,90],"149":[2,90]},{"8":207,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"64":[1,209],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"99":208,"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"78":210,"80":[1,211],"82":[1,119],"83":[1,120]},{"78":212,"80":[1,211],"82":[1,119],"83":[1,120]},{"92":213,"95":[1,125]},{"1":[2,74],"4":[2,74],"29":[2,74],"30":[2,74],"46":[2,74],"52":[2,74],"60":[2,74],"64":[2,74],"74":[2,74],"75":[2,74],"76":[2,74],"77":[2,74],"80":[2,74],"81":[2,74],"82":[2,74],"83":[2,74],"86":[2,74],"88":[2,74],"94":[2,74],"95":[2,74],"96":[2,74],"101":[2,74],"110":[2,74],"112":[2,74],"113":[2,74],"114":[2,74],"118":[2,74],"126":[2,74],"135":[2,74],"136":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74]},{"8":214,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,215],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,119],"4":[2,119],"29":[2,119],"30":[2,119],"52":[2,119],"60":[2,119],"64":[2,119],"74":[2,119],"75":[2,119],"76":[2,119],"77":[2,119],"80":[2,119],"81":[2,119],"82":[2,119],"83":[2,119],"86":[2,119],"94":[2,119],"95":[2,119],"96":[2,119],"101":[2,119],"110":[2,119],"112":[2,119],"113":[2,119],"114":[2,119],"118":[2,119],"126":[2,119],"135":[2,119],"136":[2,119],"138":[2,119],"139":[2,119],"140":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"146":[2,119],"147":[2,119],"149":[2,119]},{"8":218,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,159],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"65":160,"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"96":[1,216],"97":217,"98":[1,66],"100":[1,65],"102":158,"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"55":[1,219],"60":[1,220]},{"55":[2,65],"60":[2,65]},{"55":[2,67],"60":[2,67],"64":[1,221]},{"62":[1,222]},{"1":[2,59],"4":[2,59],"29":[2,59],"30":[2,59],"52":[2,59],"60":[2,59],"64":[2,59],"81":[2,59],"86":[2,59],"96":[2,59],"101":[2,59],"110":[2,59],"112":[2,59],"113":[2,59],"114":[2,59],"118":[2,59],"126":[2,59],"135":[2,59],"136":[2,59],"138":[2,59],"139":[2,59],"140":[2,59],"141":[2,59],"142":[2,59],"143":[2,59],"144":[2,59],"145":[2,59],"146":[2,59],"147":[2,59],"149":[2,59]},{"28":83,"51":[1,50]},{"1":[2,198],"4":[2,198],"29":[2,198],"30":[2,198],"52":[1,90],"60":[2,198],"64":[2,198],"81":[2,198],"86":[2,198],"96":[2,198],"101":[2,198],"110":[2,198],"111":102,"112":[2,198],"113":[2,198],"114":[2,198],"117":103,"118":[2,198],"119":76,"126":[2,198],"135":[2,198],"136":[2,198],"138":[2,198],"139":[2,198],"140":[1,88],"141":[1,89],"142":[2,198],"143":[2,198],"144":[2,198],"145":[2,198],"146":[2,198],"147":[2,198],"149":[2,198]},{"111":106,"112":[1,72],"114":[1,73],"117":107,"118":[1,75],"119":76,"135":[1,104],"136":[1,105]},{"1":[2,199],"4":[2,199],"29":[2,199],"30":[2,199],"52":[1,90],"60":[2,199],"64":[2,199],"81":[2,199],"86":[2,199],"96":[2,199],"101":[2,199],"110":[2,199],"111":102,"112":[2,199],"113":[2,199],"114":[2,199],"117":103,"118":[2,199],"119":76,"126":[2,199],"135":[2,199],"136":[2,199],"138":[2,199],"139":[2,199],"140":[1,88],"141":[1,89],"142":[2,199],"143":[2,199],"144":[2,199],"145":[2,199],"146":[2,199],"147":[2,199],"149":[2,199]},{"1":[2,200],"4":[2,200],"29":[2,200],"30":[2,200],"52":[1,90],"60":[2,200],"64":[2,200],"81":[2,200],"86":[2,200],"96":[2,200],"101":[2,200],"110":[2,200],"111":102,"112":[2,200],"113":[2,200],"114":[2,200],"117":103,"118":[2,200],"119":76,"126":[2,200],"135":[2,200],"136":[2,200],"138":[2,200],"139":[2,200],"140":[1,88],"141":[1,89],"142":[2,200],"143":[2,200],"144":[2,200],"145":[2,200],"146":[2,200],"147":[2,200],"149":[2,200]},{"1":[2,201],"4":[2,201],"29":[2,201],"30":[2,201],"52":[1,90],"60":[2,201],"64":[2,201],"81":[2,201],"86":[2,201],"96":[2,201],"101":[2,201],"110":[2,201],"111":102,"112":[2,201],"113":[2,201],"114":[2,201],"117":103,"118":[2,201],"119":76,"126":[2,201],"135":[2,201],"136":[2,201],"138":[2,201],"139":[2,201],"142":[2,201],"143":[2,201],"144":[2,201],"145":[2,201],"146":[2,201],"147":[2,201],"149":[2,201]},{"1":[2,202],"4":[2,202],"29":[2,202],"30":[2,202],"52":[1,90],"60":[2,202],"64":[2,202],"81":[2,202],"86":[2,202],"96":[2,202],"101":[2,202],"110":[2,202],"111":102,"112":[2,202],"113":[2,202],"114":[2,202],"117":103,"118":[2,202],"119":76,"126":[2,202],"135":[2,202],"136":[2,202],"138":[2,202],"139":[2,202],"142":[2,202],"143":[2,202],"144":[2,202],"145":[2,202],"146":[2,202],"147":[2,202],"149":[2,202]},{"4":[1,131],"6":224,"29":[1,6],"133":[1,223]},{"1":[2,144],"4":[2,144],"29":[2,144],"30":[2,144],"52":[2,144],"60":[2,144],"64":[2,144],"81":[2,144],"86":[2,144],"96":[2,144],"101":[2,144],"105":225,"106":[1,226],"107":[1,227],"110":[2,144],"112":[2,144],"113":[2,144],"114":[2,144],"118":[2,144],"126":[2,144],"135":[2,144],"136":[2,144],"138":[2,144],"139":[2,144],"140":[2,144],"141":[2,144],"142":[2,144],"143":[2,144],"144":[2,144],"145":[2,144],"146":[2,144],"147":[2,144],"149":[2,144]},{"1":[2,156],"4":[2,156],"29":[2,156],"30":[2,156],"52":[2,156],"60":[2,156],"64":[2,156],"81":[2,156],"86":[2,156],"96":[2,156],"101":[2,156],"110":[2,156],"112":[2,156],"113":[2,156],"114":[2,156],"118":[2,156],"126":[2,156],"135":[2,156],"136":[2,156],"138":[2,156],"139":[2,156],"140":[2,156],"141":[2,156],"142":[2,156],"143":[2,156],"144":[2,156],"145":[2,156],"146":[2,156],"147":[2,156],"149":[2,156]},{"1":[2,164],"4":[2,164],"29":[2,164],"30":[2,164],"52":[2,164],"60":[2,164],"64":[2,164],"81":[2,164],"86":[2,164],"96":[2,164],"101":[2,164],"110":[2,164],"112":[2,164],"113":[2,164],"114":[2,164],"118":[2,164],"126":[2,164],"135":[2,164],"136":[2,164],"138":[2,164],"139":[2,164],"140":[2,164],"141":[2,164],"142":[2,164],"143":[2,164],"144":[2,164],"145":[2,164],"146":[2,164],"147":[2,164],"149":[2,164]},{"29":[1,228],"52":[1,90],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"128":229,"130":230,"131":[1,231]},{"15":232,"16":149,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":150,"48":78,"63":[1,67],"66":233,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"93":[1,34],"98":[1,66],"100":[1,65],"109":[1,64]},{"1":[2,100],"4":[2,100],"29":[1,235],"30":[2,100],"52":[2,100],"60":[2,100],"64":[2,100],"74":[2,76],"75":[2,76],"76":[2,76],"77":[2,76],"80":[2,76],"81":[2,100],"82":[2,76],"83":[2,76],"86":[2,100],"88":[1,234],"94":[2,76],"95":[2,76],"96":[2,100],"101":[2,100],"110":[2,100],"112":[2,100],"113":[2,100],"114":[2,100],"118":[2,100],"126":[2,100],"135":[2,100],"136":[2,100],"138":[2,100],"139":[2,100],"140":[2,100],"141":[2,100],"142":[2,100],"143":[2,100],"144":[2,100],"145":[2,100],"146":[2,100],"147":[2,100],"149":[2,100]},{"4":[2,111],"28":183,"30":[2,111],"31":180,"32":[1,82],"33":181,"34":[1,80],"35":[1,81],"47":239,"48":240,"51":[1,50],"63":[1,184],"84":[1,238],"89":236,"90":237},{"15":241,"16":149,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":150,"48":78,"63":[1,67],"66":233,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"93":[1,34],"98":[1,66],"100":[1,65],"109":[1,64]},{"67":110,"74":[1,112],"75":[1,113],"76":[1,114],"77":[1,115],"78":116,"79":117,"80":[1,118],"82":[1,119],"83":[1,120],"91":108,"94":[1,111],"95":[2,120]},{"67":122,"74":[1,112],"75":[1,113],"76":[1,114],"77":[1,115],"78":116,"79":117,"80":[1,118],"82":[1,119],"83":[1,120],"91":121,"94":[1,111],"95":[2,120]},{"1":[2,79],"4":[2,79],"29":[2,79],"30":[2,79],"52":[2,79],"60":[2,79],"64":[2,79],"74":[2,79],"75":[2,79],"76":[2,79],"77":[2,79],"80":[2,79],"81":[2,79],"82":[2,79],"83":[2,79],"86":[2,79],"94":[2,79],"95":[2,79],"96":[2,79],"101":[2,79],"110":[2,79],"112":[2,79],"113":[2,79],"114":[2,79],"118":[2,79],"126":[2,79],"135":[2,79],"136":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"149":[2,79]},{"1":[2,54],"4":[2,54],"30":[2,54],"52":[1,90],"110":[2,54],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[2,54],"136":[2,54],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,149],"4":[2,149],"30":[2,149],"52":[1,90],"110":[2,149],"111":102,"112":[2,149],"114":[2,149],"117":103,"118":[2,149],"119":76,"135":[2,149],"136":[2,149],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"110":[1,242]},{"1":[2,151],"4":[2,151],"29":[2,151],"30":[2,151],"52":[2,151],"60":[2,151],"64":[2,151],"74":[2,151],"75":[2,151],"76":[2,151],"77":[2,151],"80":[2,151],"81":[2,151],"82":[2,151],"83":[2,151],"86":[2,151],"94":[2,151],"95":[2,151],"96":[2,151],"101":[2,151],"110":[2,151],"112":[2,151],"113":[2,151],"114":[2,151],"118":[2,151],"126":[2,151],"135":[2,151],"136":[2,151],"138":[2,151],"139":[2,151],"140":[2,151],"141":[2,151],"142":[2,151],"143":[2,151],"144":[2,151],"145":[2,151],"146":[2,151],"147":[2,151],"148":[2,151],"149":[2,151]},{"4":[2,140],"29":[2,140],"52":[1,90],"60":[2,140],"64":[1,244],"99":243,"101":[2,140],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,133],"4":[2,133],"29":[2,133],"30":[2,133],"46":[2,133],"52":[2,133],"60":[2,133],"64":[2,133],"74":[2,133],"75":[2,133],"76":[2,133],"77":[2,133],"80":[2,133],"81":[2,133],"82":[2,133],"83":[2,133],"86":[2,133],"94":[2,133],"95":[2,133],"96":[2,133],"101":[2,133],"110":[2,133],"112":[2,133],"113":[2,133],"114":[2,133],"118":[2,133],"124":[2,133],"125":[2,133],"126":[2,133],"135":[2,133],"136":[2,133],"138":[2,133],"139":[2,133],"140":[2,133],"141":[2,133],"142":[2,133],"143":[2,133],"144":[2,133],"145":[2,133],"146":[2,133],"147":[2,133],"148":[2,133],"149":[2,133]},{"4":[2,62],"29":[2,62],"59":245,"60":[1,246],"101":[2,62]},{"4":[2,135],"29":[2,135],"30":[2,135],"60":[2,135],"96":[2,135],"101":[2,135]},{"8":218,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,159],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"65":160,"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"97":247,"98":[1,66],"100":[1,65],"102":158,"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[2,141],"29":[2,141],"30":[2,141],"60":[2,141],"96":[2,141],"101":[2,141]},{"1":[2,128],"4":[2,128],"29":[2,128],"30":[2,128],"46":[2,128],"49":[2,128],"52":[2,128],"60":[2,128],"64":[2,128],"74":[2,128],"75":[2,128],"76":[2,128],"77":[2,128],"80":[2,128],"81":[2,128],"82":[2,128],"83":[2,128],"86":[2,128],"88":[2,128],"94":[2,128],"95":[2,128],"96":[2,128],"101":[2,128],"110":[2,128],"112":[2,128],"113":[2,128],"114":[2,128],"118":[2,128],"126":[2,128],"135":[2,128],"136":[2,128],"138":[2,128],"139":[2,128],"140":[2,128],"141":[2,128],"142":[2,128],"143":[2,128],"144":[2,128],"145":[2,128],"146":[2,128],"147":[2,128],"148":[2,128],"149":[2,128]},{"4":[1,131],"6":248,"29":[1,6],"52":[1,90],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"4":[1,131],"6":249,"29":[1,6],"52":[1,90],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,152],"4":[2,152],"29":[2,152],"30":[2,152],"52":[1,90],"60":[2,152],"64":[2,152],"81":[2,152],"86":[2,152],"96":[2,152],"101":[2,152],"110":[2,152],"111":102,"112":[1,72],"113":[1,250],"114":[1,73],"117":103,"118":[1,75],"119":76,"126":[2,152],"135":[2,152],"136":[2,152],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,154],"4":[2,154],"29":[2,154],"30":[2,154],"52":[1,90],"60":[2,154],"64":[2,154],"81":[2,154],"86":[2,154],"96":[2,154],"101":[2,154],"110":[2,154],"111":102,"112":[1,72],"113":[1,251],"114":[1,73],"117":103,"118":[1,75],"119":76,"126":[2,154],"135":[2,154],"136":[2,154],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,160],"4":[2,160],"29":[2,160],"30":[2,160],"52":[2,160],"60":[2,160],"64":[2,160],"81":[2,160],"86":[2,160],"96":[2,160],"101":[2,160],"110":[2,160],"112":[2,160],"113":[2,160],"114":[2,160],"118":[2,160],"126":[2,160],"135":[2,160],"136":[2,160],"138":[2,160],"139":[2,160],"140":[2,160],"141":[2,160],"142":[2,160],"143":[2,160],"144":[2,160],"145":[2,160],"146":[2,160],"147":[2,160],"149":[2,160]},{"1":[2,161],"4":[2,161],"29":[2,161],"30":[2,161],"52":[1,90],"60":[2,161],"64":[2,161],"81":[2,161],"86":[2,161],"96":[2,161],"101":[2,161],"110":[2,161],"111":102,"112":[1,72],"113":[2,161],"114":[1,73],"117":103,"118":[1,75],"119":76,"126":[2,161],"135":[2,161],"136":[2,161],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,165],"4":[2,165],"29":[2,165],"30":[2,165],"52":[2,165],"60":[2,165],"64":[2,165],"81":[2,165],"86":[2,165],"96":[2,165],"101":[2,165],"110":[2,165],"112":[2,165],"113":[2,165],"114":[2,165],"118":[2,165],"126":[2,165],"135":[2,165],"136":[2,165],"138":[2,165],"139":[2,165],"140":[2,165],"141":[2,165],"142":[2,165],"143":[2,165],"144":[2,165],"145":[2,165],"146":[2,165],"147":[2,165],"149":[2,165]},{"124":[2,167],"125":[2,167]},{"31":172,"32":[1,82],"68":173,"69":174,"84":[1,79],"100":[1,253],"121":252,"123":171},{"60":[1,254],"124":[2,172],"125":[2,172]},{"60":[2,169],"124":[2,169],"125":[2,169]},{"60":[2,170],"124":[2,170],"125":[2,170]},{"60":[2,171],"124":[2,171],"125":[2,171]},{"1":[2,166],"4":[2,166],"29":[2,166],"30":[2,166],"52":[2,166],"60":[2,166],"64":[2,166],"81":[2,166],"86":[2,166],"96":[2,166],"101":[2,166],"110":[2,166],"112":[2,166],"113":[2,166],"114":[2,166],"118":[2,166],"126":[2,166],"135":[2,166],"136":[2,166],"138":[2,166],"139":[2,166],"140":[2,166],"141":[2,166],"142":[2,166],"143":[2,166],"144":[2,166],"145":[2,166],"146":[2,166],"147":[2,166],"149":[2,166]},{"8":255,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":256,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[2,62],"29":[2,62],"59":257,"60":[1,258],"86":[2,62]},{"4":[2,96],"29":[2,96],"30":[2,96],"60":[2,96],"86":[2,96]},{"4":[2,46],"29":[2,46],"30":[2,46],"49":[1,259],"60":[2,46],"86":[2,46]},{"4":[2,47],"29":[2,47],"30":[2,47],"49":[1,260],"60":[2,47],"86":[2,47]},{"4":[2,48],"29":[2,48],"30":[2,48],"60":[2,48],"86":[2,48]},{"4":[2,53],"29":[2,53],"30":[2,53],"60":[2,53],"86":[2,53]},{"31":161,"32":[1,82]},{"1":[2,6],"4":[2,6],"30":[2,6]},{"1":[2,29],"4":[2,29],"29":[2,29],"30":[2,29],"52":[2,29],"60":[2,29],"64":[2,29],"81":[2,29],"86":[2,29],"96":[2,29],"101":[2,29],"106":[2,29],"107":[2,29],"110":[2,29],"112":[2,29],"113":[2,29],"114":[2,29],"118":[2,29],"126":[2,29],"129":[2,29],"131":[2,29],"135":[2,29],"136":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"149":[2,29]},{"1":[2,205],"4":[2,205],"29":[2,205],"30":[2,205],"52":[1,90],"60":[2,205],"64":[2,205],"81":[2,205],"86":[2,205],"96":[2,205],"101":[2,205],"110":[2,205],"111":102,"112":[2,205],"113":[2,205],"114":[2,205],"117":103,"118":[2,205],"119":76,"126":[2,205],"135":[2,205],"136":[2,205],"138":[2,205],"139":[2,205],"140":[2,205],"141":[2,205],"142":[2,205],"143":[2,205],"144":[2,205],"145":[2,205],"146":[2,205],"147":[2,205],"149":[2,205]},{"1":[2,206],"4":[2,206],"29":[2,206],"30":[2,206],"52":[1,90],"60":[2,206],"64":[2,206],"81":[2,206],"86":[2,206],"96":[2,206],"101":[2,206],"110":[2,206],"111":102,"112":[2,206],"113":[2,206],"114":[2,206],"117":103,"118":[2,206],"119":76,"126":[2,206],"135":[2,206],"136":[2,206],"138":[2,206],"139":[2,206],"140":[1,88],"141":[1,89],"142":[2,206],"143":[2,206],"144":[1,95],"145":[2,206],"146":[2,206],"147":[2,206],"149":[2,206]},{"1":[2,207],"4":[2,207],"29":[2,207],"30":[2,207],"52":[1,90],"60":[2,207],"64":[2,207],"81":[2,207],"86":[2,207],"96":[2,207],"101":[2,207],"110":[2,207],"111":102,"112":[2,207],"113":[2,207],"114":[2,207],"117":103,"118":[2,207],"119":76,"126":[2,207],"135":[2,207],"136":[2,207],"138":[2,207],"139":[2,207],"140":[1,88],"141":[1,89],"142":[2,207],"143":[2,207],"144":[1,95],"145":[2,207],"146":[2,207],"147":[2,207],"149":[2,207]},{"1":[2,208],"4":[2,208],"29":[2,208],"30":[2,208],"52":[1,90],"60":[2,208],"64":[2,208],"81":[2,208],"86":[2,208],"96":[2,208],"101":[2,208],"110":[2,208],"111":102,"112":[2,208],"113":[2,208],"114":[2,208],"117":103,"118":[2,208],"119":76,"126":[2,208],"135":[2,208],"136":[2,208],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[2,208],"143":[2,208],"144":[1,95],"145":[1,96],"146":[1,97],"147":[2,208],"149":[1,99]},{"1":[2,209],"4":[2,209],"29":[2,209],"30":[2,209],"52":[1,90],"60":[2,209],"64":[2,209],"81":[2,209],"86":[2,209],"96":[2,209],"101":[2,209],"110":[2,209],"111":102,"112":[2,209],"113":[2,209],"114":[2,209],"117":103,"118":[2,209],"119":76,"126":[2,209],"135":[2,209],"136":[2,209],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[2,209],"143":[2,209],"144":[1,95],"145":[1,96],"146":[1,97],"147":[2,209],"149":[1,99]},{"1":[2,210],"4":[2,210],"29":[2,210],"30":[2,210],"52":[1,90],"60":[2,210],"64":[2,210],"81":[2,210],"86":[2,210],"96":[2,210],"101":[2,210],"110":[2,210],"111":102,"112":[2,210],"113":[2,210],"114":[2,210],"117":103,"118":[2,210],"119":76,"126":[2,210],"135":[2,210],"136":[2,210],"138":[2,210],"139":[2,210],"140":[1,88],"141":[1,89],"142":[2,210],"143":[2,210],"144":[2,210],"145":[2,210],"146":[2,210],"147":[2,210],"149":[2,210]},{"1":[2,211],"4":[2,211],"29":[2,211],"30":[2,211],"52":[1,90],"60":[2,211],"64":[2,211],"81":[2,211],"86":[2,211],"96":[2,211],"101":[2,211],"110":[2,211],"111":102,"112":[2,211],"113":[2,211],"114":[2,211],"117":103,"118":[2,211],"119":76,"126":[2,211],"135":[2,211],"136":[2,211],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[2,211],"143":[2,211],"144":[1,95],"145":[2,211],"146":[2,211],"147":[2,211],"149":[2,211]},{"1":[2,212],"4":[2,212],"29":[2,212],"30":[2,212],"52":[1,90],"60":[2,212],"64":[2,212],"81":[2,212],"86":[2,212],"96":[2,212],"101":[2,212],"110":[2,212],"111":102,"112":[2,212],"113":[2,212],"114":[2,212],"117":103,"118":[2,212],"119":76,"126":[2,212],"135":[2,212],"136":[2,212],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[2,212],"143":[2,212],"144":[1,95],"145":[1,96],"146":[2,212],"147":[2,212],"149":[2,212]},{"1":[2,213],"4":[2,213],"29":[2,213],"30":[2,213],"52":[1,90],"60":[2,213],"64":[2,213],"81":[2,213],"86":[2,213],"96":[2,213],"101":[2,213],"110":[2,213],"111":102,"112":[2,213],"113":[2,213],"114":[2,213],"117":103,"118":[2,213],"119":76,"126":[2,213],"135":[2,213],"136":[2,213],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[2,213],"149":[1,99]},{"1":[2,216],"4":[2,216],"29":[2,216],"30":[2,216],"52":[1,90],"60":[2,216],"64":[2,216],"81":[2,216],"86":[2,216],"96":[2,216],"101":[2,216],"110":[2,216],"111":102,"112":[2,216],"113":[2,216],"114":[2,216],"117":103,"118":[2,216],"119":76,"126":[2,216],"135":[2,216],"136":[2,216],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[2,216],"143":[2,216],"144":[1,95],"145":[1,96],"146":[1,97],"147":[2,216],"149":[2,216]},{"1":[2,195],"4":[2,195],"29":[2,195],"30":[2,195],"52":[1,90],"60":[2,195],"64":[2,195],"81":[2,195],"86":[2,195],"96":[2,195],"101":[2,195],"110":[2,195],"111":102,"112":[1,72],"113":[2,195],"114":[1,73],"117":103,"118":[1,75],"119":76,"126":[2,195],"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,197],"4":[2,197],"29":[2,197],"30":[2,197],"52":[1,90],"60":[2,197],"64":[2,197],"81":[2,197],"86":[2,197],"96":[2,197],"101":[2,197],"110":[2,197],"111":102,"112":[1,72],"113":[2,197],"114":[1,73],"117":103,"118":[1,75],"119":76,"126":[2,197],"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,194],"4":[2,194],"29":[2,194],"30":[2,194],"52":[1,90],"60":[2,194],"64":[2,194],"81":[2,194],"86":[2,194],"96":[2,194],"101":[2,194],"110":[2,194],"111":102,"112":[1,72],"113":[2,194],"114":[1,73],"117":103,"118":[1,75],"119":76,"126":[2,194],"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,196],"4":[2,196],"29":[2,196],"30":[2,196],"52":[1,90],"60":[2,196],"64":[2,196],"81":[2,196],"86":[2,196],"96":[2,196],"101":[2,196],"110":[2,196],"111":102,"112":[1,72],"113":[2,196],"114":[1,73],"117":103,"118":[1,75],"119":76,"126":[2,196],"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,116],"4":[2,116],"29":[2,116],"30":[2,116],"52":[2,116],"60":[2,116],"64":[2,116],"74":[2,116],"75":[2,116],"76":[2,116],"77":[2,116],"80":[2,116],"81":[2,116],"82":[2,116],"83":[2,116],"86":[2,116],"94":[2,116],"95":[2,116],"96":[2,116],"101":[2,116],"110":[2,116],"112":[2,116],"113":[2,116],"114":[2,116],"118":[2,116],"126":[2,116],"135":[2,116],"136":[2,116],"138":[2,116],"139":[2,116],"140":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"146":[2,116],"147":[2,116],"149":[2,116]},{"1":[2,214],"4":[2,214],"29":[2,214],"30":[2,214],"52":[1,90],"60":[2,214],"64":[2,214],"81":[2,214],"86":[2,214],"96":[2,214],"101":[2,214],"110":[2,214],"111":102,"112":[2,214],"113":[2,214],"114":[2,214],"117":103,"118":[2,214],"119":76,"126":[2,214],"135":[2,214],"136":[2,214],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"8":261,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,85],"4":[2,85],"29":[2,85],"30":[2,85],"46":[2,85],"52":[2,85],"60":[2,85],"64":[2,85],"74":[2,85],"75":[2,85],"76":[2,85],"77":[2,85],"80":[2,85],"81":[2,85],"82":[2,85],"83":[2,85],"86":[2,85],"88":[2,85],"94":[2,85],"95":[2,85],"96":[2,85],"101":[2,85],"110":[2,85],"112":[2,85],"113":[2,85],"114":[2,85],"118":[2,85],"126":[2,85],"135":[2,85],"136":[2,85],"138":[2,85],"139":[2,85],"140":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"148":[2,85],"149":[2,85]},{"1":[2,86],"4":[2,86],"29":[2,86],"30":[2,86],"46":[2,86],"52":[2,86],"60":[2,86],"64":[2,86],"74":[2,86],"75":[2,86],"76":[2,86],"77":[2,86],"80":[2,86],"81":[2,86],"82":[2,86],"83":[2,86],"86":[2,86],"88":[2,86],"94":[2,86],"95":[2,86],"96":[2,86],"101":[2,86],"110":[2,86],"112":[2,86],"113":[2,86],"114":[2,86],"118":[2,86],"126":[2,86],"135":[2,86],"136":[2,86],"138":[2,86],"139":[2,86],"140":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"148":[2,86],"149":[2,86]},{"1":[2,88],"4":[2,88],"29":[2,88],"30":[2,88],"46":[2,88],"52":[2,88],"60":[2,88],"64":[2,88],"74":[2,88],"75":[2,88],"76":[2,88],"77":[2,88],"80":[2,88],"81":[2,88],"82":[2,88],"83":[2,88],"86":[2,88],"88":[2,88],"94":[2,88],"95":[2,88],"96":[2,88],"101":[2,88],"110":[2,88],"112":[2,88],"113":[2,88],"114":[2,88],"118":[2,88],"126":[2,88],"135":[2,88],"136":[2,88],"138":[2,88],"139":[2,88],"140":[2,88],"141":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88],"148":[2,88],"149":[2,88]},{"52":[1,90],"64":[1,209],"81":[1,262],"99":263,"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"8":264,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"64":[1,265]},{"1":[2,92],"4":[2,92],"29":[2,92],"30":[2,92],"46":[2,92],"52":[2,92],"60":[2,92],"64":[2,92],"74":[2,92],"75":[2,92],"76":[2,92],"77":[2,92],"80":[2,92],"81":[2,92],"82":[2,92],"83":[2,92],"86":[2,92],"88":[2,92],"94":[2,92],"95":[2,92],"96":[2,92],"101":[2,92],"110":[2,92],"112":[2,92],"113":[2,92],"114":[2,92],"118":[2,92],"126":[2,92],"135":[2,92],"136":[2,92],"138":[2,92],"139":[2,92],"140":[2,92],"141":[2,92],"142":[2,92],"143":[2,92],"144":[2,92],"145":[2,92],"146":[2,92],"147":[2,92],"148":[2,92],"149":[2,92]},{"8":266,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,93],"4":[2,93],"29":[2,93],"30":[2,93],"46":[2,93],"52":[2,93],"60":[2,93],"64":[2,93],"74":[2,93],"75":[2,93],"76":[2,93],"77":[2,93],"80":[2,93],"81":[2,93],"82":[2,93],"83":[2,93],"86":[2,93],"88":[2,93],"94":[2,93],"95":[2,93],"96":[2,93],"101":[2,93],"110":[2,93],"112":[2,93],"113":[2,93],"114":[2,93],"118":[2,93],"126":[2,93],"135":[2,93],"136":[2,93],"138":[2,93],"139":[2,93],"140":[2,93],"141":[2,93],"142":[2,93],"143":[2,93],"144":[2,93],"145":[2,93],"146":[2,93],"147":[2,93],"148":[2,93],"149":[2,93]},{"1":[2,117],"4":[2,117],"29":[2,117],"30":[2,117],"52":[2,117],"60":[2,117],"64":[2,117],"74":[2,117],"75":[2,117],"76":[2,117],"77":[2,117],"80":[2,117],"81":[2,117],"82":[2,117],"83":[2,117],"86":[2,117],"94":[2,117],"95":[2,117],"96":[2,117],"101":[2,117],"110":[2,117],"112":[2,117],"113":[2,117],"114":[2,117],"118":[2,117],"126":[2,117],"135":[2,117],"136":[2,117],"138":[2,117],"139":[2,117],"140":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"146":[2,117],"147":[2,117],"149":[2,117]},{"1":[2,44],"4":[2,44],"29":[2,44],"30":[2,44],"52":[1,90],"60":[2,44],"64":[2,44],"81":[2,44],"86":[2,44],"96":[2,44],"101":[2,44],"110":[2,44],"111":102,"112":[1,72],"113":[2,44],"114":[1,73],"117":103,"118":[1,75],"119":76,"126":[2,44],"135":[2,44],"136":[2,44],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"8":267,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,122],"4":[2,122],"29":[2,122],"30":[2,122],"52":[2,122],"60":[2,122],"64":[2,122],"74":[2,122],"75":[2,122],"76":[2,122],"77":[2,122],"80":[2,122],"81":[2,122],"82":[2,122],"83":[2,122],"86":[2,122],"94":[2,122],"95":[2,122],"96":[2,122],"101":[2,122],"110":[2,122],"112":[2,122],"113":[2,122],"114":[2,122],"118":[2,122],"126":[2,122],"135":[2,122],"136":[2,122],"138":[2,122],"139":[2,122],"140":[2,122],"141":[2,122],"142":[2,122],"143":[2,122],"144":[2,122],"145":[2,122],"146":[2,122],"147":[2,122],"149":[2,122]},{"4":[2,62],"29":[2,62],"59":268,"60":[1,246],"96":[2,62]},{"4":[2,140],"29":[2,140],"30":[2,140],"52":[1,90],"60":[2,140],"64":[1,269],"96":[2,140],"101":[2,140],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"56":270,"57":[1,68],"58":[1,69]},{"61":271,"62":[1,128],"63":[1,129]},{"64":[1,272]},{"55":[2,68],"60":[2,68],"64":[1,273]},{"8":274,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,192],"4":[2,192],"29":[2,192],"30":[2,192],"52":[2,192],"60":[2,192],"64":[2,192],"81":[2,192],"86":[2,192],"96":[2,192],"101":[2,192],"110":[2,192],"112":[2,192],"113":[2,192],"114":[2,192],"118":[2,192],"126":[2,192],"129":[2,192],"135":[2,192],"136":[2,192],"138":[2,192],"139":[2,192],"140":[2,192],"141":[2,192],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"149":[2,192]},{"1":[2,145],"4":[2,145],"29":[2,145],"30":[2,145],"52":[2,145],"60":[2,145],"64":[2,145],"81":[2,145],"86":[2,145],"96":[2,145],"101":[2,145],"106":[1,275],"110":[2,145],"112":[2,145],"113":[2,145],"114":[2,145],"118":[2,145],"126":[2,145],"135":[2,145],"136":[2,145],"138":[2,145],"139":[2,145],"140":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"146":[2,145],"147":[2,145],"149":[2,145]},{"4":[1,131],"6":276,"29":[1,6]},{"31":277,"32":[1,82]},{"128":278,"130":230,"131":[1,231]},{"30":[1,279],"129":[1,280],"130":281,"131":[1,231]},{"30":[2,185],"129":[2,185],"131":[2,185]},{"8":283,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"103":282,"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,115],"4":[2,115],"29":[2,115],"30":[2,115],"52":[2,115],"60":[2,115],"64":[2,115],"67":110,"74":[1,112],"75":[1,113],"76":[1,114],"77":[1,115],"78":116,"79":117,"80":[1,118],"81":[2,115],"82":[1,119],"83":[1,120],"86":[2,115],"91":108,"94":[1,111],"95":[2,120],"96":[2,115],"101":[2,115],"110":[2,115],"112":[2,115],"113":[2,115],"114":[2,115],"118":[2,115],"126":[2,115],"135":[2,115],"136":[2,115],"138":[2,115],"139":[2,115],"140":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"149":[2,115]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"52":[2,76],"60":[2,76],"64":[2,76],"74":[2,76],"75":[2,76],"76":[2,76],"77":[2,76],"80":[2,76],"81":[2,76],"82":[2,76],"83":[2,76],"86":[2,76],"94":[2,76],"95":[2,76],"96":[2,76],"101":[2,76],"110":[2,76],"112":[2,76],"113":[2,76],"114":[2,76],"118":[2,76],"126":[2,76],"135":[2,76],"136":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"149":[2,76]},{"15":284,"16":149,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":150,"48":78,"63":[1,67],"66":233,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"93":[1,34],"98":[1,66],"100":[1,65],"109":[1,64]},{"4":[2,111],"28":183,"30":[2,111],"31":180,"32":[1,82],"33":181,"34":[1,80],"35":[1,81],"47":239,"48":240,"51":[1,50],"63":[1,184],"84":[1,238],"89":285,"90":237},{"4":[1,287],"30":[1,286]},{"4":[2,112],"30":[2,112],"86":[2,112]},{"4":[2,111],"28":183,"31":180,"32":[1,82],"33":181,"34":[1,80],"35":[1,81],"47":239,"48":240,"51":[1,50],"63":[1,184],"84":[1,238],"86":[2,111],"89":288,"90":237},{"4":[2,108],"30":[2,108],"86":[2,108]},{"4":[2,48],"30":[2,48],"49":[1,289],"86":[2,48]},{"1":[2,106],"4":[2,106],"29":[1,290],"30":[2,106],"52":[2,106],"60":[2,106],"64":[2,106],"67":110,"74":[1,112],"75":[1,113],"76":[1,114],"77":[1,115],"78":116,"79":117,"80":[1,118],"81":[2,106],"82":[1,119],"83":[1,120],"86":[2,106],"91":108,"94":[1,111],"95":[2,120],"96":[2,106],"101":[2,106],"110":[2,106],"112":[2,106],"113":[2,106],"114":[2,106],"118":[2,106],"126":[2,106],"135":[2,106],"136":[2,106],"138":[2,106],"139":[2,106],"140":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"149":[2,106]},{"1":[2,150],"4":[2,150],"29":[2,150],"30":[2,150],"52":[2,150],"60":[2,150],"64":[2,150],"74":[2,150],"75":[2,150],"76":[2,150],"77":[2,150],"80":[2,150],"81":[2,150],"82":[2,150],"83":[2,150],"86":[2,150],"94":[2,150],"95":[2,150],"96":[2,150],"101":[2,150],"110":[2,150],"112":[2,150],"113":[2,150],"114":[2,150],"118":[2,150],"126":[2,150],"135":[2,150],"136":[2,150],"138":[2,150],"139":[2,150],"140":[2,150],"141":[2,150],"142":[2,150],"143":[2,150],"144":[2,150],"145":[2,150],"146":[2,150],"147":[2,150],"148":[2,150],"149":[2,150]},{"8":291,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"64":[1,292]},{"4":[1,294],"29":[1,295],"101":[1,293]},{"4":[2,63],"8":218,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[2,63],"30":[2,63],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"65":160,"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"96":[2,63],"98":[1,66],"100":[1,65],"101":[2,63],"102":296,"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[2,62],"29":[2,62],"30":[2,62],"59":297,"60":[1,246]},{"1":[2,189],"4":[2,189],"29":[2,189],"30":[2,189],"52":[2,189],"60":[2,189],"64":[2,189],"81":[2,189],"86":[2,189],"96":[2,189],"101":[2,189],"110":[2,189],"112":[2,189],"113":[2,189],"114":[2,189],"118":[2,189],"126":[2,189],"129":[2,189],"135":[2,189],"136":[2,189],"138":[2,189],"139":[2,189],"140":[2,189],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"149":[2,189]},{"1":[2,190],"4":[2,190],"29":[2,190],"30":[2,190],"52":[2,190],"60":[2,190],"64":[2,190],"81":[2,190],"86":[2,190],"96":[2,190],"101":[2,190],"110":[2,190],"112":[2,190],"113":[2,190],"114":[2,190],"118":[2,190],"126":[2,190],"129":[2,190],"135":[2,190],"136":[2,190],"138":[2,190],"139":[2,190],"140":[2,190],"141":[2,190],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"149":[2,190]},{"8":298,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":299,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"124":[2,168],"125":[2,168]},{"8":218,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,159],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"65":160,"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"97":157,"98":[1,66],"100":[1,65],"101":[1,156],"102":158,"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"31":172,"32":[1,82],"68":173,"69":174,"84":[1,79],"100":[1,253],"123":300},{"1":[2,174],"4":[2,174],"29":[2,174],"30":[2,174],"52":[1,90],"60":[2,174],"64":[2,174],"81":[2,174],"86":[2,174],"96":[2,174],"101":[2,174],"110":[2,174],"111":102,"112":[2,174],"113":[1,301],"114":[2,174],"117":103,"118":[2,174],"119":76,"126":[1,302],"135":[2,174],"136":[2,174],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,175],"4":[2,175],"29":[2,175],"30":[2,175],"52":[1,90],"60":[2,175],"64":[2,175],"81":[2,175],"86":[2,175],"96":[2,175],"101":[2,175],"110":[2,175],"111":102,"112":[2,175],"113":[1,303],"114":[2,175],"117":103,"118":[2,175],"119":76,"126":[2,175],"135":[2,175],"136":[2,175],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"4":[1,305],"29":[1,306],"86":[1,304]},{"4":[2,63],"28":183,"29":[2,63],"30":[2,63],"31":180,"32":[1,82],"33":181,"34":[1,80],"35":[1,81],"47":307,"48":182,"51":[1,50],"63":[1,184],"86":[2,63]},{"8":308,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,309],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":310,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,311],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"30":[1,312],"52":[1,90],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,91],"4":[2,91],"29":[2,91],"30":[2,91],"46":[2,91],"52":[2,91],"60":[2,91],"64":[2,91],"74":[2,91],"75":[2,91],"76":[2,91],"77":[2,91],"80":[2,91],"81":[2,91],"82":[2,91],"83":[2,91],"86":[2,91],"88":[2,91],"94":[2,91],"95":[2,91],"96":[2,91],"101":[2,91],"110":[2,91],"112":[2,91],"113":[2,91],"114":[2,91],"118":[2,91],"126":[2,91],"135":[2,91],"136":[2,91],"138":[2,91],"139":[2,91],"140":[2,91],"141":[2,91],"142":[2,91],"143":[2,91],"144":[2,91],"145":[2,91],"146":[2,91],"147":[2,91],"148":[2,91],"149":[2,91]},{"8":313,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"81":[1,314],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"52":[1,90],"81":[1,315],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"12":[2,126],"13":[2,126],"14":[2,126],"32":[2,126],"34":[2,126],"35":[2,126],"37":[2,126],"38":[2,126],"39":[2,126],"40":[2,126],"41":[2,126],"42":[2,126],"43":[2,126],"44":[2,126],"50":[2,126],"51":[2,126],"53":[2,126],"57":[2,126],"58":[2,126],"63":[2,126],"64":[1,316],"73":[2,126],"81":[2,126],"84":[2,126],"87":[2,126],"93":[2,126],"98":[2,126],"100":[2,126],"104":[2,126],"108":[2,126],"109":[2,126],"112":[2,126],"114":[2,126],"116":[2,126],"118":[2,126],"127":[2,126],"133":[2,126],"134":[2,126],"137":[2,126],"138":[2,126],"139":[2,126],"140":[2,126],"141":[2,126]},{"52":[1,90],"81":[1,262],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"30":[1,317],"52":[1,90],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"4":[1,294],"29":[1,295],"96":[1,318]},{"64":[1,319]},{"4":[1,131],"6":320,"29":[1,6]},{"55":[2,66],"60":[2,66]},{"64":[1,321]},{"64":[1,322]},{"4":[1,131],"6":323,"29":[1,6],"52":[1,90],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"4":[1,131],"6":324,"29":[1,6]},{"1":[2,146],"4":[2,146],"29":[2,146],"30":[2,146],"52":[2,146],"60":[2,146],"64":[2,146],"81":[2,146],"86":[2,146],"96":[2,146],"101":[2,146],"110":[2,146],"112":[2,146],"113":[2,146],"114":[2,146],"118":[2,146],"126":[2,146],"135":[2,146],"136":[2,146],"138":[2,146],"139":[2,146],"140":[2,146],"141":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"146":[2,146],"147":[2,146],"149":[2,146]},{"4":[1,131],"6":325,"29":[1,6]},{"30":[1,326],"129":[1,327],"130":281,"131":[1,231]},{"1":[2,183],"4":[2,183],"29":[2,183],"30":[2,183],"52":[2,183],"60":[2,183],"64":[2,183],"81":[2,183],"86":[2,183],"96":[2,183],"101":[2,183],"110":[2,183],"112":[2,183],"113":[2,183],"114":[2,183],"118":[2,183],"126":[2,183],"135":[2,183],"136":[2,183],"138":[2,183],"139":[2,183],"140":[2,183],"141":[2,183],"142":[2,183],"143":[2,183],"144":[2,183],"145":[2,183],"146":[2,183],"147":[2,183],"149":[2,183]},{"4":[1,131],"6":328,"29":[1,6]},{"30":[2,186],"129":[2,186],"131":[2,186]},{"4":[1,131],"6":329,"29":[1,6],"60":[1,330]},{"4":[2,142],"29":[2,142],"52":[1,90],"60":[2,142],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,101],"4":[2,101],"29":[1,331],"30":[2,101],"52":[2,101],"60":[2,101],"64":[2,101],"67":110,"74":[1,112],"75":[1,113],"76":[1,114],"77":[1,115],"78":116,"79":117,"80":[1,118],"81":[2,101],"82":[1,119],"83":[1,120],"86":[2,101],"91":108,"94":[1,111],"95":[2,120],"96":[2,101],"101":[2,101],"110":[2,101],"112":[2,101],"113":[2,101],"114":[2,101],"118":[2,101],"126":[2,101],"135":[2,101],"136":[2,101],"138":[2,101],"139":[2,101],"140":[2,101],"141":[2,101],"142":[2,101],"143":[2,101],"144":[2,101],"145":[2,101],"146":[2,101],"147":[2,101],"149":[2,101]},{"4":[1,287],"30":[1,332]},{"1":[2,104],"4":[2,104],"29":[2,104],"30":[2,104],"52":[2,104],"60":[2,104],"64":[2,104],"81":[2,104],"86":[2,104],"96":[2,104],"101":[2,104],"110":[2,104],"112":[2,104],"113":[2,104],"114":[2,104],"118":[2,104],"126":[2,104],"135":[2,104],"136":[2,104],"138":[2,104],"139":[2,104],"140":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"149":[2,104]},{"28":183,"31":180,"32":[1,82],"33":181,"34":[1,80],"35":[1,81],"47":239,"48":240,"51":[1,50],"63":[1,184],"90":333},{"4":[1,287],"86":[1,334]},{"8":335,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,336],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[2,111],"28":183,"30":[2,111],"31":180,"32":[1,82],"33":181,"34":[1,80],"35":[1,81],"47":239,"48":240,"51":[1,50],"63":[1,184],"84":[1,238],"89":337,"90":237},{"52":[1,90],"101":[1,338],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"12":[2,126],"13":[2,126],"14":[2,126],"32":[2,126],"34":[2,126],"35":[2,126],"37":[2,126],"38":[2,126],"39":[2,126],"40":[2,126],"41":[2,126],"42":[2,126],"43":[2,126],"44":[2,126],"50":[2,126],"51":[2,126],"53":[2,126],"57":[2,126],"58":[2,126],"63":[2,126],"64":[1,339],"73":[2,126],"84":[2,126],"87":[2,126],"93":[2,126],"98":[2,126],"100":[2,126],"104":[2,126],"108":[2,126],"109":[2,126],"112":[2,126],"114":[2,126],"116":[2,126],"118":[2,126],"127":[2,126],"133":[2,126],"134":[2,126],"137":[2,126],"138":[2,126],"139":[2,126],"140":[2,126],"141":[2,126]},{"1":[2,134],"4":[2,134],"29":[2,134],"30":[2,134],"46":[2,134],"52":[2,134],"60":[2,134],"64":[2,134],"74":[2,134],"75":[2,134],"76":[2,134],"77":[2,134],"80":[2,134],"81":[2,134],"82":[2,134],"83":[2,134],"86":[2,134],"94":[2,134],"95":[2,134],"96":[2,134],"101":[2,134],"110":[2,134],"112":[2,134],"113":[2,134],"114":[2,134],"118":[2,134],"124":[2,134],"125":[2,134],"126":[2,134],"135":[2,134],"136":[2,134],"138":[2,134],"139":[2,134],"140":[2,134],"141":[2,134],"142":[2,134],"143":[2,134],"144":[2,134],"145":[2,134],"146":[2,134],"147":[2,134],"148":[2,134],"149":[2,134]},{"8":218,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"65":160,"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"102":340,"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":218,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"29":[1,159],"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"65":160,"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"97":341,"98":[1,66],"100":[1,65],"102":158,"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[2,136],"29":[2,136],"30":[2,136],"60":[2,136],"96":[2,136],"101":[2,136]},{"4":[1,294],"29":[1,295],"30":[1,342]},{"1":[2,153],"4":[2,153],"29":[2,153],"30":[2,153],"52":[1,90],"60":[2,153],"64":[2,153],"81":[2,153],"86":[2,153],"96":[2,153],"101":[2,153],"110":[2,153],"111":102,"112":[1,72],"113":[2,153],"114":[1,73],"117":103,"118":[1,75],"119":76,"126":[2,153],"135":[2,153],"136":[2,153],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,155],"4":[2,155],"29":[2,155],"30":[2,155],"52":[1,90],"60":[2,155],"64":[2,155],"81":[2,155],"86":[2,155],"96":[2,155],"101":[2,155],"110":[2,155],"111":102,"112":[1,72],"113":[2,155],"114":[1,73],"117":103,"118":[1,75],"119":76,"126":[2,155],"135":[2,155],"136":[2,155],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"124":[2,173],"125":[2,173]},{"8":343,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":344,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":345,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,94],"4":[2,94],"29":[2,94],"30":[2,94],"46":[2,94],"52":[2,94],"60":[2,94],"64":[2,94],"74":[2,94],"75":[2,94],"76":[2,94],"77":[2,94],"80":[2,94],"81":[2,94],"82":[2,94],"83":[2,94],"86":[2,94],"94":[2,94],"95":[2,94],"96":[2,94],"101":[2,94],"110":[2,94],"112":[2,94],"113":[2,94],"114":[2,94],"118":[2,94],"124":[2,94],"125":[2,94],"126":[2,94],"135":[2,94],"136":[2,94],"138":[2,94],"139":[2,94],"140":[2,94],"141":[2,94],"142":[2,94],"143":[2,94],"144":[2,94],"145":[2,94],"146":[2,94],"147":[2,94],"148":[2,94],"149":[2,94]},{"28":183,"31":180,"32":[1,82],"33":181,"34":[1,80],"35":[1,81],"47":346,"48":182,"51":[1,50],"63":[1,184]},{"4":[2,95],"28":183,"29":[2,95],"30":[2,95],"31":180,"32":[1,82],"33":181,"34":[1,80],"35":[1,81],"47":179,"48":182,"51":[1,50],"60":[2,95],"63":[1,184],"85":347},{"4":[2,97],"29":[2,97],"30":[2,97],"60":[2,97],"86":[2,97]},{"4":[2,49],"29":[2,49],"30":[2,49],"52":[1,90],"60":[2,49],"86":[2,49],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"8":348,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[2,50],"29":[2,50],"30":[2,50],"52":[1,90],"60":[2,50],"86":[2,50],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"8":349,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"1":[2,215],"4":[2,215],"29":[2,215],"30":[2,215],"52":[2,215],"60":[2,215],"64":[2,215],"81":[2,215],"86":[2,215],"96":[2,215],"101":[2,215],"110":[2,215],"112":[2,215],"113":[2,215],"114":[2,215],"118":[2,215],"126":[2,215],"135":[2,215],"136":[2,215],"138":[2,215],"139":[2,215],"140":[2,215],"141":[2,215],"142":[2,215],"143":[2,215],"144":[2,215],"145":[2,215],"146":[2,215],"147":[2,215],"149":[2,215]},{"52":[1,90],"81":[1,350],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,131],"4":[2,131],"29":[2,131],"30":[2,131],"46":[2,131],"52":[2,131],"60":[2,131],"64":[2,131],"74":[2,131],"75":[2,131],"76":[2,131],"77":[2,131],"80":[2,131],"81":[2,131],"82":[2,131],"83":[2,131],"86":[2,131],"88":[2,131],"94":[2,131],"95":[2,131],"96":[2,131],"101":[2,131],"110":[2,131],"112":[2,131],"113":[2,131],"114":[2,131],"118":[2,131],"126":[2,131],"135":[2,131],"136":[2,131],"138":[2,131],"139":[2,131],"140":[2,131],"141":[2,131],"142":[2,131],"143":[2,131],"144":[2,131],"145":[2,131],"146":[2,131],"147":[2,131],"148":[2,131],"149":[2,131]},{"1":[2,132],"4":[2,132],"29":[2,132],"30":[2,132],"46":[2,132],"52":[2,132],"60":[2,132],"64":[2,132],"74":[2,132],"75":[2,132],"76":[2,132],"77":[2,132],"80":[2,132],"81":[2,132],"82":[2,132],"83":[2,132],"86":[2,132],"88":[2,132],"94":[2,132],"95":[2,132],"96":[2,132],"101":[2,132],"110":[2,132],"112":[2,132],"113":[2,132],"114":[2,132],"118":[2,132],"126":[2,132],"135":[2,132],"136":[2,132],"138":[2,132],"139":[2,132],"140":[2,132],"141":[2,132],"142":[2,132],"143":[2,132],"144":[2,132],"145":[2,132],"146":[2,132],"147":[2,132],"148":[2,132],"149":[2,132]},{"12":[2,127],"13":[2,127],"14":[2,127],"32":[2,127],"34":[2,127],"35":[2,127],"37":[2,127],"38":[2,127],"39":[2,127],"40":[2,127],"41":[2,127],"42":[2,127],"43":[2,127],"44":[2,127],"50":[2,127],"51":[2,127],"53":[2,127],"57":[2,127],"58":[2,127],"63":[2,127],"73":[2,127],"81":[2,127],"84":[2,127],"87":[2,127],"93":[2,127],"98":[2,127],"100":[2,127],"104":[2,127],"108":[2,127],"109":[2,127],"112":[2,127],"114":[2,127],"116":[2,127],"118":[2,127],"127":[2,127],"133":[2,127],"134":[2,127],"137":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127]},{"1":[2,45],"4":[2,45],"29":[2,45],"30":[2,45],"52":[2,45],"60":[2,45],"64":[2,45],"81":[2,45],"86":[2,45],"96":[2,45],"101":[2,45],"110":[2,45],"112":[2,45],"113":[2,45],"114":[2,45],"118":[2,45],"126":[2,45],"135":[2,45],"136":[2,45],"138":[2,45],"139":[2,45],"140":[2,45],"141":[2,45],"142":[2,45],"143":[2,45],"144":[2,45],"145":[2,45],"146":[2,45],"147":[2,45],"149":[2,45]},{"1":[2,123],"4":[2,123],"29":[2,123],"30":[2,123],"52":[2,123],"60":[2,123],"64":[2,123],"74":[2,123],"75":[2,123],"76":[2,123],"77":[2,123],"80":[2,123],"81":[2,123],"82":[2,123],"83":[2,123],"86":[2,123],"94":[2,123],"95":[2,123],"96":[2,123],"101":[2,123],"110":[2,123],"112":[2,123],"113":[2,123],"114":[2,123],"118":[2,123],"126":[2,123],"135":[2,123],"136":[2,123],"138":[2,123],"139":[2,123],"140":[2,123],"141":[2,123],"142":[2,123],"143":[2,123],"144":[2,123],"145":[2,123],"146":[2,123],"147":[2,123],"149":[2,123]},{"64":[1,351]},{"1":[2,58],"4":[2,58],"29":[2,58],"30":[2,58],"52":[2,58],"60":[2,58],"64":[2,58],"81":[2,58],"86":[2,58],"96":[2,58],"101":[2,58],"110":[2,58],"112":[2,58],"113":[2,58],"114":[2,58],"118":[2,58],"126":[2,58],"135":[2,58],"136":[2,58],"138":[2,58],"139":[2,58],"140":[2,58],"141":[2,58],"142":[2,58],"143":[2,58],"144":[2,58],"145":[2,58],"146":[2,58],"147":[2,58],"149":[2,58]},{"55":[2,69],"60":[2,69]},{"64":[1,352]},{"1":[2,191],"4":[2,191],"29":[2,191],"30":[2,191],"52":[2,191],"60":[2,191],"64":[2,191],"81":[2,191],"86":[2,191],"96":[2,191],"101":[2,191],"110":[2,191],"112":[2,191],"113":[2,191],"114":[2,191],"118":[2,191],"126":[2,191],"129":[2,191],"135":[2,191],"136":[2,191],"138":[2,191],"139":[2,191],"140":[2,191],"141":[2,191],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"149":[2,191]},{"1":[2,147],"4":[2,147],"29":[2,147],"30":[2,147],"52":[2,147],"60":[2,147],"64":[2,147],"81":[2,147],"86":[2,147],"96":[2,147],"101":[2,147],"110":[2,147],"112":[2,147],"113":[2,147],"114":[2,147],"118":[2,147],"126":[2,147],"135":[2,147],"136":[2,147],"138":[2,147],"139":[2,147],"140":[2,147],"141":[2,147],"142":[2,147],"143":[2,147],"144":[2,147],"145":[2,147],"146":[2,147],"147":[2,147],"149":[2,147]},{"1":[2,148],"4":[2,148],"29":[2,148],"30":[2,148],"52":[2,148],"60":[2,148],"64":[2,148],"81":[2,148],"86":[2,148],"96":[2,148],"101":[2,148],"106":[2,148],"110":[2,148],"112":[2,148],"113":[2,148],"114":[2,148],"118":[2,148],"126":[2,148],"135":[2,148],"136":[2,148],"138":[2,148],"139":[2,148],"140":[2,148],"141":[2,148],"142":[2,148],"143":[2,148],"144":[2,148],"145":[2,148],"146":[2,148],"147":[2,148],"149":[2,148]},{"1":[2,181],"4":[2,181],"29":[2,181],"30":[2,181],"52":[2,181],"60":[2,181],"64":[2,181],"81":[2,181],"86":[2,181],"96":[2,181],"101":[2,181],"110":[2,181],"112":[2,181],"113":[2,181],"114":[2,181],"118":[2,181],"126":[2,181],"135":[2,181],"136":[2,181],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"149":[2,181]},{"4":[1,131],"6":353,"29":[1,6]},{"30":[1,354]},{"4":[1,355],"30":[2,187],"129":[2,187],"131":[2,187]},{"8":356,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[2,111],"28":183,"30":[2,111],"31":180,"32":[1,82],"33":181,"34":[1,80],"35":[1,81],"47":239,"48":240,"51":[1,50],"63":[1,184],"84":[1,238],"89":357,"90":237},{"1":[2,102],"4":[2,102],"29":[2,102],"30":[2,102],"52":[2,102],"60":[2,102],"64":[2,102],"81":[2,102],"86":[2,102],"96":[2,102],"101":[2,102],"110":[2,102],"112":[2,102],"113":[2,102],"114":[2,102],"118":[2,102],"126":[2,102],"135":[2,102],"136":[2,102],"138":[2,102],"139":[2,102],"140":[2,102],"141":[2,102],"142":[2,102],"143":[2,102],"144":[2,102],"145":[2,102],"146":[2,102],"147":[2,102],"149":[2,102]},{"4":[2,113],"30":[2,113],"86":[2,113]},{"4":[2,114],"30":[2,114],"86":[2,114]},{"4":[2,109],"30":[2,109],"52":[1,90],"86":[2,109],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"8":358,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[1,287],"30":[1,359]},{"1":[2,129],"4":[2,129],"29":[2,129],"30":[2,129],"52":[2,129],"60":[2,129],"64":[2,129],"74":[2,129],"75":[2,129],"76":[2,129],"77":[2,129],"80":[2,129],"81":[2,129],"82":[2,129],"83":[2,129],"86":[2,129],"94":[2,129],"95":[2,129],"96":[2,129],"101":[2,129],"110":[2,129],"112":[2,129],"113":[2,129],"114":[2,129],"118":[2,129],"126":[2,129],"135":[2,129],"136":[2,129],"138":[2,129],"139":[2,129],"140":[2,129],"141":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129],"149":[2,129]},{"4":[2,71],"12":[2,127],"13":[2,127],"14":[2,127],"29":[2,71],"32":[2,127],"34":[2,127],"35":[2,127],"37":[2,127],"38":[2,127],"39":[2,127],"40":[2,127],"41":[2,127],"42":[2,127],"43":[2,127],"44":[2,127],"50":[2,127],"51":[2,127],"53":[2,127],"57":[2,127],"58":[2,127],"60":[2,71],"63":[2,127],"73":[2,127],"84":[2,127],"87":[2,127],"93":[2,127],"98":[2,127],"100":[2,127],"101":[2,71],"104":[2,127],"108":[2,127],"109":[2,127],"112":[2,127],"114":[2,127],"116":[2,127],"118":[2,127],"127":[2,127],"133":[2,127],"134":[2,127],"137":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127]},{"4":[2,137],"29":[2,137],"30":[2,137],"60":[2,137],"96":[2,137],"101":[2,137]},{"4":[2,62],"29":[2,62],"30":[2,62],"59":360,"60":[1,246]},{"4":[2,138],"29":[2,138],"30":[2,138],"60":[2,138],"96":[2,138],"101":[2,138]},{"1":[2,176],"4":[2,176],"29":[2,176],"30":[2,176],"52":[1,90],"60":[2,176],"64":[2,176],"81":[2,176],"86":[2,176],"96":[2,176],"101":[2,176],"110":[2,176],"111":102,"112":[2,176],"113":[2,176],"114":[2,176],"117":103,"118":[2,176],"119":76,"126":[1,361],"135":[2,176],"136":[2,176],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,178],"4":[2,178],"29":[2,178],"30":[2,178],"52":[1,90],"60":[2,178],"64":[2,178],"81":[2,178],"86":[2,178],"96":[2,178],"101":[2,178],"110":[2,178],"111":102,"112":[2,178],"113":[1,362],"114":[2,178],"117":103,"118":[2,178],"119":76,"126":[2,178],"135":[2,178],"136":[2,178],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,177],"4":[2,177],"29":[2,177],"30":[2,177],"52":[1,90],"60":[2,177],"64":[2,177],"81":[2,177],"86":[2,177],"96":[2,177],"101":[2,177],"110":[2,177],"111":102,"112":[2,177],"113":[2,177],"114":[2,177],"117":103,"118":[2,177],"119":76,"126":[2,177],"135":[2,177],"136":[2,177],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"4":[2,98],"29":[2,98],"30":[2,98],"60":[2,98],"86":[2,98]},{"4":[2,62],"29":[2,62],"30":[2,62],"59":363,"60":[1,258]},{"30":[1,364],"52":[1,90],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"30":[1,365],"52":[1,90],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,130],"4":[2,130],"29":[2,130],"30":[2,130],"46":[2,130],"52":[2,130],"60":[2,130],"64":[2,130],"74":[2,130],"75":[2,130],"76":[2,130],"77":[2,130],"80":[2,130],"81":[2,130],"82":[2,130],"83":[2,130],"86":[2,130],"88":[2,130],"94":[2,130],"95":[2,130],"96":[2,130],"101":[2,130],"110":[2,130],"112":[2,130],"113":[2,130],"114":[2,130],"118":[2,130],"126":[2,130],"135":[2,130],"136":[2,130],"138":[2,130],"139":[2,130],"140":[2,130],"141":[2,130],"142":[2,130],"143":[2,130],"144":[2,130],"145":[2,130],"146":[2,130],"147":[2,130],"148":[2,130],"149":[2,130]},{"4":[2,71],"29":[2,71],"30":[2,71],"60":[2,71],"96":[2,71],"101":[2,71]},{"55":[2,70],"60":[2,70]},{"30":[1,366]},{"1":[2,184],"4":[2,184],"29":[2,184],"30":[2,184],"52":[2,184],"60":[2,184],"64":[2,184],"81":[2,184],"86":[2,184],"96":[2,184],"101":[2,184],"110":[2,184],"112":[2,184],"113":[2,184],"114":[2,184],"118":[2,184],"126":[2,184],"135":[2,184],"136":[2,184],"138":[2,184],"139":[2,184],"140":[2,184],"141":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"147":[2,184],"149":[2,184]},{"30":[2,188],"129":[2,188],"131":[2,188]},{"4":[2,143],"29":[2,143],"52":[1,90],"60":[2,143],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"4":[1,287],"30":[1,367]},{"30":[1,368],"52":[1,90],"111":102,"112":[1,72],"114":[1,73],"117":103,"118":[1,75],"119":76,"135":[1,100],"136":[1,101],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,107],"4":[2,107],"29":[2,107],"30":[2,107],"52":[2,107],"60":[2,107],"64":[2,107],"81":[2,107],"86":[2,107],"96":[2,107],"101":[2,107],"110":[2,107],"112":[2,107],"113":[2,107],"114":[2,107],"118":[2,107],"126":[2,107],"135":[2,107],"136":[2,107],"138":[2,107],"139":[2,107],"140":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"149":[2,107]},{"4":[1,294],"29":[1,295],"30":[1,369]},{"8":370,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"8":371,"9":133,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":[1,27],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":22,"31":77,"32":[1,82],"33":55,"34":[1,80],"35":[1,81],"36":29,"37":[1,56],"38":[1,57],"39":[1,58],"40":[1,59],"41":[1,60],"42":[1,61],"43":[1,62],"44":[1,63],"45":28,"48":78,"50":[1,51],"51":[1,50],"53":[1,35],"56":36,"57":[1,68],"58":[1,69],"63":[1,67],"66":48,"68":53,"69":54,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,79],"87":[1,49],"93":[1,34],"98":[1,66],"100":[1,65],"104":[1,43],"108":[1,52],"109":[1,64],"111":44,"112":[1,72],"114":[1,73],"115":45,"116":[1,74],"117":46,"118":[1,75],"119":76,"127":[1,47],"132":42,"133":[1,70],"134":[1,71],"137":[1,37],"138":[1,38],"139":[1,39],"140":[1,40],"141":[1,41]},{"4":[1,305],"29":[1,306],"30":[1,372]},{"4":[2,51],"29":[2,51],"30":[2,51],"60":[2,51],"86":[2,51]},{"4":[2,52],"29":[2,52],"30":[2,52],"60":[2,52],"86":[2,52]},{"1":[2,182],"4":[2,182],"29":[2,182],"30":[2,182],"52":[2,182],"60":[2,182],"64":[2,182],"81":[2,182],"86":[2,182],"96":[2,182],"101":[2,182],"110":[2,182],"112":[2,182],"113":[2,182],"114":[2,182],"118":[2,182],"126":[2,182],"135":[2,182],"136":[2,182],"138":[2,182],"139":[2,182],"140":[2,182],"141":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"146":[2,182],"147":[2,182],"149":[2,182]},{"1":[2,103],"4":[2,103],"29":[2,103],"30":[2,103],"52":[2,103],"60":[2,103],"64":[2,103],"81":[2,103],"86":[2,103],"96":[2,103],"101":[2,103],"110":[2,103],"112":[2,103],"113":[2,103],"114":[2,103],"118":[2,103],"126":[2,103],"135":[2,103],"136":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"146":[2,103],"147":[2,103],"149":[2,103]},{"4":[2,110],"30":[2,110],"86":[2,110]},{"4":[2,139],"29":[2,139],"30":[2,139],"60":[2,139],"96":[2,139],"101":[2,139]},{"1":[2,179],"4":[2,179],"29":[2,179],"30":[2,179],"52":[1,90],"60":[2,179],"64":[2,179],"81":[2,179],"86":[2,179],"96":[2,179],"101":[2,179],"110":[2,179],"111":102,"112":[2,179],"113":[2,179],"114":[2,179],"117":103,"118":[2,179],"119":76,"126":[2,179],"135":[2,179],"136":[2,179],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"1":[2,180],"4":[2,180],"29":[2,180],"30":[2,180],"52":[1,90],"60":[2,180],"64":[2,180],"81":[2,180],"86":[2,180],"96":[2,180],"101":[2,180],"110":[2,180],"111":102,"112":[2,180],"113":[2,180],"114":[2,180],"117":103,"118":[2,180],"119":76,"126":[2,180],"135":[2,180],"136":[2,180],"138":[1,92],"139":[1,91],"140":[1,88],"141":[1,89],"142":[1,93],"143":[1,94],"144":[1,95],"145":[1,96],"146":[1,97],"147":[1,98],"149":[1,99]},{"4":[2,99],"29":[2,99],"30":[2,99],"60":[2,99],"86":[2,99]}], ++defaultActions: {"85":[2,4],"111":[2,121]}, + parseError: function parseError(str, hash) { + throw new Error(str); + }, +diff --git a/src/lexer.coffee b/src/lexer.coffee +index be1b319..2c7bc40 100644 +--- a/src/lexer.coffee ++++ b/src/lexer.coffee +@@ -41,6 +41,7 @@ exports.Lexer = class Lexer + @indent = 0 # The current indentation level. + @indebt = 0 # The over-indentation at the current level. + @outdebt = 0 # The under-outdentation at the current level. ++ @seenFor = no # The flag for distinguishing FORIN/FOROF from IN/OF. + @indents = [] # The stack of all current indentation levels. + @tokens = [] # Stream of parsed tokens in the form ['TYPE', value, line] + # At every position, run through this list of attempted matches, +@@ -84,11 +85,19 @@ exports.Lexer = class Lexer + tag = id.toUpperCase() + if tag is 'WHEN' and include LINE_BREAK, @tag() + tag = 'LEADING_WHEN' ++ else if tag is 'FOR' ++ @seenFor = yes + else if include UNARY, tag + tag = 'UNARY' +- else if include(RELATION, tag) and @value() in ['not', '!'] +- @tokens.pop() +- tag = 'NOT_RELATED' ++ else if include RELATION, tag ++ if tag isnt 'INSTANCEOF' and @seenFor ++ @seenFor = no ++ tag = 'FOR' + tag ++ else ++ tag = 'RELATION' ++ if @value() is '!' ++ @tokens.pop() ++ id = '!' + id + if include JS_FORBIDDEN, id + if forcedIdentifier + tag = 'STRING' +@@ -100,7 +109,7 @@ exports.Lexer = class Lexer + else if include(RESERVED, id) + @identifierError id + unless forcedIdentifier +- tag = id = CONVERSIONS[id] if include COFFEE_ALIASES, id ++ tag = id = COFFEE_ALIASES[id] if COFFEE_ALIASES.hasOwnProperty id + if id is '!' + tag = 'UNARY' + else if include LOGIC, id +@@ -307,7 +316,7 @@ exports.Lexer = class Lexer + if pval in ['or', 'and'] + prev = last @tokens + prev[0] = 'COMPOUND_ASSIGN' +- prev[1] = CONVERSIONS[pval] + '=' ++ prev[1] = COFFEE_ALIASES[pval] + '=' + return true + if ';' is value then tag = 'TERMINATOR' + else if include LOGIC , value then tag = 'LOGIC' +@@ -511,14 +520,20 @@ JS_KEYWORDS = [ + 'this', 'null', 'debugger' + ] + +-# CoffeeScript-only keywords, which we're more relaxed about allowing. They can't +-# be used standalone, but you can reference them as an attached property. +-COFFEE_ALIASES = ['and', 'or', 'is', 'isnt', 'not'] +-COFFEE_KEYWORDS = COFFEE_ALIASES.concat [ ++# CoffeeScript-only keywords. ++COFFEE_KEYWORDS = [ + 'then', 'unless', 'until', 'loop' + 'yes', 'no', 'on', 'off' + 'of', 'by', 'when' + ] ++COFFEE_ALIASES = ++ and : '&&' ++ or : '||' ++ is : '==' ++ isnt : '!=' ++ not : '!' ++COFFEE_KEYWORDS.push op for all op of COFFEE_ALIASES ++COFFEE_ALIASES['==='] = '==' + + # The list of keywords that are reserved by JavaScript, but not used, or are + # used by CoffeeScript internally. We throw an error when these are encountered, +@@ -611,12 +626,3 @@ CALLABLE = ['IDENTIFIER', 'SUPER', ')', ']', '}', 'STRING', '@', 'THIS', '?', ': + # occurs at the start of a line. We disambiguate these from trailing whens to + # avoid an ambiguity in the grammar. + LINE_BREAK = ['INDENT', 'OUTDENT', 'TERMINATOR'] +- +-# Conversions from CoffeeScript operators into JavaScript ones. +-CONVERSIONS = +- 'and': '&&' +- 'or': '||' +- 'is': '==' +- 'isnt': '!=' +- 'not': '!' +- '===': '==' +-- +2.9.3 + diff --git a/gnu/packages/patches/coffeescript-backport-not-instanceof.patch b/gnu/packages/patches/coffeescript-backport-not-instanceof.patch new file mode 100644 index 000000000..f5d93b010 --- /dev/null +++ b/gnu/packages/patches/coffeescript-backport-not-instanceof.patch @@ -0,0 +1,103 @@ +From c2d003b21ab54df67694bf1e0bdb368e1c2df01b Mon Sep 17 00:00:00 2001 +From: Jelle Licht +Date: Sun, 21 Aug 2016 01:43:15 +0200 +Subject: [PATCH] [BACKPORT] Issue #633. 'not instanceof' +To: guix-devel@gnu.org + +--- + lib/parser.js | 12 +++++++----- + src/grammar.coffee | 7 ++++--- + src/rewriter.coffee | 2 +- + 3 files changed, 12 insertions(+), 9 deletions(-) + +diff --git a/lib/parser.js b/lib/parser.js +index 48c5ab0..36fbfbc 100755 +--- a/lib/parser.js ++++ b/lib/parser.js +@@ -4,7 +4,7 @@ var parser = {trace: function trace() { }, + yy: {}, + symbols_: {"error":2,"Root":3,"TERMINATOR":4,"Body":5,"Block":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"Throw":11,"BREAK":12,"CONTINUE":13,"Value":14,"Call":15,"Code":16,"Operation":17,"Assign":18,"If":19,"Try":20,"While":21,"For":22,"Switch":23,"Extends":24,"Class":25,"Existence":26,"Comment":27,"INDENT":28,"OUTDENT":29,"Identifier":30,"IDENTIFIER":31,"AlphaNumeric":32,"NUMBER":33,"STRING":34,"Literal":35,"JS":36,"REGEX":37,"TRUE":38,"FALSE":39,"YES":40,"NO":41,"ON":42,"OFF":43,"Assignable":44,"=":45,"AssignObj":46,":":47,"RETURN":48,"HERECOMMENT":49,"?":50,"PARAM_START":51,"ParamList":52,"PARAM_END":53,"FuncGlyph":54,"->":55,"=>":56,"OptComma":57,",":58,"Param":59,"PARAM":60,"@":61,".":62,"Splat":63,"SimpleAssignable":64,"Accessor":65,"Invocation":66,"ThisProperty":67,"Array":68,"Object":69,"Parenthetical":70,"Range":71,"This":72,"NULL":73,"PROPERTY_ACCESS":74,"PROTOTYPE_ACCESS":75,"::":76,"SOAK_ACCESS":77,"Index":78,"Slice":79,"INDEX_START":80,"INDEX_END":81,"INDEX_SOAK":82,"INDEX_PROTO":83,"{":84,"AssignList":85,"}":86,"CLASS":87,"EXTENDS":88,"ClassBody":89,"ClassAssign":90,"Super":91,"NEW":92,"Arguments":93,"CALL_START":94,"ArgList":95,"CALL_END":96,"SUPER":97,"THIS":98,"[":99,"]":100,"Arg":101,"SimpleArgs":102,"TRY":103,"Catch":104,"FINALLY":105,"CATCH":106,"THROW":107,"(":108,")":109,"WhileSource":110,"WHILE":111,"WHEN":112,"UNTIL":113,"Loop":114,"LOOP":115,"ForBody":116,"FOR":117,"ForStart":118,"ForSource":119,"ForVariables":120,"ALL":121,"ForValue":122,"IN":123,"OF":124,"BY":125,"SWITCH":126,"Whens":127,"ELSE":128,"When":129,"LEADING_WHEN":130,"IfBlock":131,"IF":132,"UNLESS":133,"POST_IF":134,"POST_UNLESS":135,"UNARY":136,"-":137,"+":138,"--":139,"++":140,"==":141,"!=":142,"MATH":143,"SHIFT":144,"COMPARE":145,"LOGIC":146,"COMPOUND_ASSIGN":147,"INSTANCEOF":148,"$accept":0,"$end":1}, + terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","28":"INDENT","29":"OUTDENT","31":"IDENTIFIER","33":"NUMBER","34":"STRING","36":"JS","37":"REGEX","38":"TRUE","39":"FALSE","40":"YES","41":"NO","42":"ON","43":"OFF","45":"=","47":":","48":"RETURN","49":"HERECOMMENT","50":"?","51":"PARAM_START","53":"PARAM_END","55":"->","56":"=>","58":",","60":"PARAM","61":"@","62":".","73":"NULL","74":"PROPERTY_ACCESS","75":"PROTOTYPE_ACCESS","76":"::","77":"SOAK_ACCESS","80":"INDEX_START","81":"INDEX_END","82":"INDEX_SOAK","83":"INDEX_PROTO","84":"{","86":"}","87":"CLASS","88":"EXTENDS","92":"NEW","94":"CALL_START","96":"CALL_END","97":"SUPER","98":"THIS","99":"[","100":"]","103":"TRY","105":"FINALLY","106":"CATCH","107":"THROW","108":"(","109":")","111":"WHILE","112":"WHEN","113":"UNTIL","115":"LOOP","117":"FOR","121":"ALL","123":"IN","124":"OF","125":"BY","126":"SWITCH","128":"ELSE","130":"LEADING_WHEN","132":"IF","133":"UNLESS","134":"POST_IF","135":"POST_UNLESS","136":"UNARY","137":"-","138":"+","139":"--","140":"++","141":"==","142":"!=","143":"MATH","144":"SHIFT","145":"COMPARE","146":"LOGIC","147":"COMPOUND_ASSIGN","148":"INSTANCEOF"}, +-productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[18,3],[18,5],[46,1],[46,1],[46,3],[46,3],[46,5],[46,5],[46,1],[10,2],[10,1],[27,1],[26,2],[16,5],[16,2],[54,1],[54,1],[57,0],[57,1],[52,0],[52,1],[52,3],[59,1],[59,2],[59,4],[59,5],[63,4],[64,1],[64,2],[64,2],[64,1],[44,1],[44,1],[44,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[65,2],[65,2],[65,1],[65,2],[65,1],[65,1],[78,3],[78,2],[78,2],[69,4],[85,0],[85,1],[85,3],[85,4],[85,6],[25,2],[25,4],[25,5],[25,7],[25,4],[90,1],[90,3],[89,0],[89,1],[89,3],[89,3],[15,1],[15,1],[15,2],[15,2],[24,3],[66,2],[66,2],[93,4],[91,1],[91,2],[72,1],[72,1],[67,2],[71,6],[71,7],[79,6],[79,7],[79,5],[79,6],[79,5],[79,6],[68,4],[95,0],[95,1],[95,3],[95,4],[95,6],[101,1],[101,1],[102,1],[102,3],[20,3],[20,4],[20,5],[104,3],[11,2],[70,3],[70,2],[110,2],[110,4],[110,2],[110,4],[21,2],[21,2],[21,2],[21,1],[114,2],[114,2],[22,2],[22,2],[22,2],[116,2],[116,2],[118,2],[118,3],[122,1],[122,1],[122,1],[120,1],[120,3],[119,2],[119,2],[119,4],[119,4],[119,4],[119,6],[119,6],[23,5],[23,7],[23,4],[23,6],[127,1],[127,2],[129,3],[129,4],[131,3],[131,3],[131,5],[131,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,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,5],[17,3],[17,3],[17,3],[17,4],[17,4]], ++productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[18,3],[18,5],[46,1],[46,1],[46,3],[46,3],[46,5],[46,5],[46,1],[10,2],[10,1],[27,1],[26,2],[16,5],[16,2],[54,1],[54,1],[57,0],[57,1],[52,0],[52,1],[52,3],[59,1],[59,2],[59,4],[59,5],[63,4],[64,1],[64,2],[64,2],[64,1],[44,1],[44,1],[44,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[65,2],[65,2],[65,1],[65,2],[65,1],[65,1],[78,3],[78,2],[78,2],[69,4],[85,0],[85,1],[85,3],[85,4],[85,6],[25,2],[25,4],[25,5],[25,7],[25,4],[90,1],[90,3],[89,0],[89,1],[89,3],[89,3],[15,1],[15,1],[15,2],[15,2],[24,3],[66,2],[66,2],[93,4],[91,1],[91,2],[72,1],[72,1],[67,2],[71,6],[71,7],[79,6],[79,7],[79,5],[79,6],[79,5],[79,6],[68,4],[95,0],[95,1],[95,3],[95,4],[95,6],[101,1],[101,1],[102,1],[102,3],[20,3],[20,4],[20,5],[104,3],[11,2],[70,3],[70,2],[110,2],[110,4],[110,2],[110,4],[21,2],[21,2],[21,2],[21,1],[114,2],[114,2],[22,2],[22,2],[22,2],[116,2],[116,2],[118,2],[118,3],[122,1],[122,1],[122,1],[120,1],[120,3],[119,2],[119,2],[119,4],[119,4],[119,4],[119,6],[119,6],[23,5],[23,7],[23,4],[23,6],[127,1],[127,2],[129,3],[129,4],[131,3],[131,3],[131,5],[131,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,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,5],[17,3],[17,3],[17,3],[17,4],[17,4],[17,4]], + performAction: function anonymous(yytext,yyleng,yylineno,yy) { + + var $$ = arguments[5],$0=arguments[5].length; +@@ -491,19 +491,21 @@ case 209:this.$ = new OpNode($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); + break; + case 210:this.$ = new OpNode($$[$0-5+2-1], $$[$0-5+1-1], $$[$0-5+4-1]); + break; +-case 211:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 211:this.$ = new InNode($$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 212:this.$ = new InNode($$[$0-3+1-1], $$[$0-3+3-1]); ++case 212:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 213:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 213:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); + break; + case 214:this.$ = new OpNode($$[$0-4+2-1], new InNode($$[$0-4+1-1], $$[$0-4+4-1])); + break; + case 215:this.$ = new OpNode($$[$0-4+2-1], new ParentheticalNode(new OpNode('in', $$[$0-4+1-1], $$[$0-4+4-1]))); + break; ++case 216:this.$ = new OpNode($$[$0-4+2-1], new ParentheticalNode(new OpNode('instanceof', $$[$0-4+1-1], $$[$0-4+4-1]))); ++break; + } + }, +-table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,6],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[3]},{"1":[2,2],"27":85,"49":[1,51]},{"1":[2,3],"4":[1,86]},{"4":[1,87]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":88,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[1,89],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,8],"4":[2,8],"29":[2,8],"50":[1,92],"109":[2,8],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,9],"4":[2,9],"29":[2,9],"109":[2,9],"110":111,"111":[1,74],"113":[1,75],"116":112,"117":[1,77],"118":78,"134":[1,109],"135":[1,110]},{"1":[2,14],"4":[2,14],"28":[2,14],"29":[2,14],"50":[2,14],"58":[2,14],"62":[2,14],"65":115,"74":[1,117],"75":[1,118],"76":[1,119],"77":[1,120],"78":121,"79":122,"80":[1,123],"81":[2,14],"82":[1,124],"83":[1,125],"86":[2,14],"93":114,"94":[1,116],"96":[2,14],"100":[2,14],"109":[2,14],"111":[2,14],"112":[2,14],"113":[2,14],"117":[2,14],"123":[2,14],"124":[2,14],"125":[2,14],"134":[2,14],"135":[2,14],"136":[2,14],"137":[2,14],"138":[2,14],"139":[2,14],"140":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[1,113],"148":[2,14]},{"1":[2,15],"4":[2,15],"28":[2,15],"29":[2,15],"50":[2,15],"58":[2,15],"62":[2,15],"81":[2,15],"86":[2,15],"96":[2,15],"100":[2,15],"109":[2,15],"111":[2,15],"112":[2,15],"113":[2,15],"117":[2,15],"123":[2,15],"124":[2,15],"125":[2,15],"134":[2,15],"135":[2,15],"136":[2,15],"137":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"148":[2,15]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"50":[2,16],"58":[2,16],"62":[2,16],"81":[2,16],"86":[2,16],"96":[2,16],"100":[2,16],"109":[2,16],"111":[2,16],"112":[2,16],"113":[2,16],"117":[2,16],"123":[2,16],"124":[2,16],"125":[2,16],"134":[2,16],"135":[2,16],"136":[2,16],"137":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"148":[2,16]},{"1":[2,17],"4":[2,17],"28":[2,17],"29":[2,17],"50":[2,17],"58":[2,17],"62":[2,17],"81":[2,17],"86":[2,17],"96":[2,17],"100":[2,17],"109":[2,17],"111":[2,17],"112":[2,17],"113":[2,17],"117":[2,17],"123":[2,17],"124":[2,17],"125":[2,17],"134":[2,17],"135":[2,17],"136":[2,17],"137":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"148":[2,17]},{"1":[2,18],"4":[2,18],"28":[2,18],"29":[2,18],"50":[2,18],"58":[2,18],"62":[2,18],"81":[2,18],"86":[2,18],"96":[2,18],"100":[2,18],"109":[2,18],"111":[2,18],"112":[2,18],"113":[2,18],"117":[2,18],"123":[2,18],"124":[2,18],"125":[2,18],"134":[2,18],"135":[2,18],"136":[2,18],"137":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"148":[2,18]},{"1":[2,19],"4":[2,19],"28":[2,19],"29":[2,19],"50":[2,19],"58":[2,19],"62":[2,19],"81":[2,19],"86":[2,19],"96":[2,19],"100":[2,19],"109":[2,19],"111":[2,19],"112":[2,19],"113":[2,19],"117":[2,19],"123":[2,19],"124":[2,19],"125":[2,19],"134":[2,19],"135":[2,19],"136":[2,19],"137":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"148":[2,19]},{"1":[2,20],"4":[2,20],"28":[2,20],"29":[2,20],"50":[2,20],"58":[2,20],"62":[2,20],"81":[2,20],"86":[2,20],"96":[2,20],"100":[2,20],"109":[2,20],"111":[2,20],"112":[2,20],"113":[2,20],"117":[2,20],"123":[2,20],"124":[2,20],"125":[2,20],"134":[2,20],"135":[2,20],"136":[2,20],"137":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"148":[2,20]},{"1":[2,21],"4":[2,21],"28":[2,21],"29":[2,21],"50":[2,21],"58":[2,21],"62":[2,21],"81":[2,21],"86":[2,21],"96":[2,21],"100":[2,21],"109":[2,21],"111":[2,21],"112":[2,21],"113":[2,21],"117":[2,21],"123":[2,21],"124":[2,21],"125":[2,21],"134":[2,21],"135":[2,21],"136":[2,21],"137":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"148":[2,21]},{"1":[2,22],"4":[2,22],"28":[2,22],"29":[2,22],"50":[2,22],"58":[2,22],"62":[2,22],"81":[2,22],"86":[2,22],"96":[2,22],"100":[2,22],"109":[2,22],"111":[2,22],"112":[2,22],"113":[2,22],"117":[2,22],"123":[2,22],"124":[2,22],"125":[2,22],"134":[2,22],"135":[2,22],"136":[2,22],"137":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"148":[2,22]},{"1":[2,23],"4":[2,23],"28":[2,23],"29":[2,23],"50":[2,23],"58":[2,23],"62":[2,23],"81":[2,23],"86":[2,23],"96":[2,23],"100":[2,23],"109":[2,23],"111":[2,23],"112":[2,23],"113":[2,23],"117":[2,23],"123":[2,23],"124":[2,23],"125":[2,23],"134":[2,23],"135":[2,23],"136":[2,23],"137":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"148":[2,23]},{"1":[2,24],"4":[2,24],"28":[2,24],"29":[2,24],"50":[2,24],"58":[2,24],"62":[2,24],"81":[2,24],"86":[2,24],"96":[2,24],"100":[2,24],"109":[2,24],"111":[2,24],"112":[2,24],"113":[2,24],"117":[2,24],"123":[2,24],"124":[2,24],"125":[2,24],"134":[2,24],"135":[2,24],"136":[2,24],"137":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"148":[2,24]},{"1":[2,25],"4":[2,25],"28":[2,25],"29":[2,25],"50":[2,25],"58":[2,25],"62":[2,25],"81":[2,25],"86":[2,25],"96":[2,25],"100":[2,25],"109":[2,25],"111":[2,25],"112":[2,25],"113":[2,25],"117":[2,25],"123":[2,25],"124":[2,25],"125":[2,25],"134":[2,25],"135":[2,25],"136":[2,25],"137":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"148":[2,25]},{"1":[2,26],"4":[2,26],"28":[2,26],"29":[2,26],"50":[2,26],"58":[2,26],"62":[2,26],"81":[2,26],"86":[2,26],"96":[2,26],"100":[2,26],"109":[2,26],"111":[2,26],"112":[2,26],"113":[2,26],"117":[2,26],"123":[2,26],"124":[2,26],"125":[2,26],"134":[2,26],"135":[2,26],"136":[2,26],"137":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"148":[2,26]},{"1":[2,27],"4":[2,27],"28":[2,27],"29":[2,27],"50":[2,27],"58":[2,27],"62":[2,27],"81":[2,27],"86":[2,27],"96":[2,27],"100":[2,27],"109":[2,27],"111":[2,27],"112":[2,27],"113":[2,27],"117":[2,27],"123":[2,27],"124":[2,27],"125":[2,27],"134":[2,27],"135":[2,27],"136":[2,27],"137":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"148":[2,27]},{"1":[2,10],"4":[2,10],"29":[2,10],"109":[2,10],"111":[2,10],"113":[2,10],"117":[2,10],"134":[2,10],"135":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"109":[2,11],"111":[2,11],"113":[2,11],"117":[2,11],"134":[2,11],"135":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"109":[2,12],"111":[2,12],"113":[2,12],"117":[2,12],"134":[2,12],"135":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"109":[2,13],"111":[2,13],"113":[2,13],"117":[2,13],"134":[2,13],"135":[2,13]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"45":[1,126],"50":[2,77],"58":[2,77],"62":[2,77],"74":[2,77],"75":[2,77],"76":[2,77],"77":[2,77],"80":[2,77],"81":[2,77],"82":[2,77],"83":[2,77],"86":[2,77],"94":[2,77],"96":[2,77],"100":[2,77],"109":[2,77],"111":[2,77],"112":[2,77],"113":[2,77],"117":[2,77],"123":[2,77],"124":[2,77],"125":[2,77],"134":[2,77],"135":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77]},{"1":[2,78],"4":[2,78],"28":[2,78],"29":[2,78],"50":[2,78],"58":[2,78],"62":[2,78],"74":[2,78],"75":[2,78],"76":[2,78],"77":[2,78],"80":[2,78],"81":[2,78],"82":[2,78],"83":[2,78],"86":[2,78],"94":[2,78],"96":[2,78],"100":[2,78],"109":[2,78],"111":[2,78],"112":[2,78],"113":[2,78],"117":[2,78],"123":[2,78],"124":[2,78],"125":[2,78],"134":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78]},{"1":[2,79],"4":[2,79],"28":[2,79],"29":[2,79],"50":[2,79],"58":[2,79],"62":[2,79],"74":[2,79],"75":[2,79],"76":[2,79],"77":[2,79],"80":[2,79],"81":[2,79],"82":[2,79],"83":[2,79],"86":[2,79],"94":[2,79],"96":[2,79],"100":[2,79],"109":[2,79],"111":[2,79],"112":[2,79],"113":[2,79],"117":[2,79],"123":[2,79],"124":[2,79],"125":[2,79],"134":[2,79],"135":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79]},{"1":[2,80],"4":[2,80],"28":[2,80],"29":[2,80],"50":[2,80],"58":[2,80],"62":[2,80],"74":[2,80],"75":[2,80],"76":[2,80],"77":[2,80],"80":[2,80],"81":[2,80],"82":[2,80],"83":[2,80],"86":[2,80],"94":[2,80],"96":[2,80],"100":[2,80],"109":[2,80],"111":[2,80],"112":[2,80],"113":[2,80],"117":[2,80],"123":[2,80],"124":[2,80],"125":[2,80],"134":[2,80],"135":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"50":[2,81],"58":[2,81],"62":[2,81],"74":[2,81],"75":[2,81],"76":[2,81],"77":[2,81],"80":[2,81],"81":[2,81],"82":[2,81],"83":[2,81],"86":[2,81],"94":[2,81],"96":[2,81],"100":[2,81],"109":[2,81],"111":[2,81],"112":[2,81],"113":[2,81],"117":[2,81],"123":[2,81],"124":[2,81],"125":[2,81],"134":[2,81],"135":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81]},{"1":[2,82],"4":[2,82],"28":[2,82],"29":[2,82],"50":[2,82],"58":[2,82],"62":[2,82],"74":[2,82],"75":[2,82],"76":[2,82],"77":[2,82],"80":[2,82],"81":[2,82],"82":[2,82],"83":[2,82],"86":[2,82],"94":[2,82],"96":[2,82],"100":[2,82],"109":[2,82],"111":[2,82],"112":[2,82],"113":[2,82],"117":[2,82],"123":[2,82],"124":[2,82],"125":[2,82],"134":[2,82],"135":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82]},{"1":[2,109],"4":[2,109],"28":[2,109],"29":[2,109],"50":[2,109],"58":[2,109],"62":[2,109],"65":128,"74":[1,117],"75":[1,118],"76":[1,119],"77":[1,120],"78":121,"79":122,"80":[1,123],"81":[2,109],"82":[1,124],"83":[1,125],"86":[2,109],"93":127,"94":[1,116],"96":[2,109],"100":[2,109],"109":[2,109],"111":[2,109],"112":[2,109],"113":[2,109],"117":[2,109],"123":[2,109],"124":[2,109],"125":[2,109],"134":[2,109],"135":[2,109],"136":[2,109],"137":[2,109],"138":[2,109],"139":[2,109],"140":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"148":[2,109]},{"1":[2,110],"4":[2,110],"28":[2,110],"29":[2,110],"50":[2,110],"58":[2,110],"62":[2,110],"81":[2,110],"86":[2,110],"96":[2,110],"100":[2,110],"109":[2,110],"111":[2,110],"112":[2,110],"113":[2,110],"117":[2,110],"123":[2,110],"124":[2,110],"125":[2,110],"134":[2,110],"135":[2,110],"136":[2,110],"137":[2,110],"138":[2,110],"139":[2,110],"140":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"148":[2,110]},{"14":130,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":131,"61":[1,68],"64":132,"66":129,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"98":[1,67],"99":[1,66],"108":[1,65]},{"52":133,"53":[2,62],"58":[2,62],"59":134,"60":[1,135],"61":[1,136]},{"4":[1,138],"6":137,"28":[1,6]},{"8":139,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":141,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":142,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":143,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":144,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"50":[2,188],"58":[2,188],"62":[2,188],"81":[2,188],"86":[2,188],"96":[2,188],"100":[2,188],"109":[2,188],"111":[2,188],"112":[2,188],"113":[2,188],"117":[2,188],"123":[2,188],"124":[2,188],"125":[2,188],"128":[1,145],"134":[2,188],"135":[2,188],"136":[2,188],"137":[2,188],"138":[2,188],"139":[2,188],"140":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"148":[2,188]},{"4":[1,138],"6":146,"28":[1,6]},{"4":[1,138],"6":147,"28":[1,6]},{"1":[2,154],"4":[2,154],"28":[2,154],"29":[2,154],"50":[2,154],"58":[2,154],"62":[2,154],"81":[2,154],"86":[2,154],"96":[2,154],"100":[2,154],"109":[2,154],"111":[2,154],"112":[2,154],"113":[2,154],"117":[2,154],"123":[2,154],"124":[2,154],"125":[2,154],"134":[2,154],"135":[2,154],"136":[2,154],"137":[2,154],"138":[2,154],"139":[2,154],"140":[2,154],"141":[2,154],"142":[2,154],"143":[2,154],"144":[2,154],"145":[2,154],"146":[2,154],"148":[2,154]},{"4":[1,138],"6":148,"28":[1,6]},{"8":149,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,150],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"45":[2,74],"50":[2,74],"58":[2,74],"62":[2,74],"74":[2,74],"75":[2,74],"76":[2,74],"77":[2,74],"80":[2,74],"81":[2,74],"82":[2,74],"83":[2,74],"86":[2,74],"88":[1,151],"94":[2,74],"96":[2,74],"100":[2,74],"109":[2,74],"111":[2,74],"112":[2,74],"113":[2,74],"117":[2,74],"123":[2,74],"124":[2,74],"125":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74]},{"14":154,"28":[1,153],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":131,"61":[1,68],"64":152,"66":155,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"98":[1,67],"99":[1,66],"108":[1,65]},{"1":[2,54],"4":[2,54],"28":[2,54],"29":[2,54],"50":[2,54],"58":[2,54],"62":[2,54],"81":[2,54],"86":[2,54],"96":[2,54],"100":[2,54],"105":[2,54],"106":[2,54],"109":[2,54],"111":[2,54],"112":[2,54],"113":[2,54],"117":[2,54],"123":[2,54],"124":[2,54],"125":[2,54],"128":[2,54],"130":[2,54],"134":[2,54],"135":[2,54],"136":[2,54],"137":[2,54],"138":[2,54],"139":[2,54],"140":[2,54],"141":[2,54],"142":[2,54],"143":[2,54],"144":[2,54],"145":[2,54],"146":[2,54],"148":[2,54]},{"1":[2,53],"4":[2,53],"8":156,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[2,53],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"109":[2,53],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"134":[2,53],"135":[2,53],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":157,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"45":[2,75],"50":[2,75],"58":[2,75],"62":[2,75],"74":[2,75],"75":[2,75],"76":[2,75],"77":[2,75],"80":[2,75],"81":[2,75],"82":[2,75],"83":[2,75],"86":[2,75],"94":[2,75],"96":[2,75],"100":[2,75],"109":[2,75],"111":[2,75],"112":[2,75],"113":[2,75],"117":[2,75],"123":[2,75],"124":[2,75],"125":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75]},{"1":[2,76],"4":[2,76],"28":[2,76],"29":[2,76],"45":[2,76],"50":[2,76],"58":[2,76],"62":[2,76],"74":[2,76],"75":[2,76],"76":[2,76],"77":[2,76],"80":[2,76],"81":[2,76],"82":[2,76],"83":[2,76],"86":[2,76],"94":[2,76],"96":[2,76],"100":[2,76],"109":[2,76],"111":[2,76],"112":[2,76],"113":[2,76],"117":[2,76],"123":[2,76],"124":[2,76],"125":[2,76],"134":[2,76],"135":[2,76],"136":[2,76],"137":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76]},{"1":[2,34],"4":[2,34],"28":[2,34],"29":[2,34],"50":[2,34],"58":[2,34],"62":[2,34],"74":[2,34],"75":[2,34],"76":[2,34],"77":[2,34],"80":[2,34],"81":[2,34],"82":[2,34],"83":[2,34],"86":[2,34],"94":[2,34],"96":[2,34],"100":[2,34],"109":[2,34],"111":[2,34],"112":[2,34],"113":[2,34],"117":[2,34],"123":[2,34],"124":[2,34],"125":[2,34],"134":[2,34],"135":[2,34],"136":[2,34],"137":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34]},{"1":[2,35],"4":[2,35],"28":[2,35],"29":[2,35],"50":[2,35],"58":[2,35],"62":[2,35],"74":[2,35],"75":[2,35],"76":[2,35],"77":[2,35],"80":[2,35],"81":[2,35],"82":[2,35],"83":[2,35],"86":[2,35],"94":[2,35],"96":[2,35],"100":[2,35],"109":[2,35],"111":[2,35],"112":[2,35],"113":[2,35],"117":[2,35],"123":[2,35],"124":[2,35],"125":[2,35],"134":[2,35],"135":[2,35],"136":[2,35],"137":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35]},{"1":[2,36],"4":[2,36],"28":[2,36],"29":[2,36],"50":[2,36],"58":[2,36],"62":[2,36],"74":[2,36],"75":[2,36],"76":[2,36],"77":[2,36],"80":[2,36],"81":[2,36],"82":[2,36],"83":[2,36],"86":[2,36],"94":[2,36],"96":[2,36],"100":[2,36],"109":[2,36],"111":[2,36],"112":[2,36],"113":[2,36],"117":[2,36],"123":[2,36],"124":[2,36],"125":[2,36],"134":[2,36],"135":[2,36],"136":[2,36],"137":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"50":[2,37],"58":[2,37],"62":[2,37],"74":[2,37],"75":[2,37],"76":[2,37],"77":[2,37],"80":[2,37],"81":[2,37],"82":[2,37],"83":[2,37],"86":[2,37],"94":[2,37],"96":[2,37],"100":[2,37],"109":[2,37],"111":[2,37],"112":[2,37],"113":[2,37],"117":[2,37],"123":[2,37],"124":[2,37],"125":[2,37],"134":[2,37],"135":[2,37],"136":[2,37],"137":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"50":[2,38],"58":[2,38],"62":[2,38],"74":[2,38],"75":[2,38],"76":[2,38],"77":[2,38],"80":[2,38],"81":[2,38],"82":[2,38],"83":[2,38],"86":[2,38],"94":[2,38],"96":[2,38],"100":[2,38],"109":[2,38],"111":[2,38],"112":[2,38],"113":[2,38],"117":[2,38],"123":[2,38],"124":[2,38],"125":[2,38],"134":[2,38],"135":[2,38],"136":[2,38],"137":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"50":[2,39],"58":[2,39],"62":[2,39],"74":[2,39],"75":[2,39],"76":[2,39],"77":[2,39],"80":[2,39],"81":[2,39],"82":[2,39],"83":[2,39],"86":[2,39],"94":[2,39],"96":[2,39],"100":[2,39],"109":[2,39],"111":[2,39],"112":[2,39],"113":[2,39],"117":[2,39],"123":[2,39],"124":[2,39],"125":[2,39],"134":[2,39],"135":[2,39],"136":[2,39],"137":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39]},{"1":[2,40],"4":[2,40],"28":[2,40],"29":[2,40],"50":[2,40],"58":[2,40],"62":[2,40],"74":[2,40],"75":[2,40],"76":[2,40],"77":[2,40],"80":[2,40],"81":[2,40],"82":[2,40],"83":[2,40],"86":[2,40],"94":[2,40],"96":[2,40],"100":[2,40],"109":[2,40],"111":[2,40],"112":[2,40],"113":[2,40],"117":[2,40],"123":[2,40],"124":[2,40],"125":[2,40],"134":[2,40],"135":[2,40],"136":[2,40],"137":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40]},{"1":[2,41],"4":[2,41],"28":[2,41],"29":[2,41],"50":[2,41],"58":[2,41],"62":[2,41],"74":[2,41],"75":[2,41],"76":[2,41],"77":[2,41],"80":[2,41],"81":[2,41],"82":[2,41],"83":[2,41],"86":[2,41],"94":[2,41],"96":[2,41],"100":[2,41],"109":[2,41],"111":[2,41],"112":[2,41],"113":[2,41],"117":[2,41],"123":[2,41],"124":[2,41],"125":[2,41],"134":[2,41],"135":[2,41],"136":[2,41],"137":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41]},{"1":[2,42],"4":[2,42],"28":[2,42],"29":[2,42],"50":[2,42],"58":[2,42],"62":[2,42],"74":[2,42],"75":[2,42],"76":[2,42],"77":[2,42],"80":[2,42],"81":[2,42],"82":[2,42],"83":[2,42],"86":[2,42],"94":[2,42],"96":[2,42],"100":[2,42],"109":[2,42],"111":[2,42],"112":[2,42],"113":[2,42],"117":[2,42],"123":[2,42],"124":[2,42],"125":[2,42],"134":[2,42],"135":[2,42],"136":[2,42],"137":[2,42],"138":[2,42],"139":[2,42],"140":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"148":[2,42]},{"7":158,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"109":[1,159],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[2,131],"8":160,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,131],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"58":[2,131],"61":[1,68],"63":163,"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"95":161,"97":[1,69],"98":[1,67],"99":[1,66],"100":[2,131],"101":162,"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,119],"4":[2,119],"28":[2,119],"29":[2,119],"50":[2,119],"58":[2,119],"62":[2,119],"74":[2,119],"75":[2,119],"76":[2,119],"77":[2,119],"80":[2,119],"81":[2,119],"82":[2,119],"83":[2,119],"86":[2,119],"94":[2,119],"96":[2,119],"100":[2,119],"109":[2,119],"111":[2,119],"112":[2,119],"113":[2,119],"117":[2,119],"123":[2,119],"124":[2,119],"125":[2,119],"134":[2,119],"135":[2,119],"136":[2,119],"137":[2,119],"138":[2,119],"139":[2,119],"140":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"146":[2,119],"147":[2,119],"148":[2,119]},{"1":[2,120],"4":[2,120],"28":[2,120],"29":[2,120],"30":164,"31":[1,84],"50":[2,120],"58":[2,120],"62":[2,120],"74":[2,120],"75":[2,120],"76":[2,120],"77":[2,120],"80":[2,120],"81":[2,120],"82":[2,120],"83":[2,120],"86":[2,120],"94":[2,120],"96":[2,120],"100":[2,120],"109":[2,120],"111":[2,120],"112":[2,120],"113":[2,120],"117":[2,120],"123":[2,120],"124":[2,120],"125":[2,120],"134":[2,120],"135":[2,120],"136":[2,120],"137":[2,120],"138":[2,120],"139":[2,120],"140":[2,120],"141":[2,120],"142":[2,120],"143":[2,120],"144":[2,120],"145":[2,120],"146":[2,120],"147":[2,120],"148":[2,120]},{"1":[2,117],"4":[2,117],"28":[2,117],"29":[2,117],"50":[2,117],"58":[2,117],"62":[2,117],"81":[2,117],"86":[2,117],"93":165,"94":[1,116],"96":[2,117],"100":[2,117],"109":[2,117],"111":[2,117],"112":[2,117],"113":[2,117],"117":[2,117],"123":[2,117],"124":[2,117],"125":[2,117],"134":[2,117],"135":[2,117],"136":[2,117],"137":[2,117],"138":[2,117],"139":[2,117],"140":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"146":[2,117],"148":[2,117]},{"4":[2,58],"28":[2,58]},{"4":[2,59],"28":[2,59]},{"8":166,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":167,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":168,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":169,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[1,138],"6":170,"8":171,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,6],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"30":176,"31":[1,84],"68":177,"69":178,"71":172,"84":[1,81],"99":[1,66],"120":173,"121":[1,174],"122":175},{"119":179,"123":[1,180],"124":[1,181]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"45":[2,70],"50":[2,70],"58":[2,70],"62":[2,70],"74":[2,70],"75":[2,70],"76":[2,70],"77":[2,70],"80":[2,70],"81":[2,70],"82":[2,70],"83":[2,70],"86":[2,70],"88":[2,70],"94":[2,70],"96":[2,70],"100":[2,70],"109":[2,70],"111":[2,70],"112":[2,70],"113":[2,70],"117":[2,70],"123":[2,70],"124":[2,70],"125":[2,70],"134":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"45":[2,73],"50":[2,73],"58":[2,73],"62":[2,73],"74":[2,73],"75":[2,73],"76":[2,73],"77":[2,73],"80":[2,73],"81":[2,73],"82":[2,73],"83":[2,73],"86":[2,73],"88":[2,73],"94":[2,73],"96":[2,73],"100":[2,73],"109":[2,73],"111":[2,73],"112":[2,73],"113":[2,73],"117":[2,73],"123":[2,73],"124":[2,73],"125":[2,73],"134":[2,73],"135":[2,73],"136":[2,73],"137":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73]},{"4":[2,93],"27":186,"28":[2,93],"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":183,"49":[1,51],"58":[2,93],"85":182,"86":[2,93]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"47":[2,32],"50":[2,32],"58":[2,32],"62":[2,32],"74":[2,32],"75":[2,32],"76":[2,32],"77":[2,32],"80":[2,32],"81":[2,32],"82":[2,32],"83":[2,32],"86":[2,32],"94":[2,32],"96":[2,32],"100":[2,32],"109":[2,32],"111":[2,32],"112":[2,32],"113":[2,32],"117":[2,32],"123":[2,32],"124":[2,32],"125":[2,32],"134":[2,32],"135":[2,32],"136":[2,32],"137":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32]},{"1":[2,33],"4":[2,33],"28":[2,33],"29":[2,33],"47":[2,33],"50":[2,33],"58":[2,33],"62":[2,33],"74":[2,33],"75":[2,33],"76":[2,33],"77":[2,33],"80":[2,33],"81":[2,33],"82":[2,33],"83":[2,33],"86":[2,33],"94":[2,33],"96":[2,33],"100":[2,33],"109":[2,33],"111":[2,33],"112":[2,33],"113":[2,33],"117":[2,33],"123":[2,33],"124":[2,33],"125":[2,33],"134":[2,33],"135":[2,33],"136":[2,33],"137":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33]},{"1":[2,31],"4":[2,31],"28":[2,31],"29":[2,31],"45":[2,31],"47":[2,31],"50":[2,31],"58":[2,31],"62":[2,31],"74":[2,31],"75":[2,31],"76":[2,31],"77":[2,31],"80":[2,31],"81":[2,31],"82":[2,31],"83":[2,31],"86":[2,31],"88":[2,31],"94":[2,31],"96":[2,31],"100":[2,31],"109":[2,31],"111":[2,31],"112":[2,31],"113":[2,31],"117":[2,31],"123":[2,31],"124":[2,31],"125":[2,31],"134":[2,31],"135":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"50":[2,30],"58":[2,30],"62":[2,30],"81":[2,30],"86":[2,30],"96":[2,30],"100":[2,30],"105":[2,30],"106":[2,30],"109":[2,30],"111":[2,30],"112":[2,30],"113":[2,30],"117":[2,30],"123":[2,30],"124":[2,30],"125":[2,30],"128":[2,30],"130":[2,30],"134":[2,30],"135":[2,30],"136":[2,30],"137":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"148":[2,30]},{"1":[2,7],"4":[2,7],"7":187,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[2,7],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,4]},{"4":[1,86],"29":[1,188]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"50":[2,29],"58":[2,29],"62":[2,29],"81":[2,29],"86":[2,29],"96":[2,29],"100":[2,29],"105":[2,29],"106":[2,29],"109":[2,29],"111":[2,29],"112":[2,29],"113":[2,29],"117":[2,29],"123":[2,29],"124":[2,29],"125":[2,29],"128":[2,29],"130":[2,29],"134":[2,29],"135":[2,29],"136":[2,29],"137":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"148":[2,29]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"50":[2,198],"58":[2,198],"62":[2,198],"81":[2,198],"86":[2,198],"96":[2,198],"100":[2,198],"109":[2,198],"111":[2,198],"112":[2,198],"113":[2,198],"117":[2,198],"123":[2,198],"124":[2,198],"125":[2,198],"134":[2,198],"135":[2,198],"136":[2,198],"137":[2,198],"138":[2,198],"139":[2,198],"140":[2,198],"141":[2,198],"142":[2,198],"143":[2,198],"144":[2,198],"145":[2,198],"146":[2,198],"148":[2,198]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"50":[2,199],"58":[2,199],"62":[2,199],"81":[2,199],"86":[2,199],"96":[2,199],"100":[2,199],"109":[2,199],"111":[2,199],"112":[2,199],"113":[2,199],"117":[2,199],"123":[2,199],"124":[2,199],"125":[2,199],"134":[2,199],"135":[2,199],"136":[2,199],"137":[2,199],"138":[2,199],"139":[2,199],"140":[2,199],"141":[2,199],"142":[2,199],"143":[2,199],"144":[2,199],"145":[2,199],"146":[2,199],"148":[2,199]},{"1":[2,55],"4":[2,55],"8":189,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,55],"29":[2,55],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"50":[2,55],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"58":[2,55],"61":[1,68],"62":[2,55],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"81":[2,55],"84":[1,81],"86":[2,55],"87":[1,50],"91":34,"92":[1,35],"96":[2,55],"97":[1,69],"98":[1,67],"99":[1,66],"100":[2,55],"103":[1,44],"107":[1,53],"108":[1,65],"109":[2,55],"110":45,"111":[2,55],"112":[2,55],"113":[2,55],"114":46,"115":[1,76],"116":47,"117":[2,55],"118":78,"123":[2,55],"124":[2,55],"125":[2,55],"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"134":[2,55],"135":[2,55],"136":[2,55],"137":[2,55],"138":[2,55],"139":[2,55],"140":[2,55],"141":[2,55],"142":[2,55],"143":[2,55],"144":[2,55],"145":[2,55],"146":[2,55],"148":[2,55]},{"8":190,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":191,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":192,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":193,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":194,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":195,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":196,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":197,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":198,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":199,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":200,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"123":[1,201],"124":[1,202]},{"8":203,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":204,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,153],"4":[2,153],"28":[2,153],"29":[2,153],"50":[2,153],"58":[2,153],"62":[2,153],"81":[2,153],"86":[2,153],"96":[2,153],"100":[2,153],"109":[2,153],"111":[2,153],"112":[2,153],"113":[2,153],"117":[2,153],"123":[2,153],"124":[2,153],"125":[2,153],"134":[2,153],"135":[2,153],"136":[2,153],"137":[2,153],"138":[2,153],"139":[2,153],"140":[2,153],"141":[2,153],"142":[2,153],"143":[2,153],"144":[2,153],"145":[2,153],"146":[2,153],"148":[2,153]},{"1":[2,158],"4":[2,158],"28":[2,158],"29":[2,158],"50":[2,158],"58":[2,158],"62":[2,158],"81":[2,158],"86":[2,158],"96":[2,158],"100":[2,158],"109":[2,158],"111":[2,158],"112":[2,158],"113":[2,158],"117":[2,158],"123":[2,158],"124":[2,158],"125":[2,158],"134":[2,158],"135":[2,158],"136":[2,158],"137":[2,158],"138":[2,158],"139":[2,158],"140":[2,158],"141":[2,158],"142":[2,158],"143":[2,158],"144":[2,158],"145":[2,158],"146":[2,158],"148":[2,158]},{"8":205,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":206,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,152],"4":[2,152],"28":[2,152],"29":[2,152],"50":[2,152],"58":[2,152],"62":[2,152],"81":[2,152],"86":[2,152],"96":[2,152],"100":[2,152],"109":[2,152],"111":[2,152],"112":[2,152],"113":[2,152],"117":[2,152],"123":[2,152],"124":[2,152],"125":[2,152],"134":[2,152],"135":[2,152],"136":[2,152],"137":[2,152],"138":[2,152],"139":[2,152],"140":[2,152],"141":[2,152],"142":[2,152],"143":[2,152],"144":[2,152],"145":[2,152],"146":[2,152],"148":[2,152]},{"1":[2,157],"4":[2,157],"28":[2,157],"29":[2,157],"50":[2,157],"58":[2,157],"62":[2,157],"81":[2,157],"86":[2,157],"96":[2,157],"100":[2,157],"109":[2,157],"111":[2,157],"112":[2,157],"113":[2,157],"117":[2,157],"123":[2,157],"124":[2,157],"125":[2,157],"134":[2,157],"135":[2,157],"136":[2,157],"137":[2,157],"138":[2,157],"139":[2,157],"140":[2,157],"141":[2,157],"142":[2,157],"143":[2,157],"144":[2,157],"145":[2,157],"146":[2,157],"148":[2,157]},{"8":207,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,208],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,114],"4":[2,114],"28":[2,114],"29":[2,114],"50":[2,114],"58":[2,114],"62":[2,114],"74":[2,114],"75":[2,114],"76":[2,114],"77":[2,114],"80":[2,114],"81":[2,114],"82":[2,114],"83":[2,114],"86":[2,114],"94":[2,114],"96":[2,114],"100":[2,114],"109":[2,114],"111":[2,114],"112":[2,114],"113":[2,114],"117":[2,114],"123":[2,114],"124":[2,114],"125":[2,114],"134":[2,114],"135":[2,114],"136":[2,114],"137":[2,114],"138":[2,114],"139":[2,114],"140":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"148":[2,114]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"45":[2,71],"50":[2,71],"58":[2,71],"62":[2,71],"74":[2,71],"75":[2,71],"76":[2,71],"77":[2,71],"80":[2,71],"81":[2,71],"82":[2,71],"83":[2,71],"86":[2,71],"88":[2,71],"94":[2,71],"96":[2,71],"100":[2,71],"109":[2,71],"111":[2,71],"112":[2,71],"113":[2,71],"117":[2,71],"123":[2,71],"124":[2,71],"125":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71],"138":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71]},{"4":[2,131],"8":210,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,131],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"58":[2,131],"61":[1,68],"63":163,"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"95":209,"96":[2,131],"97":[1,69],"98":[1,67],"99":[1,66],"101":162,"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"30":211,"31":[1,84]},{"30":212,"31":[1,84]},{"1":[2,85],"4":[2,85],"28":[2,85],"29":[2,85],"45":[2,85],"50":[2,85],"58":[2,85],"62":[2,85],"74":[2,85],"75":[2,85],"76":[2,85],"77":[2,85],"80":[2,85],"81":[2,85],"82":[2,85],"83":[2,85],"86":[2,85],"88":[2,85],"94":[2,85],"96":[2,85],"100":[2,85],"109":[2,85],"111":[2,85],"112":[2,85],"113":[2,85],"117":[2,85],"123":[2,85],"124":[2,85],"125":[2,85],"134":[2,85],"135":[2,85],"136":[2,85],"137":[2,85],"138":[2,85],"139":[2,85],"140":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"148":[2,85]},{"30":213,"31":[1,84]},{"1":[2,87],"4":[2,87],"28":[2,87],"29":[2,87],"45":[2,87],"50":[2,87],"58":[2,87],"62":[2,87],"74":[2,87],"75":[2,87],"76":[2,87],"77":[2,87],"80":[2,87],"81":[2,87],"82":[2,87],"83":[2,87],"86":[2,87],"88":[2,87],"94":[2,87],"96":[2,87],"100":[2,87],"109":[2,87],"111":[2,87],"112":[2,87],"113":[2,87],"117":[2,87],"123":[2,87],"124":[2,87],"125":[2,87],"134":[2,87],"135":[2,87],"136":[2,87],"137":[2,87],"138":[2,87],"139":[2,87],"140":[2,87],"141":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87],"148":[2,87]},{"1":[2,88],"4":[2,88],"28":[2,88],"29":[2,88],"45":[2,88],"50":[2,88],"58":[2,88],"62":[2,88],"74":[2,88],"75":[2,88],"76":[2,88],"77":[2,88],"80":[2,88],"81":[2,88],"82":[2,88],"83":[2,88],"86":[2,88],"88":[2,88],"94":[2,88],"96":[2,88],"100":[2,88],"109":[2,88],"111":[2,88],"112":[2,88],"113":[2,88],"117":[2,88],"123":[2,88],"124":[2,88],"125":[2,88],"134":[2,88],"135":[2,88],"136":[2,88],"137":[2,88],"138":[2,88],"139":[2,88],"140":[2,88],"141":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88],"148":[2,88]},{"8":214,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"62":[1,215],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"78":216,"80":[1,217],"82":[1,124],"83":[1,125]},{"78":218,"80":[1,217],"82":[1,124],"83":[1,125]},{"8":219,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,220],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,115],"4":[2,115],"28":[2,115],"29":[2,115],"50":[2,115],"58":[2,115],"62":[2,115],"74":[2,115],"75":[2,115],"76":[2,115],"77":[2,115],"80":[2,115],"81":[2,115],"82":[2,115],"83":[2,115],"86":[2,115],"94":[2,115],"96":[2,115],"100":[2,115],"109":[2,115],"111":[2,115],"112":[2,115],"113":[2,115],"117":[2,115],"123":[2,115],"124":[2,115],"125":[2,115],"134":[2,115],"135":[2,115],"136":[2,115],"137":[2,115],"138":[2,115],"139":[2,115],"140":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"148":[2,115]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"45":[2,72],"50":[2,72],"58":[2,72],"62":[2,72],"74":[2,72],"75":[2,72],"76":[2,72],"77":[2,72],"80":[2,72],"81":[2,72],"82":[2,72],"83":[2,72],"86":[2,72],"88":[2,72],"94":[2,72],"96":[2,72],"100":[2,72],"109":[2,72],"111":[2,72],"112":[2,72],"113":[2,72],"117":[2,72],"123":[2,72],"124":[2,72],"125":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72]},{"1":[2,111],"4":[2,111],"28":[2,111],"29":[2,111],"50":[2,111],"58":[2,111],"62":[2,111],"65":128,"74":[1,117],"75":[1,118],"76":[1,119],"77":[1,120],"78":121,"79":122,"80":[1,123],"81":[2,111],"82":[1,124],"83":[1,125],"86":[2,111],"93":127,"94":[1,116],"96":[2,111],"100":[2,111],"109":[2,111],"111":[2,111],"112":[2,111],"113":[2,111],"117":[2,111],"123":[2,111],"124":[2,111],"125":[2,111],"134":[2,111],"135":[2,111],"136":[2,111],"137":[2,111],"138":[2,111],"139":[2,111],"140":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"148":[2,111]},{"1":[2,112],"4":[2,112],"28":[2,112],"29":[2,112],"50":[2,112],"58":[2,112],"62":[2,112],"65":115,"74":[1,117],"75":[1,118],"76":[1,119],"77":[1,120],"78":121,"79":122,"80":[1,123],"81":[2,112],"82":[1,124],"83":[1,125],"86":[2,112],"93":114,"94":[1,116],"96":[2,112],"100":[2,112],"109":[2,112],"111":[2,112],"112":[2,112],"113":[2,112],"117":[2,112],"123":[2,112],"124":[2,112],"125":[2,112],"134":[2,112],"135":[2,112],"136":[2,112],"137":[2,112],"138":[2,112],"139":[2,112],"140":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"148":[2,112]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"50":[2,77],"58":[2,77],"62":[2,77],"74":[2,77],"75":[2,77],"76":[2,77],"77":[2,77],"80":[2,77],"81":[2,77],"82":[2,77],"83":[2,77],"86":[2,77],"94":[2,77],"96":[2,77],"100":[2,77],"109":[2,77],"111":[2,77],"112":[2,77],"113":[2,77],"117":[2,77],"123":[2,77],"124":[2,77],"125":[2,77],"134":[2,77],"135":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"148":[2,77]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"50":[2,74],"58":[2,74],"62":[2,74],"74":[2,74],"75":[2,74],"76":[2,74],"77":[2,74],"80":[2,74],"81":[2,74],"82":[2,74],"83":[2,74],"86":[2,74],"94":[2,74],"96":[2,74],"100":[2,74],"109":[2,74],"111":[2,74],"112":[2,74],"113":[2,74],"117":[2,74],"123":[2,74],"124":[2,74],"125":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"148":[2,74]},{"53":[1,221],"58":[1,222]},{"53":[2,63],"58":[2,63]},{"53":[2,65],"58":[2,65],"62":[1,223]},{"60":[1,224]},{"1":[2,57],"4":[2,57],"28":[2,57],"29":[2,57],"50":[2,57],"58":[2,57],"62":[2,57],"81":[2,57],"86":[2,57],"96":[2,57],"100":[2,57],"109":[2,57],"111":[2,57],"112":[2,57],"113":[2,57],"117":[2,57],"123":[2,57],"124":[2,57],"125":[2,57],"134":[2,57],"135":[2,57],"136":[2,57],"137":[2,57],"138":[2,57],"139":[2,57],"140":[2,57],"141":[2,57],"142":[2,57],"143":[2,57],"144":[2,57],"145":[2,57],"146":[2,57],"148":[2,57]},{"27":85,"49":[1,51]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"50":[1,92],"58":[2,193],"62":[2,193],"81":[2,193],"86":[2,193],"96":[2,193],"100":[2,193],"109":[2,193],"110":107,"111":[2,193],"112":[2,193],"113":[2,193],"116":108,"117":[2,193],"118":78,"123":[2,193],"124":[2,193],"125":[2,193],"134":[2,193],"135":[2,193],"136":[1,104],"137":[2,193],"138":[2,193],"139":[1,90],"140":[1,91],"141":[2,193],"142":[2,193],"143":[2,193],"144":[2,193],"145":[2,193],"146":[2,193],"148":[2,193]},{"110":111,"111":[1,74],"113":[1,75],"116":112,"117":[1,77],"118":78,"134":[1,109],"135":[1,110]},{"1":[2,194],"4":[2,194],"28":[2,194],"29":[2,194],"50":[1,92],"58":[2,194],"62":[2,194],"81":[2,194],"86":[2,194],"96":[2,194],"100":[2,194],"109":[2,194],"110":107,"111":[2,194],"112":[2,194],"113":[2,194],"116":108,"117":[2,194],"118":78,"123":[2,194],"124":[2,194],"125":[2,194],"134":[2,194],"135":[2,194],"136":[1,104],"137":[2,194],"138":[2,194],"139":[1,90],"140":[1,91],"141":[2,194],"142":[2,194],"143":[2,194],"144":[2,194],"145":[2,194],"146":[2,194],"148":[2,194]},{"1":[2,195],"4":[2,195],"28":[2,195],"29":[2,195],"50":[1,92],"58":[2,195],"62":[2,195],"81":[2,195],"86":[2,195],"96":[2,195],"100":[2,195],"109":[2,195],"110":107,"111":[2,195],"112":[2,195],"113":[2,195],"116":108,"117":[2,195],"118":78,"123":[2,195],"124":[2,195],"125":[2,195],"134":[2,195],"135":[2,195],"136":[1,104],"137":[2,195],"138":[2,195],"139":[1,90],"140":[1,91],"141":[2,195],"142":[2,195],"143":[2,195],"144":[2,195],"145":[2,195],"146":[2,195],"148":[2,195]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"50":[1,92],"58":[2,196],"62":[2,196],"81":[2,196],"86":[2,196],"96":[2,196],"100":[2,196],"109":[2,196],"110":107,"111":[2,196],"112":[2,196],"113":[2,196],"116":108,"117":[2,196],"118":78,"123":[2,196],"124":[2,196],"125":[2,196],"134":[2,196],"135":[2,196],"136":[2,196],"137":[2,196],"138":[2,196],"141":[2,196],"142":[2,196],"143":[2,196],"144":[2,196],"145":[2,196],"146":[2,196],"148":[2,196]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"50":[1,92],"58":[2,197],"62":[2,197],"81":[2,197],"86":[2,197],"96":[2,197],"100":[2,197],"109":[2,197],"110":107,"111":[2,197],"112":[2,197],"113":[2,197],"116":108,"117":[2,197],"118":78,"123":[2,197],"124":[2,197],"125":[2,197],"134":[2,197],"135":[2,197],"136":[2,197],"137":[2,197],"138":[2,197],"141":[2,197],"142":[2,197],"143":[2,197],"144":[2,197],"145":[2,197],"146":[2,197],"148":[2,197]},{"4":[1,138],"6":226,"28":[1,6],"132":[1,225]},{"104":227,"105":[1,228],"106":[1,229]},{"1":[2,151],"4":[2,151],"28":[2,151],"29":[2,151],"50":[2,151],"58":[2,151],"62":[2,151],"81":[2,151],"86":[2,151],"96":[2,151],"100":[2,151],"109":[2,151],"111":[2,151],"112":[2,151],"113":[2,151],"117":[2,151],"123":[2,151],"124":[2,151],"125":[2,151],"134":[2,151],"135":[2,151],"136":[2,151],"137":[2,151],"138":[2,151],"139":[2,151],"140":[2,151],"141":[2,151],"142":[2,151],"143":[2,151],"144":[2,151],"145":[2,151],"146":[2,151],"148":[2,151]},{"1":[2,159],"4":[2,159],"28":[2,159],"29":[2,159],"50":[2,159],"58":[2,159],"62":[2,159],"81":[2,159],"86":[2,159],"96":[2,159],"100":[2,159],"109":[2,159],"111":[2,159],"112":[2,159],"113":[2,159],"117":[2,159],"123":[2,159],"124":[2,159],"125":[2,159],"134":[2,159],"135":[2,159],"136":[2,159],"137":[2,159],"138":[2,159],"139":[2,159],"140":[2,159],"141":[2,159],"142":[2,159],"143":[2,159],"144":[2,159],"145":[2,159],"146":[2,159],"148":[2,159]},{"28":[1,230],"50":[1,92],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"127":231,"129":232,"130":[1,233]},{"14":234,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":131,"61":[1,68],"64":132,"66":155,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"98":[1,67],"99":[1,66],"108":[1,65]},{"1":[2,98],"4":[2,98],"28":[1,236],"29":[2,98],"50":[2,98],"58":[2,98],"62":[2,98],"74":[2,74],"75":[2,74],"76":[2,74],"77":[2,74],"80":[2,74],"81":[2,98],"82":[2,74],"83":[2,74],"86":[2,98],"88":[1,235],"94":[2,74],"96":[2,98],"100":[2,98],"109":[2,98],"111":[2,98],"112":[2,98],"113":[2,98],"117":[2,98],"123":[2,98],"124":[2,98],"125":[2,98],"134":[2,98],"135":[2,98],"136":[2,98],"137":[2,98],"138":[2,98],"139":[2,98],"140":[2,98],"141":[2,98],"142":[2,98],"143":[2,98],"144":[2,98],"145":[2,98],"146":[2,98],"148":[2,98]},{"4":[2,105],"27":186,"29":[2,105],"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":240,"49":[1,51],"61":[1,242],"67":241,"84":[1,239],"89":237,"90":238},{"65":115,"74":[1,117],"75":[1,118],"76":[1,119],"77":[1,120],"78":121,"79":122,"80":[1,123],"82":[1,124],"83":[1,125],"93":114,"94":[1,116]},{"65":128,"74":[1,117],"75":[1,118],"76":[1,119],"77":[1,120],"78":121,"79":122,"80":[1,123],"82":[1,124],"83":[1,125],"93":127,"94":[1,116]},{"1":[2,52],"4":[2,52],"29":[2,52],"50":[1,92],"109":[2,52],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[2,52],"135":[2,52],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,144],"4":[2,144],"29":[2,144],"50":[1,92],"109":[2,144],"110":107,"111":[2,144],"113":[2,144],"116":108,"117":[2,144],"118":78,"123":[1,102],"124":[1,103],"134":[2,144],"135":[2,144],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"109":[1,243]},{"1":[2,146],"4":[2,146],"28":[2,146],"29":[2,146],"50":[2,146],"58":[2,146],"62":[2,146],"74":[2,146],"75":[2,146],"76":[2,146],"77":[2,146],"80":[2,146],"81":[2,146],"82":[2,146],"83":[2,146],"86":[2,146],"94":[2,146],"96":[2,146],"100":[2,146],"109":[2,146],"111":[2,146],"112":[2,146],"113":[2,146],"117":[2,146],"123":[2,146],"124":[2,146],"125":[2,146],"134":[2,146],"135":[2,146],"136":[2,146],"137":[2,146],"138":[2,146],"139":[2,146],"140":[2,146],"141":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"146":[2,146],"147":[2,146],"148":[2,146]},{"4":[2,136],"28":[2,136],"50":[1,92],"58":[2,136],"62":[1,244],"100":[2,136],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"4":[2,60],"28":[2,60],"57":245,"58":[1,246],"100":[2,60]},{"4":[2,132],"28":[2,132],"29":[2,132],"58":[2,132],"96":[2,132],"100":[2,132]},{"4":[2,137],"28":[2,137],"29":[2,137],"58":[2,137],"96":[2,137],"100":[2,137]},{"1":[2,121],"4":[2,121],"28":[2,121],"29":[2,121],"45":[2,121],"47":[2,121],"50":[2,121],"58":[2,121],"62":[2,121],"74":[2,121],"75":[2,121],"76":[2,121],"77":[2,121],"80":[2,121],"81":[2,121],"82":[2,121],"83":[2,121],"86":[2,121],"88":[2,121],"94":[2,121],"96":[2,121],"100":[2,121],"109":[2,121],"111":[2,121],"112":[2,121],"113":[2,121],"117":[2,121],"123":[2,121],"124":[2,121],"125":[2,121],"134":[2,121],"135":[2,121],"136":[2,121],"137":[2,121],"138":[2,121],"139":[2,121],"140":[2,121],"141":[2,121],"142":[2,121],"143":[2,121],"144":[2,121],"145":[2,121],"146":[2,121],"147":[2,121],"148":[2,121]},{"1":[2,118],"4":[2,118],"28":[2,118],"29":[2,118],"50":[2,118],"58":[2,118],"62":[2,118],"81":[2,118],"86":[2,118],"96":[2,118],"100":[2,118],"109":[2,118],"111":[2,118],"112":[2,118],"113":[2,118],"117":[2,118],"123":[2,118],"124":[2,118],"125":[2,118],"134":[2,118],"135":[2,118],"136":[2,118],"137":[2,118],"138":[2,118],"139":[2,118],"140":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"146":[2,118],"148":[2,118]},{"4":[1,138],"6":247,"28":[1,6],"50":[1,92],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"4":[1,138],"6":248,"28":[1,6],"50":[1,92],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,147],"4":[2,147],"28":[2,147],"29":[2,147],"50":[1,92],"58":[2,147],"62":[2,147],"81":[2,147],"86":[2,147],"96":[2,147],"100":[2,147],"109":[2,147],"110":107,"111":[1,74],"112":[1,249],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"125":[2,147],"134":[2,147],"135":[2,147],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,149],"4":[2,149],"28":[2,149],"29":[2,149],"50":[1,92],"58":[2,149],"62":[2,149],"81":[2,149],"86":[2,149],"96":[2,149],"100":[2,149],"109":[2,149],"110":107,"111":[1,74],"112":[1,250],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"125":[2,149],"134":[2,149],"135":[2,149],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"50":[2,155],"58":[2,155],"62":[2,155],"81":[2,155],"86":[2,155],"96":[2,155],"100":[2,155],"109":[2,155],"111":[2,155],"112":[2,155],"113":[2,155],"117":[2,155],"123":[2,155],"124":[2,155],"125":[2,155],"134":[2,155],"135":[2,155],"136":[2,155],"137":[2,155],"138":[2,155],"139":[2,155],"140":[2,155],"141":[2,155],"142":[2,155],"143":[2,155],"144":[2,155],"145":[2,155],"146":[2,155],"148":[2,155]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"50":[1,92],"58":[2,156],"62":[2,156],"81":[2,156],"86":[2,156],"96":[2,156],"100":[2,156],"109":[2,156],"110":107,"111":[1,74],"112":[2,156],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"125":[2,156],"134":[2,156],"135":[2,156],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,160],"4":[2,160],"28":[2,160],"29":[2,160],"50":[2,160],"58":[2,160],"62":[2,160],"81":[2,160],"86":[2,160],"96":[2,160],"100":[2,160],"109":[2,160],"111":[2,160],"112":[2,160],"113":[2,160],"117":[2,160],"123":[2,160],"124":[2,160],"125":[2,160],"134":[2,160],"135":[2,160],"136":[2,160],"137":[2,160],"138":[2,160],"139":[2,160],"140":[2,160],"141":[2,160],"142":[2,160],"143":[2,160],"144":[2,160],"145":[2,160],"146":[2,160],"148":[2,160]},{"123":[2,162],"124":[2,162]},{"30":176,"31":[1,84],"68":177,"69":178,"84":[1,81],"99":[1,252],"120":251,"122":175},{"58":[1,253],"123":[2,167],"124":[2,167]},{"58":[2,164],"123":[2,164],"124":[2,164]},{"58":[2,165],"123":[2,165],"124":[2,165]},{"58":[2,166],"123":[2,166],"124":[2,166]},{"1":[2,161],"4":[2,161],"28":[2,161],"29":[2,161],"50":[2,161],"58":[2,161],"62":[2,161],"81":[2,161],"86":[2,161],"96":[2,161],"100":[2,161],"109":[2,161],"111":[2,161],"112":[2,161],"113":[2,161],"117":[2,161],"123":[2,161],"124":[2,161],"125":[2,161],"134":[2,161],"135":[2,161],"136":[2,161],"137":[2,161],"138":[2,161],"139":[2,161],"140":[2,161],"141":[2,161],"142":[2,161],"143":[2,161],"144":[2,161],"145":[2,161],"146":[2,161],"148":[2,161]},{"8":254,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":255,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[2,60],"28":[2,60],"57":256,"58":[1,257],"86":[2,60]},{"4":[2,94],"28":[2,94],"29":[2,94],"58":[2,94],"86":[2,94]},{"4":[2,45],"28":[2,45],"29":[2,45],"47":[1,258],"58":[2,45],"86":[2,45]},{"4":[2,46],"28":[2,46],"29":[2,46],"47":[1,259],"58":[2,46],"86":[2,46]},{"4":[2,51],"28":[2,51],"29":[2,51],"58":[2,51],"86":[2,51]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"50":[2,28],"58":[2,28],"62":[2,28],"81":[2,28],"86":[2,28],"96":[2,28],"100":[2,28],"105":[2,28],"106":[2,28],"109":[2,28],"111":[2,28],"112":[2,28],"113":[2,28],"117":[2,28],"123":[2,28],"124":[2,28],"125":[2,28],"128":[2,28],"130":[2,28],"134":[2,28],"135":[2,28],"136":[2,28],"137":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"148":[2,28]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"50":[1,92],"58":[2,200],"62":[2,200],"81":[2,200],"86":[2,200],"96":[2,200],"100":[2,200],"109":[2,200],"110":107,"111":[2,200],"112":[2,200],"113":[2,200],"116":108,"117":[2,200],"118":78,"123":[2,200],"124":[2,200],"125":[2,200],"134":[2,200],"135":[2,200],"136":[2,200],"137":[2,200],"138":[2,200],"139":[2,200],"140":[2,200],"141":[2,200],"142":[2,200],"143":[2,200],"144":[2,200],"145":[2,200],"146":[2,200],"148":[2,200]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"50":[1,92],"58":[2,201],"62":[2,201],"81":[2,201],"86":[2,201],"96":[2,201],"100":[2,201],"109":[2,201],"110":107,"111":[2,201],"112":[2,201],"113":[2,201],"116":108,"117":[2,201],"118":78,"123":[2,201],"124":[2,201],"125":[2,201],"134":[2,201],"135":[2,201],"136":[1,104],"137":[2,201],"138":[2,201],"139":[1,90],"140":[1,91],"141":[2,201],"142":[2,201],"143":[1,97],"144":[2,201],"145":[2,201],"146":[2,201],"148":[2,201]},{"1":[2,202],"4":[2,202],"28":[2,202],"29":[2,202],"50":[1,92],"58":[2,202],"62":[2,202],"81":[2,202],"86":[2,202],"96":[2,202],"100":[2,202],"109":[2,202],"110":107,"111":[2,202],"112":[2,202],"113":[2,202],"116":108,"117":[2,202],"118":78,"123":[2,202],"124":[2,202],"125":[2,202],"134":[2,202],"135":[2,202],"136":[1,104],"137":[2,202],"138":[2,202],"139":[1,90],"140":[1,91],"141":[2,202],"142":[2,202],"143":[1,97],"144":[2,202],"145":[2,202],"146":[2,202],"148":[2,202]},{"1":[2,203],"4":[2,203],"28":[2,203],"29":[2,203],"50":[1,92],"58":[2,203],"62":[2,203],"81":[2,203],"86":[2,203],"96":[2,203],"100":[2,203],"109":[2,203],"110":107,"111":[2,203],"112":[2,203],"113":[2,203],"116":108,"117":[2,203],"118":78,"123":[2,203],"124":[2,203],"125":[2,203],"134":[2,203],"135":[2,203],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[2,203],"142":[2,203],"143":[1,97],"144":[1,98],"145":[1,99],"146":[2,203],"148":[1,101]},{"1":[2,204],"4":[2,204],"28":[2,204],"29":[2,204],"50":[1,92],"58":[2,204],"62":[2,204],"81":[2,204],"86":[2,204],"96":[2,204],"100":[2,204],"109":[2,204],"110":107,"111":[2,204],"112":[2,204],"113":[2,204],"116":108,"117":[2,204],"118":78,"123":[2,204],"124":[2,204],"125":[2,204],"134":[2,204],"135":[2,204],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[2,204],"142":[2,204],"143":[1,97],"144":[1,98],"145":[1,99],"146":[2,204],"148":[1,101]},{"1":[2,205],"4":[2,205],"28":[2,205],"29":[2,205],"50":[1,92],"58":[2,205],"62":[2,205],"81":[2,205],"86":[2,205],"96":[2,205],"100":[2,205],"109":[2,205],"110":107,"111":[2,205],"112":[2,205],"113":[2,205],"116":108,"117":[2,205],"118":78,"123":[2,205],"124":[2,205],"125":[2,205],"134":[2,205],"135":[2,205],"136":[1,104],"137":[2,205],"138":[2,205],"139":[1,90],"140":[1,91],"141":[2,205],"142":[2,205],"143":[2,205],"144":[2,205],"145":[2,205],"146":[2,205],"148":[2,205]},{"1":[2,206],"4":[2,206],"28":[2,206],"29":[2,206],"50":[1,92],"58":[2,206],"62":[2,206],"81":[2,206],"86":[2,206],"96":[2,206],"100":[2,206],"109":[2,206],"110":107,"111":[2,206],"112":[2,206],"113":[2,206],"116":108,"117":[2,206],"118":78,"123":[2,206],"124":[2,206],"125":[2,206],"134":[2,206],"135":[2,206],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[2,206],"142":[2,206],"143":[1,97],"144":[2,206],"145":[2,206],"146":[2,206],"148":[2,206]},{"1":[2,207],"4":[2,207],"28":[2,207],"29":[2,207],"50":[1,92],"58":[2,207],"62":[2,207],"81":[2,207],"86":[2,207],"96":[2,207],"100":[2,207],"109":[2,207],"110":107,"111":[2,207],"112":[2,207],"113":[2,207],"116":108,"117":[2,207],"118":78,"123":[2,207],"124":[2,207],"125":[2,207],"134":[2,207],"135":[2,207],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[2,207],"142":[2,207],"143":[1,97],"144":[1,98],"145":[2,207],"146":[2,207],"148":[2,207]},{"1":[2,208],"4":[2,208],"28":[2,208],"29":[2,208],"50":[1,92],"58":[2,208],"62":[2,208],"81":[2,208],"86":[2,208],"96":[2,208],"100":[2,208],"109":[2,208],"110":107,"111":[2,208],"112":[2,208],"113":[2,208],"116":108,"117":[2,208],"118":78,"123":[2,208],"124":[2,208],"125":[2,208],"134":[2,208],"135":[2,208],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[2,208],"148":[1,101]},{"1":[2,211],"4":[2,211],"28":[2,211],"29":[2,211],"50":[1,92],"58":[2,211],"62":[2,211],"81":[2,211],"86":[2,211],"96":[2,211],"100":[2,211],"109":[2,211],"110":107,"111":[2,211],"112":[2,211],"113":[2,211],"116":108,"117":[2,211],"118":78,"123":[2,211],"124":[2,211],"125":[2,211],"134":[2,211],"135":[2,211],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[2,211],"142":[2,211],"143":[1,97],"144":[1,98],"145":[1,99],"146":[2,211],"148":[2,211]},{"1":[2,212],"4":[2,212],"28":[2,212],"29":[2,212],"50":[1,92],"58":[2,212],"62":[2,212],"81":[2,212],"86":[2,212],"96":[2,212],"100":[2,212],"109":[2,212],"110":107,"111":[2,212],"112":[2,212],"113":[2,212],"116":108,"117":[2,212],"118":78,"123":[1,102],"124":[1,103],"125":[2,212],"134":[2,212],"135":[2,212],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,213],"4":[2,213],"28":[2,213],"29":[2,213],"50":[1,92],"58":[2,213],"62":[2,213],"81":[2,213],"86":[2,213],"96":[2,213],"100":[2,213],"109":[2,213],"110":107,"111":[2,213],"112":[2,213],"113":[2,213],"116":108,"117":[2,213],"118":78,"123":[1,102],"124":[1,103],"125":[2,213],"134":[2,213],"135":[2,213],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"8":260,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":261,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"50":[1,92],"58":[2,190],"62":[2,190],"81":[2,190],"86":[2,190],"96":[2,190],"100":[2,190],"109":[2,190],"110":107,"111":[1,74],"112":[2,190],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"125":[2,190],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,192],"4":[2,192],"28":[2,192],"29":[2,192],"50":[1,92],"58":[2,192],"62":[2,192],"81":[2,192],"86":[2,192],"96":[2,192],"100":[2,192],"109":[2,192],"110":107,"111":[1,74],"112":[2,192],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"125":[2,192],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"50":[1,92],"58":[2,189],"62":[2,189],"81":[2,189],"86":[2,189],"96":[2,189],"100":[2,189],"109":[2,189],"110":107,"111":[1,74],"112":[2,189],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"125":[2,189],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,191],"4":[2,191],"28":[2,191],"29":[2,191],"50":[1,92],"58":[2,191],"62":[2,191],"81":[2,191],"86":[2,191],"96":[2,191],"100":[2,191],"109":[2,191],"110":107,"111":[1,74],"112":[2,191],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"125":[2,191],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,209],"4":[2,209],"28":[2,209],"29":[2,209],"50":[1,92],"58":[2,209],"62":[2,209],"81":[2,209],"86":[2,209],"96":[2,209],"100":[2,209],"109":[2,209],"110":107,"111":[2,209],"112":[2,209],"113":[2,209],"116":108,"117":[2,209],"118":78,"123":[2,209],"124":[2,209],"125":[2,209],"134":[2,209],"135":[2,209],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"8":262,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[2,60],"28":[2,60],"57":263,"58":[1,246],"96":[2,60]},{"4":[2,136],"28":[2,136],"29":[2,136],"50":[1,92],"58":[2,136],"62":[1,264],"96":[2,136],"100":[2,136],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"45":[2,83],"50":[2,83],"58":[2,83],"62":[2,83],"74":[2,83],"75":[2,83],"76":[2,83],"77":[2,83],"80":[2,83],"81":[2,83],"82":[2,83],"83":[2,83],"86":[2,83],"88":[2,83],"94":[2,83],"96":[2,83],"100":[2,83],"109":[2,83],"111":[2,83],"112":[2,83],"113":[2,83],"117":[2,83],"123":[2,83],"124":[2,83],"125":[2,83],"134":[2,83],"135":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"45":[2,84],"50":[2,84],"58":[2,84],"62":[2,84],"74":[2,84],"75":[2,84],"76":[2,84],"77":[2,84],"80":[2,84],"81":[2,84],"82":[2,84],"83":[2,84],"86":[2,84],"88":[2,84],"94":[2,84],"96":[2,84],"100":[2,84],"109":[2,84],"111":[2,84],"112":[2,84],"113":[2,84],"117":[2,84],"123":[2,84],"124":[2,84],"125":[2,84],"134":[2,84],"135":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84]},{"1":[2,86],"4":[2,86],"28":[2,86],"29":[2,86],"45":[2,86],"50":[2,86],"58":[2,86],"62":[2,86],"74":[2,86],"75":[2,86],"76":[2,86],"77":[2,86],"80":[2,86],"81":[2,86],"82":[2,86],"83":[2,86],"86":[2,86],"88":[2,86],"94":[2,86],"96":[2,86],"100":[2,86],"109":[2,86],"111":[2,86],"112":[2,86],"113":[2,86],"117":[2,86],"123":[2,86],"124":[2,86],"125":[2,86],"134":[2,86],"135":[2,86],"136":[2,86],"137":[2,86],"138":[2,86],"139":[2,86],"140":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"148":[2,86]},{"50":[1,92],"62":[1,266],"81":[1,265],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"62":[1,267]},{"1":[2,90],"4":[2,90],"28":[2,90],"29":[2,90],"45":[2,90],"50":[2,90],"58":[2,90],"62":[2,90],"74":[2,90],"75":[2,90],"76":[2,90],"77":[2,90],"80":[2,90],"81":[2,90],"82":[2,90],"83":[2,90],"86":[2,90],"88":[2,90],"94":[2,90],"96":[2,90],"100":[2,90],"109":[2,90],"111":[2,90],"112":[2,90],"113":[2,90],"117":[2,90],"123":[2,90],"124":[2,90],"125":[2,90],"134":[2,90],"135":[2,90],"136":[2,90],"137":[2,90],"138":[2,90],"139":[2,90],"140":[2,90],"141":[2,90],"142":[2,90],"143":[2,90],"144":[2,90],"145":[2,90],"146":[2,90],"147":[2,90],"148":[2,90]},{"8":268,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,91],"4":[2,91],"28":[2,91],"29":[2,91],"45":[2,91],"50":[2,91],"58":[2,91],"62":[2,91],"74":[2,91],"75":[2,91],"76":[2,91],"77":[2,91],"80":[2,91],"81":[2,91],"82":[2,91],"83":[2,91],"86":[2,91],"88":[2,91],"94":[2,91],"96":[2,91],"100":[2,91],"109":[2,91],"111":[2,91],"112":[2,91],"113":[2,91],"117":[2,91],"123":[2,91],"124":[2,91],"125":[2,91],"134":[2,91],"135":[2,91],"136":[2,91],"137":[2,91],"138":[2,91],"139":[2,91],"140":[2,91],"141":[2,91],"142":[2,91],"143":[2,91],"144":[2,91],"145":[2,91],"146":[2,91],"147":[2,91],"148":[2,91]},{"1":[2,43],"4":[2,43],"28":[2,43],"29":[2,43],"50":[1,92],"58":[2,43],"62":[2,43],"81":[2,43],"86":[2,43],"96":[2,43],"100":[2,43],"109":[2,43],"110":107,"111":[1,74],"112":[2,43],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"125":[2,43],"134":[2,43],"135":[2,43],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"8":269,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"54":270,"55":[1,70],"56":[1,71]},{"59":271,"60":[1,135],"61":[1,136]},{"62":[1,272]},{"53":[2,66],"58":[2,66],"62":[1,273]},{"8":274,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"50":[2,187],"58":[2,187],"62":[2,187],"81":[2,187],"86":[2,187],"96":[2,187],"100":[2,187],"109":[2,187],"111":[2,187],"112":[2,187],"113":[2,187],"117":[2,187],"123":[2,187],"124":[2,187],"125":[2,187],"128":[2,187],"134":[2,187],"135":[2,187],"136":[2,187],"137":[2,187],"138":[2,187],"139":[2,187],"140":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"148":[2,187]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"50":[2,140],"58":[2,140],"62":[2,140],"81":[2,140],"86":[2,140],"96":[2,140],"100":[2,140],"105":[1,275],"109":[2,140],"111":[2,140],"112":[2,140],"113":[2,140],"117":[2,140],"123":[2,140],"124":[2,140],"125":[2,140],"134":[2,140],"135":[2,140],"136":[2,140],"137":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"148":[2,140]},{"4":[1,138],"6":276,"28":[1,6]},{"30":277,"31":[1,84]},{"127":278,"129":232,"130":[1,233]},{"29":[1,279],"128":[1,280],"129":281,"130":[1,233]},{"29":[2,180],"128":[2,180],"130":[2,180]},{"8":283,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"102":282,"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,113],"4":[2,113],"28":[2,113],"29":[2,113],"50":[2,113],"58":[2,113],"62":[2,113],"65":115,"74":[1,117],"75":[1,118],"76":[1,119],"77":[1,120],"78":121,"79":122,"80":[1,123],"81":[2,113],"82":[1,124],"83":[1,125],"86":[2,113],"93":114,"94":[1,116],"96":[2,113],"100":[2,113],"109":[2,113],"111":[2,113],"112":[2,113],"113":[2,113],"117":[2,113],"123":[2,113],"124":[2,113],"125":[2,113],"134":[2,113],"135":[2,113],"136":[2,113],"137":[2,113],"138":[2,113],"139":[2,113],"140":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"148":[2,113]},{"14":284,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":131,"61":[1,68],"64":132,"66":155,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"98":[1,67],"99":[1,66],"108":[1,65]},{"4":[2,105],"27":186,"29":[2,105],"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":240,"49":[1,51],"61":[1,242],"67":241,"84":[1,239],"89":285,"90":238},{"4":[1,287],"29":[1,286]},{"4":[2,106],"29":[2,106],"86":[2,106]},{"4":[2,105],"27":186,"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":240,"49":[1,51],"61":[1,242],"67":241,"84":[1,239],"86":[2,105],"89":288,"90":238},{"4":[2,103],"29":[2,103],"86":[2,103]},{"47":[1,289]},{"30":164,"31":[1,84]},{"1":[2,145],"4":[2,145],"28":[2,145],"29":[2,145],"50":[2,145],"58":[2,145],"62":[2,145],"74":[2,145],"75":[2,145],"76":[2,145],"77":[2,145],"80":[2,145],"81":[2,145],"82":[2,145],"83":[2,145],"86":[2,145],"94":[2,145],"96":[2,145],"100":[2,145],"109":[2,145],"111":[2,145],"112":[2,145],"113":[2,145],"117":[2,145],"123":[2,145],"124":[2,145],"125":[2,145],"134":[2,145],"135":[2,145],"136":[2,145],"137":[2,145],"138":[2,145],"139":[2,145],"140":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"146":[2,145],"147":[2,145],"148":[2,145]},{"62":[1,290]},{"4":[1,292],"28":[1,293],"100":[1,291]},{"4":[2,61],"8":210,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,61],"29":[2,61],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"63":163,"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"96":[2,61],"97":[1,69],"98":[1,67],"99":[1,66],"100":[2,61],"101":294,"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"50":[2,184],"58":[2,184],"62":[2,184],"81":[2,184],"86":[2,184],"96":[2,184],"100":[2,184],"109":[2,184],"111":[2,184],"112":[2,184],"113":[2,184],"117":[2,184],"123":[2,184],"124":[2,184],"125":[2,184],"128":[2,184],"134":[2,184],"135":[2,184],"136":[2,184],"137":[2,184],"138":[2,184],"139":[2,184],"140":[2,184],"141":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"148":[2,184]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"50":[2,185],"58":[2,185],"62":[2,185],"81":[2,185],"86":[2,185],"96":[2,185],"100":[2,185],"109":[2,185],"111":[2,185],"112":[2,185],"113":[2,185],"117":[2,185],"123":[2,185],"124":[2,185],"125":[2,185],"128":[2,185],"134":[2,185],"135":[2,185],"136":[2,185],"137":[2,185],"138":[2,185],"139":[2,185],"140":[2,185],"141":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"148":[2,185]},{"8":295,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":296,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"123":[2,163],"124":[2,163]},{"4":[2,131],"8":210,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,131],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"58":[2,131],"61":[1,68],"63":163,"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"95":161,"97":[1,69],"98":[1,67],"99":[1,66],"100":[2,131],"101":162,"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"30":176,"31":[1,84],"68":177,"69":178,"84":[1,81],"99":[1,252],"122":297},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"50":[1,92],"58":[2,169],"62":[2,169],"81":[2,169],"86":[2,169],"96":[2,169],"100":[2,169],"109":[2,169],"110":107,"111":[2,169],"112":[1,298],"113":[2,169],"116":108,"117":[2,169],"118":78,"123":[1,102],"124":[1,103],"125":[1,299],"134":[2,169],"135":[2,169],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"50":[1,92],"58":[2,170],"62":[2,170],"81":[2,170],"86":[2,170],"96":[2,170],"100":[2,170],"109":[2,170],"110":107,"111":[2,170],"112":[1,300],"113":[2,170],"116":108,"117":[2,170],"118":78,"123":[1,102],"124":[1,103],"125":[2,170],"134":[2,170],"135":[2,170],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"4":[1,302],"28":[1,303],"86":[1,301]},{"4":[2,61],"27":186,"28":[2,61],"29":[2,61],"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":304,"49":[1,51],"86":[2,61]},{"8":305,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,306],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":307,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,308],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,214],"4":[2,214],"28":[2,214],"29":[2,214],"50":[1,92],"58":[2,214],"62":[2,214],"81":[2,214],"86":[2,214],"96":[2,214],"100":[2,214],"109":[2,214],"110":107,"111":[2,214],"112":[2,214],"113":[2,214],"116":108,"117":[2,214],"118":78,"123":[2,214],"124":[2,214],"125":[2,214],"134":[2,214],"135":[2,214],"136":[1,104],"137":[2,214],"138":[2,214],"139":[1,90],"140":[1,91],"141":[2,214],"142":[2,214],"143":[2,214],"144":[2,214],"145":[2,214],"146":[2,214],"148":[2,214]},{"1":[2,215],"4":[2,215],"28":[2,215],"29":[2,215],"50":[1,92],"58":[2,215],"62":[2,215],"81":[2,215],"86":[2,215],"96":[2,215],"100":[2,215],"109":[2,215],"110":107,"111":[2,215],"112":[2,215],"113":[2,215],"116":108,"117":[2,215],"118":78,"123":[2,215],"124":[2,215],"125":[2,215],"134":[2,215],"135":[2,215],"136":[1,104],"137":[2,215],"138":[2,215],"139":[1,90],"140":[1,91],"141":[2,215],"142":[2,215],"143":[2,215],"144":[2,215],"145":[2,215],"146":[2,215],"148":[2,215]},{"29":[1,309],"50":[1,92],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"4":[1,292],"28":[1,293],"96":[1,310]},{"62":[1,311]},{"1":[2,89],"4":[2,89],"28":[2,89],"29":[2,89],"45":[2,89],"50":[2,89],"58":[2,89],"62":[2,89],"74":[2,89],"75":[2,89],"76":[2,89],"77":[2,89],"80":[2,89],"81":[2,89],"82":[2,89],"83":[2,89],"86":[2,89],"88":[2,89],"94":[2,89],"96":[2,89],"100":[2,89],"109":[2,89],"111":[2,89],"112":[2,89],"113":[2,89],"117":[2,89],"123":[2,89],"124":[2,89],"125":[2,89],"134":[2,89],"135":[2,89],"136":[2,89],"137":[2,89],"138":[2,89],"139":[2,89],"140":[2,89],"141":[2,89],"142":[2,89],"143":[2,89],"144":[2,89],"145":[2,89],"146":[2,89],"147":[2,89],"148":[2,89]},{"62":[1,312]},{"8":313,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"62":[1,314],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"50":[1,92],"81":[1,265],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"29":[1,315],"50":[1,92],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"4":[1,138],"6":316,"28":[1,6]},{"53":[2,64],"58":[2,64]},{"62":[1,317]},{"62":[1,318]},{"4":[1,138],"6":319,"28":[1,6],"50":[1,92],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"4":[1,138],"6":320,"28":[1,6]},{"1":[2,141],"4":[2,141],"28":[2,141],"29":[2,141],"50":[2,141],"58":[2,141],"62":[2,141],"81":[2,141],"86":[2,141],"96":[2,141],"100":[2,141],"109":[2,141],"111":[2,141],"112":[2,141],"113":[2,141],"117":[2,141],"123":[2,141],"124":[2,141],"125":[2,141],"134":[2,141],"135":[2,141],"136":[2,141],"137":[2,141],"138":[2,141],"139":[2,141],"140":[2,141],"141":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"148":[2,141]},{"4":[1,138],"6":321,"28":[1,6]},{"29":[1,322],"128":[1,323],"129":281,"130":[1,233]},{"1":[2,178],"4":[2,178],"28":[2,178],"29":[2,178],"50":[2,178],"58":[2,178],"62":[2,178],"81":[2,178],"86":[2,178],"96":[2,178],"100":[2,178],"109":[2,178],"111":[2,178],"112":[2,178],"113":[2,178],"117":[2,178],"123":[2,178],"124":[2,178],"125":[2,178],"134":[2,178],"135":[2,178],"136":[2,178],"137":[2,178],"138":[2,178],"139":[2,178],"140":[2,178],"141":[2,178],"142":[2,178],"143":[2,178],"144":[2,178],"145":[2,178],"146":[2,178],"148":[2,178]},{"4":[1,138],"6":324,"28":[1,6]},{"29":[2,181],"128":[2,181],"130":[2,181]},{"4":[1,138],"6":325,"28":[1,6],"58":[1,326]},{"4":[2,138],"28":[2,138],"50":[1,92],"58":[2,138],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,99],"4":[2,99],"28":[1,327],"29":[2,99],"50":[2,99],"58":[2,99],"62":[2,99],"65":115,"74":[1,117],"75":[1,118],"76":[1,119],"77":[1,120],"78":121,"79":122,"80":[1,123],"81":[2,99],"82":[1,124],"83":[1,125],"86":[2,99],"93":114,"94":[1,116],"96":[2,99],"100":[2,99],"109":[2,99],"111":[2,99],"112":[2,99],"113":[2,99],"117":[2,99],"123":[2,99],"124":[2,99],"125":[2,99],"134":[2,99],"135":[2,99],"136":[2,99],"137":[2,99],"138":[2,99],"139":[2,99],"140":[2,99],"141":[2,99],"142":[2,99],"143":[2,99],"144":[2,99],"145":[2,99],"146":[2,99],"148":[2,99]},{"4":[1,287],"29":[1,328]},{"1":[2,102],"4":[2,102],"28":[2,102],"29":[2,102],"50":[2,102],"58":[2,102],"62":[2,102],"81":[2,102],"86":[2,102],"96":[2,102],"100":[2,102],"109":[2,102],"111":[2,102],"112":[2,102],"113":[2,102],"117":[2,102],"123":[2,102],"124":[2,102],"125":[2,102],"134":[2,102],"135":[2,102],"136":[2,102],"137":[2,102],"138":[2,102],"139":[2,102],"140":[2,102],"141":[2,102],"142":[2,102],"143":[2,102],"144":[2,102],"145":[2,102],"146":[2,102],"148":[2,102]},{"27":186,"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":240,"49":[1,51],"61":[1,242],"67":241,"90":329},{"4":[1,287],"86":[1,330]},{"8":331,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":332,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"62":[1,333],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,130],"4":[2,130],"28":[2,130],"29":[2,130],"45":[2,130],"50":[2,130],"58":[2,130],"62":[2,130],"74":[2,130],"75":[2,130],"76":[2,130],"77":[2,130],"80":[2,130],"81":[2,130],"82":[2,130],"83":[2,130],"86":[2,130],"94":[2,130],"96":[2,130],"100":[2,130],"109":[2,130],"111":[2,130],"112":[2,130],"113":[2,130],"117":[2,130],"123":[2,130],"124":[2,130],"125":[2,130],"134":[2,130],"135":[2,130],"136":[2,130],"137":[2,130],"138":[2,130],"139":[2,130],"140":[2,130],"141":[2,130],"142":[2,130],"143":[2,130],"144":[2,130],"145":[2,130],"146":[2,130],"147":[2,130],"148":[2,130]},{"8":210,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"63":163,"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"101":334,"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[2,131],"8":210,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,131],"29":[2,131],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"58":[2,131],"61":[1,68],"63":163,"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"95":335,"97":[1,69],"98":[1,67],"99":[1,66],"101":162,"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[2,133],"28":[2,133],"29":[2,133],"58":[2,133],"96":[2,133],"100":[2,133]},{"1":[2,148],"4":[2,148],"28":[2,148],"29":[2,148],"50":[1,92],"58":[2,148],"62":[2,148],"81":[2,148],"86":[2,148],"96":[2,148],"100":[2,148],"109":[2,148],"110":107,"111":[1,74],"112":[2,148],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"125":[2,148],"134":[2,148],"135":[2,148],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,150],"4":[2,150],"28":[2,150],"29":[2,150],"50":[1,92],"58":[2,150],"62":[2,150],"81":[2,150],"86":[2,150],"96":[2,150],"100":[2,150],"109":[2,150],"110":107,"111":[1,74],"112":[2,150],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"125":[2,150],"134":[2,150],"135":[2,150],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"123":[2,168],"124":[2,168]},{"8":336,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":337,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":338,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,92],"4":[2,92],"28":[2,92],"29":[2,92],"45":[2,92],"50":[2,92],"58":[2,92],"62":[2,92],"74":[2,92],"75":[2,92],"76":[2,92],"77":[2,92],"80":[2,92],"81":[2,92],"82":[2,92],"83":[2,92],"86":[2,92],"94":[2,92],"96":[2,92],"100":[2,92],"109":[2,92],"111":[2,92],"112":[2,92],"113":[2,92],"117":[2,92],"123":[2,92],"124":[2,92],"125":[2,92],"134":[2,92],"135":[2,92],"136":[2,92],"137":[2,92],"138":[2,92],"139":[2,92],"140":[2,92],"141":[2,92],"142":[2,92],"143":[2,92],"144":[2,92],"145":[2,92],"146":[2,92],"147":[2,92],"148":[2,92]},{"27":186,"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":339,"49":[1,51]},{"4":[2,93],"27":186,"28":[2,93],"29":[2,93],"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":183,"49":[1,51],"58":[2,93],"85":340},{"4":[2,95],"28":[2,95],"29":[2,95],"58":[2,95],"86":[2,95]},{"4":[2,47],"28":[2,47],"29":[2,47],"50":[1,92],"58":[2,47],"86":[2,47],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"8":341,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[2,48],"28":[2,48],"29":[2,48],"50":[1,92],"58":[2,48],"86":[2,48],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"8":342,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,210],"4":[2,210],"28":[2,210],"29":[2,210],"50":[2,210],"58":[2,210],"62":[2,210],"81":[2,210],"86":[2,210],"96":[2,210],"100":[2,210],"109":[2,210],"111":[2,210],"112":[2,210],"113":[2,210],"117":[2,210],"123":[2,210],"124":[2,210],"125":[2,210],"134":[2,210],"135":[2,210],"136":[2,210],"137":[2,210],"138":[2,210],"139":[2,210],"140":[2,210],"141":[2,210],"142":[2,210],"143":[2,210],"144":[2,210],"145":[2,210],"146":[2,210],"148":[2,210]},{"1":[2,116],"4":[2,116],"28":[2,116],"29":[2,116],"50":[2,116],"58":[2,116],"62":[2,116],"74":[2,116],"75":[2,116],"76":[2,116],"77":[2,116],"80":[2,116],"81":[2,116],"82":[2,116],"83":[2,116],"86":[2,116],"94":[2,116],"96":[2,116],"100":[2,116],"109":[2,116],"111":[2,116],"112":[2,116],"113":[2,116],"117":[2,116],"123":[2,116],"124":[2,116],"125":[2,116],"134":[2,116],"135":[2,116],"136":[2,116],"137":[2,116],"138":[2,116],"139":[2,116],"140":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"146":[2,116],"148":[2,116]},{"62":[1,343]},{"8":344,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"62":[1,345],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"81":[1,346],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"50":[1,92],"81":[1,347],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"8":348,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,44],"4":[2,44],"28":[2,44],"29":[2,44],"50":[2,44],"58":[2,44],"62":[2,44],"81":[2,44],"86":[2,44],"96":[2,44],"100":[2,44],"109":[2,44],"111":[2,44],"112":[2,44],"113":[2,44],"117":[2,44],"123":[2,44],"124":[2,44],"125":[2,44],"134":[2,44],"135":[2,44],"136":[2,44],"137":[2,44],"138":[2,44],"139":[2,44],"140":[2,44],"141":[2,44],"142":[2,44],"143":[2,44],"144":[2,44],"145":[2,44],"146":[2,44],"148":[2,44]},{"1":[2,56],"4":[2,56],"28":[2,56],"29":[2,56],"50":[2,56],"58":[2,56],"62":[2,56],"81":[2,56],"86":[2,56],"96":[2,56],"100":[2,56],"109":[2,56],"111":[2,56],"112":[2,56],"113":[2,56],"117":[2,56],"123":[2,56],"124":[2,56],"125":[2,56],"134":[2,56],"135":[2,56],"136":[2,56],"137":[2,56],"138":[2,56],"139":[2,56],"140":[2,56],"141":[2,56],"142":[2,56],"143":[2,56],"144":[2,56],"145":[2,56],"146":[2,56],"148":[2,56]},{"53":[2,67],"58":[2,67]},{"62":[1,349]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"50":[2,186],"58":[2,186],"62":[2,186],"81":[2,186],"86":[2,186],"96":[2,186],"100":[2,186],"109":[2,186],"111":[2,186],"112":[2,186],"113":[2,186],"117":[2,186],"123":[2,186],"124":[2,186],"125":[2,186],"128":[2,186],"134":[2,186],"135":[2,186],"136":[2,186],"137":[2,186],"138":[2,186],"139":[2,186],"140":[2,186],"141":[2,186],"142":[2,186],"143":[2,186],"144":[2,186],"145":[2,186],"146":[2,186],"148":[2,186]},{"1":[2,142],"4":[2,142],"28":[2,142],"29":[2,142],"50":[2,142],"58":[2,142],"62":[2,142],"81":[2,142],"86":[2,142],"96":[2,142],"100":[2,142],"109":[2,142],"111":[2,142],"112":[2,142],"113":[2,142],"117":[2,142],"123":[2,142],"124":[2,142],"125":[2,142],"134":[2,142],"135":[2,142],"136":[2,142],"137":[2,142],"138":[2,142],"139":[2,142],"140":[2,142],"141":[2,142],"142":[2,142],"143":[2,142],"144":[2,142],"145":[2,142],"146":[2,142],"148":[2,142]},{"1":[2,143],"4":[2,143],"28":[2,143],"29":[2,143],"50":[2,143],"58":[2,143],"62":[2,143],"81":[2,143],"86":[2,143],"96":[2,143],"100":[2,143],"105":[2,143],"109":[2,143],"111":[2,143],"112":[2,143],"113":[2,143],"117":[2,143],"123":[2,143],"124":[2,143],"125":[2,143],"134":[2,143],"135":[2,143],"136":[2,143],"137":[2,143],"138":[2,143],"139":[2,143],"140":[2,143],"141":[2,143],"142":[2,143],"143":[2,143],"144":[2,143],"145":[2,143],"146":[2,143],"148":[2,143]},{"1":[2,176],"4":[2,176],"28":[2,176],"29":[2,176],"50":[2,176],"58":[2,176],"62":[2,176],"81":[2,176],"86":[2,176],"96":[2,176],"100":[2,176],"109":[2,176],"111":[2,176],"112":[2,176],"113":[2,176],"117":[2,176],"123":[2,176],"124":[2,176],"125":[2,176],"134":[2,176],"135":[2,176],"136":[2,176],"137":[2,176],"138":[2,176],"139":[2,176],"140":[2,176],"141":[2,176],"142":[2,176],"143":[2,176],"144":[2,176],"145":[2,176],"146":[2,176],"148":[2,176]},{"4":[1,138],"6":350,"28":[1,6]},{"29":[1,351]},{"4":[1,352],"29":[2,182],"128":[2,182],"130":[2,182]},{"8":353,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[2,105],"27":186,"29":[2,105],"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":240,"49":[1,51],"61":[1,242],"67":241,"84":[1,239],"89":354,"90":238},{"1":[2,100],"4":[2,100],"28":[2,100],"29":[2,100],"50":[2,100],"58":[2,100],"62":[2,100],"81":[2,100],"86":[2,100],"96":[2,100],"100":[2,100],"109":[2,100],"111":[2,100],"112":[2,100],"113":[2,100],"117":[2,100],"123":[2,100],"124":[2,100],"125":[2,100],"134":[2,100],"135":[2,100],"136":[2,100],"137":[2,100],"138":[2,100],"139":[2,100],"140":[2,100],"141":[2,100],"142":[2,100],"143":[2,100],"144":[2,100],"145":[2,100],"146":[2,100],"148":[2,100]},{"4":[2,107],"29":[2,107],"86":[2,107]},{"4":[2,108],"29":[2,108],"86":[2,108]},{"4":[2,104],"29":[2,104],"50":[1,92],"86":[2,104],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"50":[1,92],"100":[1,355],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"4":[2,69],"8":356,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,69],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"58":[2,69],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"100":[2,69],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[2,134],"28":[2,134],"29":[2,134],"58":[2,134],"96":[2,134],"100":[2,134]},{"4":[2,60],"28":[2,60],"29":[2,60],"57":357,"58":[1,246]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"50":[1,92],"58":[2,171],"62":[2,171],"81":[2,171],"86":[2,171],"96":[2,171],"100":[2,171],"109":[2,171],"110":107,"111":[2,171],"112":[2,171],"113":[2,171],"116":108,"117":[2,171],"118":78,"123":[1,102],"124":[1,103],"125":[1,358],"134":[2,171],"135":[2,171],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,173],"4":[2,173],"28":[2,173],"29":[2,173],"50":[1,92],"58":[2,173],"62":[2,173],"81":[2,173],"86":[2,173],"96":[2,173],"100":[2,173],"109":[2,173],"110":107,"111":[2,173],"112":[1,359],"113":[2,173],"116":108,"117":[2,173],"118":78,"123":[1,102],"124":[1,103],"125":[2,173],"134":[2,173],"135":[2,173],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,172],"4":[2,172],"28":[2,172],"29":[2,172],"50":[1,92],"58":[2,172],"62":[2,172],"81":[2,172],"86":[2,172],"96":[2,172],"100":[2,172],"109":[2,172],"110":107,"111":[2,172],"112":[2,172],"113":[2,172],"116":108,"117":[2,172],"118":78,"123":[1,102],"124":[1,103],"125":[2,172],"134":[2,172],"135":[2,172],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"4":[2,96],"28":[2,96],"29":[2,96],"58":[2,96],"86":[2,96]},{"4":[2,60],"28":[2,60],"29":[2,60],"57":360,"58":[1,257]},{"29":[1,361],"50":[1,92],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"29":[1,362],"50":[1,92],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"4":[2,69],"28":[2,69],"29":[2,69],"58":[2,69],"96":[2,69],"100":[2,69]},{"50":[1,92],"81":[1,363],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"8":364,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"81":[1,365],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,126],"4":[2,126],"28":[2,126],"29":[2,126],"45":[2,126],"50":[2,126],"58":[2,126],"62":[2,126],"74":[2,126],"75":[2,126],"76":[2,126],"77":[2,126],"80":[2,126],"81":[2,126],"82":[2,126],"83":[2,126],"86":[2,126],"88":[2,126],"94":[2,126],"96":[2,126],"100":[2,126],"109":[2,126],"111":[2,126],"112":[2,126],"113":[2,126],"117":[2,126],"123":[2,126],"124":[2,126],"125":[2,126],"134":[2,126],"135":[2,126],"136":[2,126],"137":[2,126],"138":[2,126],"139":[2,126],"140":[2,126],"141":[2,126],"142":[2,126],"143":[2,126],"144":[2,126],"145":[2,126],"146":[2,126],"147":[2,126],"148":[2,126]},{"1":[2,128],"4":[2,128],"28":[2,128],"29":[2,128],"45":[2,128],"50":[2,128],"58":[2,128],"62":[2,128],"74":[2,128],"75":[2,128],"76":[2,128],"77":[2,128],"80":[2,128],"81":[2,128],"82":[2,128],"83":[2,128],"86":[2,128],"88":[2,128],"94":[2,128],"96":[2,128],"100":[2,128],"109":[2,128],"111":[2,128],"112":[2,128],"113":[2,128],"117":[2,128],"123":[2,128],"124":[2,128],"125":[2,128],"134":[2,128],"135":[2,128],"136":[2,128],"137":[2,128],"138":[2,128],"139":[2,128],"140":[2,128],"141":[2,128],"142":[2,128],"143":[2,128],"144":[2,128],"145":[2,128],"146":[2,128],"147":[2,128],"148":[2,128]},{"50":[1,92],"81":[1,366],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"53":[2,68],"58":[2,68]},{"29":[1,367]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"50":[2,179],"58":[2,179],"62":[2,179],"81":[2,179],"86":[2,179],"96":[2,179],"100":[2,179],"109":[2,179],"111":[2,179],"112":[2,179],"113":[2,179],"117":[2,179],"123":[2,179],"124":[2,179],"125":[2,179],"134":[2,179],"135":[2,179],"136":[2,179],"137":[2,179],"138":[2,179],"139":[2,179],"140":[2,179],"141":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"146":[2,179],"148":[2,179]},{"29":[2,183],"128":[2,183],"130":[2,183]},{"4":[2,139],"28":[2,139],"50":[1,92],"58":[2,139],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"4":[1,287],"29":[1,368]},{"1":[2,122],"4":[2,122],"28":[2,122],"29":[2,122],"50":[2,122],"58":[2,122],"62":[2,122],"74":[2,122],"75":[2,122],"76":[2,122],"77":[2,122],"80":[2,122],"81":[2,122],"82":[2,122],"83":[2,122],"86":[2,122],"94":[2,122],"96":[2,122],"100":[2,122],"109":[2,122],"111":[2,122],"112":[2,122],"113":[2,122],"117":[2,122],"123":[2,122],"124":[2,122],"125":[2,122],"134":[2,122],"135":[2,122],"136":[2,122],"137":[2,122],"138":[2,122],"139":[2,122],"140":[2,122],"141":[2,122],"142":[2,122],"143":[2,122],"144":[2,122],"145":[2,122],"146":[2,122],"147":[2,122],"148":[2,122]},{"50":[1,92],"100":[1,369],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"4":[1,292],"28":[1,293],"29":[1,370]},{"8":371,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":372,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[1,302],"28":[1,303],"29":[1,373]},{"4":[2,49],"28":[2,49],"29":[2,49],"58":[2,49],"86":[2,49]},{"4":[2,50],"28":[2,50],"29":[2,50],"58":[2,50],"86":[2,50]},{"1":[2,124],"4":[2,124],"28":[2,124],"29":[2,124],"45":[2,124],"50":[2,124],"58":[2,124],"62":[2,124],"74":[2,124],"75":[2,124],"76":[2,124],"77":[2,124],"80":[2,124],"81":[2,124],"82":[2,124],"83":[2,124],"86":[2,124],"88":[2,124],"94":[2,124],"96":[2,124],"100":[2,124],"109":[2,124],"111":[2,124],"112":[2,124],"113":[2,124],"117":[2,124],"123":[2,124],"124":[2,124],"125":[2,124],"134":[2,124],"135":[2,124],"136":[2,124],"137":[2,124],"138":[2,124],"139":[2,124],"140":[2,124],"141":[2,124],"142":[2,124],"143":[2,124],"144":[2,124],"145":[2,124],"146":[2,124],"147":[2,124],"148":[2,124]},{"50":[1,92],"81":[1,374],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,102],"124":[1,103],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,127],"4":[2,127],"28":[2,127],"29":[2,127],"45":[2,127],"50":[2,127],"58":[2,127],"62":[2,127],"74":[2,127],"75":[2,127],"76":[2,127],"77":[2,127],"80":[2,127],"81":[2,127],"82":[2,127],"83":[2,127],"86":[2,127],"88":[2,127],"94":[2,127],"96":[2,127],"100":[2,127],"109":[2,127],"111":[2,127],"112":[2,127],"113":[2,127],"117":[2,127],"123":[2,127],"124":[2,127],"125":[2,127],"134":[2,127],"135":[2,127],"136":[2,127],"137":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127],"142":[2,127],"143":[2,127],"144":[2,127],"145":[2,127],"146":[2,127],"147":[2,127],"148":[2,127]},{"1":[2,129],"4":[2,129],"28":[2,129],"29":[2,129],"45":[2,129],"50":[2,129],"58":[2,129],"62":[2,129],"74":[2,129],"75":[2,129],"76":[2,129],"77":[2,129],"80":[2,129],"81":[2,129],"82":[2,129],"83":[2,129],"86":[2,129],"88":[2,129],"94":[2,129],"96":[2,129],"100":[2,129],"109":[2,129],"111":[2,129],"112":[2,129],"113":[2,129],"117":[2,129],"123":[2,129],"124":[2,129],"125":[2,129],"134":[2,129],"135":[2,129],"136":[2,129],"137":[2,129],"138":[2,129],"139":[2,129],"140":[2,129],"141":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129]},{"1":[2,177],"4":[2,177],"28":[2,177],"29":[2,177],"50":[2,177],"58":[2,177],"62":[2,177],"81":[2,177],"86":[2,177],"96":[2,177],"100":[2,177],"109":[2,177],"111":[2,177],"112":[2,177],"113":[2,177],"117":[2,177],"123":[2,177],"124":[2,177],"125":[2,177],"134":[2,177],"135":[2,177],"136":[2,177],"137":[2,177],"138":[2,177],"139":[2,177],"140":[2,177],"141":[2,177],"142":[2,177],"143":[2,177],"144":[2,177],"145":[2,177],"146":[2,177],"148":[2,177]},{"1":[2,101],"4":[2,101],"28":[2,101],"29":[2,101],"50":[2,101],"58":[2,101],"62":[2,101],"81":[2,101],"86":[2,101],"96":[2,101],"100":[2,101],"109":[2,101],"111":[2,101],"112":[2,101],"113":[2,101],"117":[2,101],"123":[2,101],"124":[2,101],"125":[2,101],"134":[2,101],"135":[2,101],"136":[2,101],"137":[2,101],"138":[2,101],"139":[2,101],"140":[2,101],"141":[2,101],"142":[2,101],"143":[2,101],"144":[2,101],"145":[2,101],"146":[2,101],"148":[2,101]},{"1":[2,123],"4":[2,123],"28":[2,123],"29":[2,123],"50":[2,123],"58":[2,123],"62":[2,123],"74":[2,123],"75":[2,123],"76":[2,123],"77":[2,123],"80":[2,123],"81":[2,123],"82":[2,123],"83":[2,123],"86":[2,123],"94":[2,123],"96":[2,123],"100":[2,123],"109":[2,123],"111":[2,123],"112":[2,123],"113":[2,123],"117":[2,123],"123":[2,123],"124":[2,123],"125":[2,123],"134":[2,123],"135":[2,123],"136":[2,123],"137":[2,123],"138":[2,123],"139":[2,123],"140":[2,123],"141":[2,123],"142":[2,123],"143":[2,123],"144":[2,123],"145":[2,123],"146":[2,123],"147":[2,123],"148":[2,123]},{"4":[2,135],"28":[2,135],"29":[2,135],"58":[2,135],"96":[2,135],"100":[2,135]},{"1":[2,174],"4":[2,174],"28":[2,174],"29":[2,174],"50":[1,92],"58":[2,174],"62":[2,174],"81":[2,174],"86":[2,174],"96":[2,174],"100":[2,174],"109":[2,174],"110":107,"111":[2,174],"112":[2,174],"113":[2,174],"116":108,"117":[2,174],"118":78,"123":[1,102],"124":[1,103],"125":[2,174],"134":[2,174],"135":[2,174],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"1":[2,175],"4":[2,175],"28":[2,175],"29":[2,175],"50":[1,92],"58":[2,175],"62":[2,175],"81":[2,175],"86":[2,175],"96":[2,175],"100":[2,175],"109":[2,175],"110":107,"111":[2,175],"112":[2,175],"113":[2,175],"116":108,"117":[2,175],"118":78,"123":[1,102],"124":[1,103],"125":[2,175],"134":[2,175],"135":[2,175],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,101]},{"4":[2,97],"28":[2,97],"29":[2,97],"58":[2,97],"86":[2,97]},{"1":[2,125],"4":[2,125],"28":[2,125],"29":[2,125],"45":[2,125],"50":[2,125],"58":[2,125],"62":[2,125],"74":[2,125],"75":[2,125],"76":[2,125],"77":[2,125],"80":[2,125],"81":[2,125],"82":[2,125],"83":[2,125],"86":[2,125],"88":[2,125],"94":[2,125],"96":[2,125],"100":[2,125],"109":[2,125],"111":[2,125],"112":[2,125],"113":[2,125],"117":[2,125],"123":[2,125],"124":[2,125],"125":[2,125],"134":[2,125],"135":[2,125],"136":[2,125],"137":[2,125],"138":[2,125],"139":[2,125],"140":[2,125],"141":[2,125],"142":[2,125],"143":[2,125],"144":[2,125],"145":[2,125],"146":[2,125],"147":[2,125],"148":[2,125]}], ++table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,6],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[3]},{"1":[2,2],"27":85,"49":[1,51]},{"1":[2,3],"4":[1,86]},{"4":[1,87]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":88,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[1,89],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,8],"4":[2,8],"29":[2,8],"50":[1,92],"109":[2,8],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,9],"4":[2,9],"29":[2,9],"109":[2,9],"110":111,"111":[1,74],"113":[1,75],"116":112,"117":[1,77],"118":78,"134":[1,109],"135":[1,110]},{"1":[2,14],"4":[2,14],"28":[2,14],"29":[2,14],"50":[2,14],"58":[2,14],"62":[2,14],"65":115,"74":[1,117],"75":[1,118],"76":[1,119],"77":[1,120],"78":121,"79":122,"80":[1,123],"81":[2,14],"82":[1,124],"83":[1,125],"86":[2,14],"93":114,"94":[1,116],"96":[2,14],"100":[2,14],"109":[2,14],"111":[2,14],"112":[2,14],"113":[2,14],"117":[2,14],"123":[2,14],"124":[2,14],"125":[2,14],"134":[2,14],"135":[2,14],"136":[2,14],"137":[2,14],"138":[2,14],"139":[2,14],"140":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[1,113],"148":[2,14]},{"1":[2,15],"4":[2,15],"28":[2,15],"29":[2,15],"50":[2,15],"58":[2,15],"62":[2,15],"81":[2,15],"86":[2,15],"96":[2,15],"100":[2,15],"109":[2,15],"111":[2,15],"112":[2,15],"113":[2,15],"117":[2,15],"123":[2,15],"124":[2,15],"125":[2,15],"134":[2,15],"135":[2,15],"136":[2,15],"137":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"148":[2,15]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"50":[2,16],"58":[2,16],"62":[2,16],"81":[2,16],"86":[2,16],"96":[2,16],"100":[2,16],"109":[2,16],"111":[2,16],"112":[2,16],"113":[2,16],"117":[2,16],"123":[2,16],"124":[2,16],"125":[2,16],"134":[2,16],"135":[2,16],"136":[2,16],"137":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"148":[2,16]},{"1":[2,17],"4":[2,17],"28":[2,17],"29":[2,17],"50":[2,17],"58":[2,17],"62":[2,17],"81":[2,17],"86":[2,17],"96":[2,17],"100":[2,17],"109":[2,17],"111":[2,17],"112":[2,17],"113":[2,17],"117":[2,17],"123":[2,17],"124":[2,17],"125":[2,17],"134":[2,17],"135":[2,17],"136":[2,17],"137":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"148":[2,17]},{"1":[2,18],"4":[2,18],"28":[2,18],"29":[2,18],"50":[2,18],"58":[2,18],"62":[2,18],"81":[2,18],"86":[2,18],"96":[2,18],"100":[2,18],"109":[2,18],"111":[2,18],"112":[2,18],"113":[2,18],"117":[2,18],"123":[2,18],"124":[2,18],"125":[2,18],"134":[2,18],"135":[2,18],"136":[2,18],"137":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"148":[2,18]},{"1":[2,19],"4":[2,19],"28":[2,19],"29":[2,19],"50":[2,19],"58":[2,19],"62":[2,19],"81":[2,19],"86":[2,19],"96":[2,19],"100":[2,19],"109":[2,19],"111":[2,19],"112":[2,19],"113":[2,19],"117":[2,19],"123":[2,19],"124":[2,19],"125":[2,19],"134":[2,19],"135":[2,19],"136":[2,19],"137":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"148":[2,19]},{"1":[2,20],"4":[2,20],"28":[2,20],"29":[2,20],"50":[2,20],"58":[2,20],"62":[2,20],"81":[2,20],"86":[2,20],"96":[2,20],"100":[2,20],"109":[2,20],"111":[2,20],"112":[2,20],"113":[2,20],"117":[2,20],"123":[2,20],"124":[2,20],"125":[2,20],"134":[2,20],"135":[2,20],"136":[2,20],"137":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"148":[2,20]},{"1":[2,21],"4":[2,21],"28":[2,21],"29":[2,21],"50":[2,21],"58":[2,21],"62":[2,21],"81":[2,21],"86":[2,21],"96":[2,21],"100":[2,21],"109":[2,21],"111":[2,21],"112":[2,21],"113":[2,21],"117":[2,21],"123":[2,21],"124":[2,21],"125":[2,21],"134":[2,21],"135":[2,21],"136":[2,21],"137":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"148":[2,21]},{"1":[2,22],"4":[2,22],"28":[2,22],"29":[2,22],"50":[2,22],"58":[2,22],"62":[2,22],"81":[2,22],"86":[2,22],"96":[2,22],"100":[2,22],"109":[2,22],"111":[2,22],"112":[2,22],"113":[2,22],"117":[2,22],"123":[2,22],"124":[2,22],"125":[2,22],"134":[2,22],"135":[2,22],"136":[2,22],"137":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"148":[2,22]},{"1":[2,23],"4":[2,23],"28":[2,23],"29":[2,23],"50":[2,23],"58":[2,23],"62":[2,23],"81":[2,23],"86":[2,23],"96":[2,23],"100":[2,23],"109":[2,23],"111":[2,23],"112":[2,23],"113":[2,23],"117":[2,23],"123":[2,23],"124":[2,23],"125":[2,23],"134":[2,23],"135":[2,23],"136":[2,23],"137":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"148":[2,23]},{"1":[2,24],"4":[2,24],"28":[2,24],"29":[2,24],"50":[2,24],"58":[2,24],"62":[2,24],"81":[2,24],"86":[2,24],"96":[2,24],"100":[2,24],"109":[2,24],"111":[2,24],"112":[2,24],"113":[2,24],"117":[2,24],"123":[2,24],"124":[2,24],"125":[2,24],"134":[2,24],"135":[2,24],"136":[2,24],"137":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"148":[2,24]},{"1":[2,25],"4":[2,25],"28":[2,25],"29":[2,25],"50":[2,25],"58":[2,25],"62":[2,25],"81":[2,25],"86":[2,25],"96":[2,25],"100":[2,25],"109":[2,25],"111":[2,25],"112":[2,25],"113":[2,25],"117":[2,25],"123":[2,25],"124":[2,25],"125":[2,25],"134":[2,25],"135":[2,25],"136":[2,25],"137":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"148":[2,25]},{"1":[2,26],"4":[2,26],"28":[2,26],"29":[2,26],"50":[2,26],"58":[2,26],"62":[2,26],"81":[2,26],"86":[2,26],"96":[2,26],"100":[2,26],"109":[2,26],"111":[2,26],"112":[2,26],"113":[2,26],"117":[2,26],"123":[2,26],"124":[2,26],"125":[2,26],"134":[2,26],"135":[2,26],"136":[2,26],"137":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"148":[2,26]},{"1":[2,27],"4":[2,27],"28":[2,27],"29":[2,27],"50":[2,27],"58":[2,27],"62":[2,27],"81":[2,27],"86":[2,27],"96":[2,27],"100":[2,27],"109":[2,27],"111":[2,27],"112":[2,27],"113":[2,27],"117":[2,27],"123":[2,27],"124":[2,27],"125":[2,27],"134":[2,27],"135":[2,27],"136":[2,27],"137":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"148":[2,27]},{"1":[2,10],"4":[2,10],"29":[2,10],"109":[2,10],"111":[2,10],"113":[2,10],"117":[2,10],"134":[2,10],"135":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"109":[2,11],"111":[2,11],"113":[2,11],"117":[2,11],"134":[2,11],"135":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"109":[2,12],"111":[2,12],"113":[2,12],"117":[2,12],"134":[2,12],"135":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"109":[2,13],"111":[2,13],"113":[2,13],"117":[2,13],"134":[2,13],"135":[2,13]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"45":[1,126],"50":[2,77],"58":[2,77],"62":[2,77],"74":[2,77],"75":[2,77],"76":[2,77],"77":[2,77],"80":[2,77],"81":[2,77],"82":[2,77],"83":[2,77],"86":[2,77],"94":[2,77],"96":[2,77],"100":[2,77],"109":[2,77],"111":[2,77],"112":[2,77],"113":[2,77],"117":[2,77],"123":[2,77],"124":[2,77],"125":[2,77],"134":[2,77],"135":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77]},{"1":[2,78],"4":[2,78],"28":[2,78],"29":[2,78],"50":[2,78],"58":[2,78],"62":[2,78],"74":[2,78],"75":[2,78],"76":[2,78],"77":[2,78],"80":[2,78],"81":[2,78],"82":[2,78],"83":[2,78],"86":[2,78],"94":[2,78],"96":[2,78],"100":[2,78],"109":[2,78],"111":[2,78],"112":[2,78],"113":[2,78],"117":[2,78],"123":[2,78],"124":[2,78],"125":[2,78],"134":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78]},{"1":[2,79],"4":[2,79],"28":[2,79],"29":[2,79],"50":[2,79],"58":[2,79],"62":[2,79],"74":[2,79],"75":[2,79],"76":[2,79],"77":[2,79],"80":[2,79],"81":[2,79],"82":[2,79],"83":[2,79],"86":[2,79],"94":[2,79],"96":[2,79],"100":[2,79],"109":[2,79],"111":[2,79],"112":[2,79],"113":[2,79],"117":[2,79],"123":[2,79],"124":[2,79],"125":[2,79],"134":[2,79],"135":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79]},{"1":[2,80],"4":[2,80],"28":[2,80],"29":[2,80],"50":[2,80],"58":[2,80],"62":[2,80],"74":[2,80],"75":[2,80],"76":[2,80],"77":[2,80],"80":[2,80],"81":[2,80],"82":[2,80],"83":[2,80],"86":[2,80],"94":[2,80],"96":[2,80],"100":[2,80],"109":[2,80],"111":[2,80],"112":[2,80],"113":[2,80],"117":[2,80],"123":[2,80],"124":[2,80],"125":[2,80],"134":[2,80],"135":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"50":[2,81],"58":[2,81],"62":[2,81],"74":[2,81],"75":[2,81],"76":[2,81],"77":[2,81],"80":[2,81],"81":[2,81],"82":[2,81],"83":[2,81],"86":[2,81],"94":[2,81],"96":[2,81],"100":[2,81],"109":[2,81],"111":[2,81],"112":[2,81],"113":[2,81],"117":[2,81],"123":[2,81],"124":[2,81],"125":[2,81],"134":[2,81],"135":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81]},{"1":[2,82],"4":[2,82],"28":[2,82],"29":[2,82],"50":[2,82],"58":[2,82],"62":[2,82],"74":[2,82],"75":[2,82],"76":[2,82],"77":[2,82],"80":[2,82],"81":[2,82],"82":[2,82],"83":[2,82],"86":[2,82],"94":[2,82],"96":[2,82],"100":[2,82],"109":[2,82],"111":[2,82],"112":[2,82],"113":[2,82],"117":[2,82],"123":[2,82],"124":[2,82],"125":[2,82],"134":[2,82],"135":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82]},{"1":[2,109],"4":[2,109],"28":[2,109],"29":[2,109],"50":[2,109],"58":[2,109],"62":[2,109],"65":128,"74":[1,117],"75":[1,118],"76":[1,119],"77":[1,120],"78":121,"79":122,"80":[1,123],"81":[2,109],"82":[1,124],"83":[1,125],"86":[2,109],"93":127,"94":[1,116],"96":[2,109],"100":[2,109],"109":[2,109],"111":[2,109],"112":[2,109],"113":[2,109],"117":[2,109],"123":[2,109],"124":[2,109],"125":[2,109],"134":[2,109],"135":[2,109],"136":[2,109],"137":[2,109],"138":[2,109],"139":[2,109],"140":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"148":[2,109]},{"1":[2,110],"4":[2,110],"28":[2,110],"29":[2,110],"50":[2,110],"58":[2,110],"62":[2,110],"81":[2,110],"86":[2,110],"96":[2,110],"100":[2,110],"109":[2,110],"111":[2,110],"112":[2,110],"113":[2,110],"117":[2,110],"123":[2,110],"124":[2,110],"125":[2,110],"134":[2,110],"135":[2,110],"136":[2,110],"137":[2,110],"138":[2,110],"139":[2,110],"140":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"148":[2,110]},{"14":130,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":131,"61":[1,68],"64":132,"66":129,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"98":[1,67],"99":[1,66],"108":[1,65]},{"52":133,"53":[2,62],"58":[2,62],"59":134,"60":[1,135],"61":[1,136]},{"4":[1,138],"6":137,"28":[1,6]},{"8":139,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":141,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":142,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":143,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":144,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"50":[2,188],"58":[2,188],"62":[2,188],"81":[2,188],"86":[2,188],"96":[2,188],"100":[2,188],"109":[2,188],"111":[2,188],"112":[2,188],"113":[2,188],"117":[2,188],"123":[2,188],"124":[2,188],"125":[2,188],"128":[1,145],"134":[2,188],"135":[2,188],"136":[2,188],"137":[2,188],"138":[2,188],"139":[2,188],"140":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"148":[2,188]},{"4":[1,138],"6":146,"28":[1,6]},{"4":[1,138],"6":147,"28":[1,6]},{"1":[2,154],"4":[2,154],"28":[2,154],"29":[2,154],"50":[2,154],"58":[2,154],"62":[2,154],"81":[2,154],"86":[2,154],"96":[2,154],"100":[2,154],"109":[2,154],"111":[2,154],"112":[2,154],"113":[2,154],"117":[2,154],"123":[2,154],"124":[2,154],"125":[2,154],"134":[2,154],"135":[2,154],"136":[2,154],"137":[2,154],"138":[2,154],"139":[2,154],"140":[2,154],"141":[2,154],"142":[2,154],"143":[2,154],"144":[2,154],"145":[2,154],"146":[2,154],"148":[2,154]},{"4":[1,138],"6":148,"28":[1,6]},{"8":149,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,150],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"45":[2,74],"50":[2,74],"58":[2,74],"62":[2,74],"74":[2,74],"75":[2,74],"76":[2,74],"77":[2,74],"80":[2,74],"81":[2,74],"82":[2,74],"83":[2,74],"86":[2,74],"88":[1,151],"94":[2,74],"96":[2,74],"100":[2,74],"109":[2,74],"111":[2,74],"112":[2,74],"113":[2,74],"117":[2,74],"123":[2,74],"124":[2,74],"125":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74]},{"14":154,"28":[1,153],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":131,"61":[1,68],"64":152,"66":155,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"98":[1,67],"99":[1,66],"108":[1,65]},{"1":[2,54],"4":[2,54],"28":[2,54],"29":[2,54],"50":[2,54],"58":[2,54],"62":[2,54],"81":[2,54],"86":[2,54],"96":[2,54],"100":[2,54],"105":[2,54],"106":[2,54],"109":[2,54],"111":[2,54],"112":[2,54],"113":[2,54],"117":[2,54],"123":[2,54],"124":[2,54],"125":[2,54],"128":[2,54],"130":[2,54],"134":[2,54],"135":[2,54],"136":[2,54],"137":[2,54],"138":[2,54],"139":[2,54],"140":[2,54],"141":[2,54],"142":[2,54],"143":[2,54],"144":[2,54],"145":[2,54],"146":[2,54],"148":[2,54]},{"1":[2,53],"4":[2,53],"8":156,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[2,53],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"109":[2,53],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"134":[2,53],"135":[2,53],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":157,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"45":[2,75],"50":[2,75],"58":[2,75],"62":[2,75],"74":[2,75],"75":[2,75],"76":[2,75],"77":[2,75],"80":[2,75],"81":[2,75],"82":[2,75],"83":[2,75],"86":[2,75],"94":[2,75],"96":[2,75],"100":[2,75],"109":[2,75],"111":[2,75],"112":[2,75],"113":[2,75],"117":[2,75],"123":[2,75],"124":[2,75],"125":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75]},{"1":[2,76],"4":[2,76],"28":[2,76],"29":[2,76],"45":[2,76],"50":[2,76],"58":[2,76],"62":[2,76],"74":[2,76],"75":[2,76],"76":[2,76],"77":[2,76],"80":[2,76],"81":[2,76],"82":[2,76],"83":[2,76],"86":[2,76],"94":[2,76],"96":[2,76],"100":[2,76],"109":[2,76],"111":[2,76],"112":[2,76],"113":[2,76],"117":[2,76],"123":[2,76],"124":[2,76],"125":[2,76],"134":[2,76],"135":[2,76],"136":[2,76],"137":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76]},{"1":[2,34],"4":[2,34],"28":[2,34],"29":[2,34],"50":[2,34],"58":[2,34],"62":[2,34],"74":[2,34],"75":[2,34],"76":[2,34],"77":[2,34],"80":[2,34],"81":[2,34],"82":[2,34],"83":[2,34],"86":[2,34],"94":[2,34],"96":[2,34],"100":[2,34],"109":[2,34],"111":[2,34],"112":[2,34],"113":[2,34],"117":[2,34],"123":[2,34],"124":[2,34],"125":[2,34],"134":[2,34],"135":[2,34],"136":[2,34],"137":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34]},{"1":[2,35],"4":[2,35],"28":[2,35],"29":[2,35],"50":[2,35],"58":[2,35],"62":[2,35],"74":[2,35],"75":[2,35],"76":[2,35],"77":[2,35],"80":[2,35],"81":[2,35],"82":[2,35],"83":[2,35],"86":[2,35],"94":[2,35],"96":[2,35],"100":[2,35],"109":[2,35],"111":[2,35],"112":[2,35],"113":[2,35],"117":[2,35],"123":[2,35],"124":[2,35],"125":[2,35],"134":[2,35],"135":[2,35],"136":[2,35],"137":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35]},{"1":[2,36],"4":[2,36],"28":[2,36],"29":[2,36],"50":[2,36],"58":[2,36],"62":[2,36],"74":[2,36],"75":[2,36],"76":[2,36],"77":[2,36],"80":[2,36],"81":[2,36],"82":[2,36],"83":[2,36],"86":[2,36],"94":[2,36],"96":[2,36],"100":[2,36],"109":[2,36],"111":[2,36],"112":[2,36],"113":[2,36],"117":[2,36],"123":[2,36],"124":[2,36],"125":[2,36],"134":[2,36],"135":[2,36],"136":[2,36],"137":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"50":[2,37],"58":[2,37],"62":[2,37],"74":[2,37],"75":[2,37],"76":[2,37],"77":[2,37],"80":[2,37],"81":[2,37],"82":[2,37],"83":[2,37],"86":[2,37],"94":[2,37],"96":[2,37],"100":[2,37],"109":[2,37],"111":[2,37],"112":[2,37],"113":[2,37],"117":[2,37],"123":[2,37],"124":[2,37],"125":[2,37],"134":[2,37],"135":[2,37],"136":[2,37],"137":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"50":[2,38],"58":[2,38],"62":[2,38],"74":[2,38],"75":[2,38],"76":[2,38],"77":[2,38],"80":[2,38],"81":[2,38],"82":[2,38],"83":[2,38],"86":[2,38],"94":[2,38],"96":[2,38],"100":[2,38],"109":[2,38],"111":[2,38],"112":[2,38],"113":[2,38],"117":[2,38],"123":[2,38],"124":[2,38],"125":[2,38],"134":[2,38],"135":[2,38],"136":[2,38],"137":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"50":[2,39],"58":[2,39],"62":[2,39],"74":[2,39],"75":[2,39],"76":[2,39],"77":[2,39],"80":[2,39],"81":[2,39],"82":[2,39],"83":[2,39],"86":[2,39],"94":[2,39],"96":[2,39],"100":[2,39],"109":[2,39],"111":[2,39],"112":[2,39],"113":[2,39],"117":[2,39],"123":[2,39],"124":[2,39],"125":[2,39],"134":[2,39],"135":[2,39],"136":[2,39],"137":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39]},{"1":[2,40],"4":[2,40],"28":[2,40],"29":[2,40],"50":[2,40],"58":[2,40],"62":[2,40],"74":[2,40],"75":[2,40],"76":[2,40],"77":[2,40],"80":[2,40],"81":[2,40],"82":[2,40],"83":[2,40],"86":[2,40],"94":[2,40],"96":[2,40],"100":[2,40],"109":[2,40],"111":[2,40],"112":[2,40],"113":[2,40],"117":[2,40],"123":[2,40],"124":[2,40],"125":[2,40],"134":[2,40],"135":[2,40],"136":[2,40],"137":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40]},{"1":[2,41],"4":[2,41],"28":[2,41],"29":[2,41],"50":[2,41],"58":[2,41],"62":[2,41],"74":[2,41],"75":[2,41],"76":[2,41],"77":[2,41],"80":[2,41],"81":[2,41],"82":[2,41],"83":[2,41],"86":[2,41],"94":[2,41],"96":[2,41],"100":[2,41],"109":[2,41],"111":[2,41],"112":[2,41],"113":[2,41],"117":[2,41],"123":[2,41],"124":[2,41],"125":[2,41],"134":[2,41],"135":[2,41],"136":[2,41],"137":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41]},{"1":[2,42],"4":[2,42],"28":[2,42],"29":[2,42],"50":[2,42],"58":[2,42],"62":[2,42],"74":[2,42],"75":[2,42],"76":[2,42],"77":[2,42],"80":[2,42],"81":[2,42],"82":[2,42],"83":[2,42],"86":[2,42],"94":[2,42],"96":[2,42],"100":[2,42],"109":[2,42],"111":[2,42],"112":[2,42],"113":[2,42],"117":[2,42],"123":[2,42],"124":[2,42],"125":[2,42],"134":[2,42],"135":[2,42],"136":[2,42],"137":[2,42],"138":[2,42],"139":[2,42],"140":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"148":[2,42]},{"7":158,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"109":[1,159],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[2,131],"8":160,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,131],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"58":[2,131],"61":[1,68],"63":163,"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"95":161,"97":[1,69],"98":[1,67],"99":[1,66],"100":[2,131],"101":162,"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,119],"4":[2,119],"28":[2,119],"29":[2,119],"50":[2,119],"58":[2,119],"62":[2,119],"74":[2,119],"75":[2,119],"76":[2,119],"77":[2,119],"80":[2,119],"81":[2,119],"82":[2,119],"83":[2,119],"86":[2,119],"94":[2,119],"96":[2,119],"100":[2,119],"109":[2,119],"111":[2,119],"112":[2,119],"113":[2,119],"117":[2,119],"123":[2,119],"124":[2,119],"125":[2,119],"134":[2,119],"135":[2,119],"136":[2,119],"137":[2,119],"138":[2,119],"139":[2,119],"140":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"146":[2,119],"147":[2,119],"148":[2,119]},{"1":[2,120],"4":[2,120],"28":[2,120],"29":[2,120],"30":164,"31":[1,84],"50":[2,120],"58":[2,120],"62":[2,120],"74":[2,120],"75":[2,120],"76":[2,120],"77":[2,120],"80":[2,120],"81":[2,120],"82":[2,120],"83":[2,120],"86":[2,120],"94":[2,120],"96":[2,120],"100":[2,120],"109":[2,120],"111":[2,120],"112":[2,120],"113":[2,120],"117":[2,120],"123":[2,120],"124":[2,120],"125":[2,120],"134":[2,120],"135":[2,120],"136":[2,120],"137":[2,120],"138":[2,120],"139":[2,120],"140":[2,120],"141":[2,120],"142":[2,120],"143":[2,120],"144":[2,120],"145":[2,120],"146":[2,120],"147":[2,120],"148":[2,120]},{"1":[2,117],"4":[2,117],"28":[2,117],"29":[2,117],"50":[2,117],"58":[2,117],"62":[2,117],"81":[2,117],"86":[2,117],"93":165,"94":[1,116],"96":[2,117],"100":[2,117],"109":[2,117],"111":[2,117],"112":[2,117],"113":[2,117],"117":[2,117],"123":[2,117],"124":[2,117],"125":[2,117],"134":[2,117],"135":[2,117],"136":[2,117],"137":[2,117],"138":[2,117],"139":[2,117],"140":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"146":[2,117],"148":[2,117]},{"4":[2,58],"28":[2,58]},{"4":[2,59],"28":[2,59]},{"8":166,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":167,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":168,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":169,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[1,138],"6":170,"8":171,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,6],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"30":176,"31":[1,84],"68":177,"69":178,"71":172,"84":[1,81],"99":[1,66],"120":173,"121":[1,174],"122":175},{"119":179,"123":[1,180],"124":[1,181]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"45":[2,70],"50":[2,70],"58":[2,70],"62":[2,70],"74":[2,70],"75":[2,70],"76":[2,70],"77":[2,70],"80":[2,70],"81":[2,70],"82":[2,70],"83":[2,70],"86":[2,70],"88":[2,70],"94":[2,70],"96":[2,70],"100":[2,70],"109":[2,70],"111":[2,70],"112":[2,70],"113":[2,70],"117":[2,70],"123":[2,70],"124":[2,70],"125":[2,70],"134":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"45":[2,73],"50":[2,73],"58":[2,73],"62":[2,73],"74":[2,73],"75":[2,73],"76":[2,73],"77":[2,73],"80":[2,73],"81":[2,73],"82":[2,73],"83":[2,73],"86":[2,73],"88":[2,73],"94":[2,73],"96":[2,73],"100":[2,73],"109":[2,73],"111":[2,73],"112":[2,73],"113":[2,73],"117":[2,73],"123":[2,73],"124":[2,73],"125":[2,73],"134":[2,73],"135":[2,73],"136":[2,73],"137":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73]},{"4":[2,93],"27":186,"28":[2,93],"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":183,"49":[1,51],"58":[2,93],"85":182,"86":[2,93]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"47":[2,32],"50":[2,32],"58":[2,32],"62":[2,32],"74":[2,32],"75":[2,32],"76":[2,32],"77":[2,32],"80":[2,32],"81":[2,32],"82":[2,32],"83":[2,32],"86":[2,32],"94":[2,32],"96":[2,32],"100":[2,32],"109":[2,32],"111":[2,32],"112":[2,32],"113":[2,32],"117":[2,32],"123":[2,32],"124":[2,32],"125":[2,32],"134":[2,32],"135":[2,32],"136":[2,32],"137":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32]},{"1":[2,33],"4":[2,33],"28":[2,33],"29":[2,33],"47":[2,33],"50":[2,33],"58":[2,33],"62":[2,33],"74":[2,33],"75":[2,33],"76":[2,33],"77":[2,33],"80":[2,33],"81":[2,33],"82":[2,33],"83":[2,33],"86":[2,33],"94":[2,33],"96":[2,33],"100":[2,33],"109":[2,33],"111":[2,33],"112":[2,33],"113":[2,33],"117":[2,33],"123":[2,33],"124":[2,33],"125":[2,33],"134":[2,33],"135":[2,33],"136":[2,33],"137":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33]},{"1":[2,31],"4":[2,31],"28":[2,31],"29":[2,31],"45":[2,31],"47":[2,31],"50":[2,31],"58":[2,31],"62":[2,31],"74":[2,31],"75":[2,31],"76":[2,31],"77":[2,31],"80":[2,31],"81":[2,31],"82":[2,31],"83":[2,31],"86":[2,31],"88":[2,31],"94":[2,31],"96":[2,31],"100":[2,31],"109":[2,31],"111":[2,31],"112":[2,31],"113":[2,31],"117":[2,31],"123":[2,31],"124":[2,31],"125":[2,31],"134":[2,31],"135":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"50":[2,30],"58":[2,30],"62":[2,30],"81":[2,30],"86":[2,30],"96":[2,30],"100":[2,30],"105":[2,30],"106":[2,30],"109":[2,30],"111":[2,30],"112":[2,30],"113":[2,30],"117":[2,30],"123":[2,30],"124":[2,30],"125":[2,30],"128":[2,30],"130":[2,30],"134":[2,30],"135":[2,30],"136":[2,30],"137":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"148":[2,30]},{"1":[2,7],"4":[2,7],"7":187,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[2,7],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,4]},{"4":[1,86],"29":[1,188]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"50":[2,29],"58":[2,29],"62":[2,29],"81":[2,29],"86":[2,29],"96":[2,29],"100":[2,29],"105":[2,29],"106":[2,29],"109":[2,29],"111":[2,29],"112":[2,29],"113":[2,29],"117":[2,29],"123":[2,29],"124":[2,29],"125":[2,29],"128":[2,29],"130":[2,29],"134":[2,29],"135":[2,29],"136":[2,29],"137":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"148":[2,29]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"50":[2,198],"58":[2,198],"62":[2,198],"81":[2,198],"86":[2,198],"96":[2,198],"100":[2,198],"109":[2,198],"111":[2,198],"112":[2,198],"113":[2,198],"117":[2,198],"123":[2,198],"124":[2,198],"125":[2,198],"134":[2,198],"135":[2,198],"136":[2,198],"137":[2,198],"138":[2,198],"139":[2,198],"140":[2,198],"141":[2,198],"142":[2,198],"143":[2,198],"144":[2,198],"145":[2,198],"146":[2,198],"148":[2,198]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"50":[2,199],"58":[2,199],"62":[2,199],"81":[2,199],"86":[2,199],"96":[2,199],"100":[2,199],"109":[2,199],"111":[2,199],"112":[2,199],"113":[2,199],"117":[2,199],"123":[2,199],"124":[2,199],"125":[2,199],"134":[2,199],"135":[2,199],"136":[2,199],"137":[2,199],"138":[2,199],"139":[2,199],"140":[2,199],"141":[2,199],"142":[2,199],"143":[2,199],"144":[2,199],"145":[2,199],"146":[2,199],"148":[2,199]},{"1":[2,55],"4":[2,55],"8":189,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,55],"29":[2,55],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"50":[2,55],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"58":[2,55],"61":[1,68],"62":[2,55],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"81":[2,55],"84":[1,81],"86":[2,55],"87":[1,50],"91":34,"92":[1,35],"96":[2,55],"97":[1,69],"98":[1,67],"99":[1,66],"100":[2,55],"103":[1,44],"107":[1,53],"108":[1,65],"109":[2,55],"110":45,"111":[2,55],"112":[2,55],"113":[2,55],"114":46,"115":[1,76],"116":47,"117":[2,55],"118":78,"123":[2,55],"124":[2,55],"125":[2,55],"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"134":[2,55],"135":[2,55],"136":[2,55],"137":[2,55],"138":[2,55],"139":[2,55],"140":[2,55],"141":[2,55],"142":[2,55],"143":[2,55],"144":[2,55],"145":[2,55],"146":[2,55],"148":[2,55]},{"8":190,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":191,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":192,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":193,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":194,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":195,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":196,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":197,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":198,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":199,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":200,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"123":[1,201],"124":[1,202],"148":[1,203]},{"8":204,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":205,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,153],"4":[2,153],"28":[2,153],"29":[2,153],"50":[2,153],"58":[2,153],"62":[2,153],"81":[2,153],"86":[2,153],"96":[2,153],"100":[2,153],"109":[2,153],"111":[2,153],"112":[2,153],"113":[2,153],"117":[2,153],"123":[2,153],"124":[2,153],"125":[2,153],"134":[2,153],"135":[2,153],"136":[2,153],"137":[2,153],"138":[2,153],"139":[2,153],"140":[2,153],"141":[2,153],"142":[2,153],"143":[2,153],"144":[2,153],"145":[2,153],"146":[2,153],"148":[2,153]},{"1":[2,158],"4":[2,158],"28":[2,158],"29":[2,158],"50":[2,158],"58":[2,158],"62":[2,158],"81":[2,158],"86":[2,158],"96":[2,158],"100":[2,158],"109":[2,158],"111":[2,158],"112":[2,158],"113":[2,158],"117":[2,158],"123":[2,158],"124":[2,158],"125":[2,158],"134":[2,158],"135":[2,158],"136":[2,158],"137":[2,158],"138":[2,158],"139":[2,158],"140":[2,158],"141":[2,158],"142":[2,158],"143":[2,158],"144":[2,158],"145":[2,158],"146":[2,158],"148":[2,158]},{"8":206,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":207,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,152],"4":[2,152],"28":[2,152],"29":[2,152],"50":[2,152],"58":[2,152],"62":[2,152],"81":[2,152],"86":[2,152],"96":[2,152],"100":[2,152],"109":[2,152],"111":[2,152],"112":[2,152],"113":[2,152],"117":[2,152],"123":[2,152],"124":[2,152],"125":[2,152],"134":[2,152],"135":[2,152],"136":[2,152],"137":[2,152],"138":[2,152],"139":[2,152],"140":[2,152],"141":[2,152],"142":[2,152],"143":[2,152],"144":[2,152],"145":[2,152],"146":[2,152],"148":[2,152]},{"1":[2,157],"4":[2,157],"28":[2,157],"29":[2,157],"50":[2,157],"58":[2,157],"62":[2,157],"81":[2,157],"86":[2,157],"96":[2,157],"100":[2,157],"109":[2,157],"111":[2,157],"112":[2,157],"113":[2,157],"117":[2,157],"123":[2,157],"124":[2,157],"125":[2,157],"134":[2,157],"135":[2,157],"136":[2,157],"137":[2,157],"138":[2,157],"139":[2,157],"140":[2,157],"141":[2,157],"142":[2,157],"143":[2,157],"144":[2,157],"145":[2,157],"146":[2,157],"148":[2,157]},{"8":208,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,209],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,114],"4":[2,114],"28":[2,114],"29":[2,114],"50":[2,114],"58":[2,114],"62":[2,114],"74":[2,114],"75":[2,114],"76":[2,114],"77":[2,114],"80":[2,114],"81":[2,114],"82":[2,114],"83":[2,114],"86":[2,114],"94":[2,114],"96":[2,114],"100":[2,114],"109":[2,114],"111":[2,114],"112":[2,114],"113":[2,114],"117":[2,114],"123":[2,114],"124":[2,114],"125":[2,114],"134":[2,114],"135":[2,114],"136":[2,114],"137":[2,114],"138":[2,114],"139":[2,114],"140":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"148":[2,114]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"45":[2,71],"50":[2,71],"58":[2,71],"62":[2,71],"74":[2,71],"75":[2,71],"76":[2,71],"77":[2,71],"80":[2,71],"81":[2,71],"82":[2,71],"83":[2,71],"86":[2,71],"88":[2,71],"94":[2,71],"96":[2,71],"100":[2,71],"109":[2,71],"111":[2,71],"112":[2,71],"113":[2,71],"117":[2,71],"123":[2,71],"124":[2,71],"125":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71],"138":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71]},{"4":[2,131],"8":211,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,131],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"58":[2,131],"61":[1,68],"63":163,"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"95":210,"96":[2,131],"97":[1,69],"98":[1,67],"99":[1,66],"101":162,"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"30":212,"31":[1,84]},{"30":213,"31":[1,84]},{"1":[2,85],"4":[2,85],"28":[2,85],"29":[2,85],"45":[2,85],"50":[2,85],"58":[2,85],"62":[2,85],"74":[2,85],"75":[2,85],"76":[2,85],"77":[2,85],"80":[2,85],"81":[2,85],"82":[2,85],"83":[2,85],"86":[2,85],"88":[2,85],"94":[2,85],"96":[2,85],"100":[2,85],"109":[2,85],"111":[2,85],"112":[2,85],"113":[2,85],"117":[2,85],"123":[2,85],"124":[2,85],"125":[2,85],"134":[2,85],"135":[2,85],"136":[2,85],"137":[2,85],"138":[2,85],"139":[2,85],"140":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"148":[2,85]},{"30":214,"31":[1,84]},{"1":[2,87],"4":[2,87],"28":[2,87],"29":[2,87],"45":[2,87],"50":[2,87],"58":[2,87],"62":[2,87],"74":[2,87],"75":[2,87],"76":[2,87],"77":[2,87],"80":[2,87],"81":[2,87],"82":[2,87],"83":[2,87],"86":[2,87],"88":[2,87],"94":[2,87],"96":[2,87],"100":[2,87],"109":[2,87],"111":[2,87],"112":[2,87],"113":[2,87],"117":[2,87],"123":[2,87],"124":[2,87],"125":[2,87],"134":[2,87],"135":[2,87],"136":[2,87],"137":[2,87],"138":[2,87],"139":[2,87],"140":[2,87],"141":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87],"148":[2,87]},{"1":[2,88],"4":[2,88],"28":[2,88],"29":[2,88],"45":[2,88],"50":[2,88],"58":[2,88],"62":[2,88],"74":[2,88],"75":[2,88],"76":[2,88],"77":[2,88],"80":[2,88],"81":[2,88],"82":[2,88],"83":[2,88],"86":[2,88],"88":[2,88],"94":[2,88],"96":[2,88],"100":[2,88],"109":[2,88],"111":[2,88],"112":[2,88],"113":[2,88],"117":[2,88],"123":[2,88],"124":[2,88],"125":[2,88],"134":[2,88],"135":[2,88],"136":[2,88],"137":[2,88],"138":[2,88],"139":[2,88],"140":[2,88],"141":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88],"148":[2,88]},{"8":215,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"62":[1,216],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"78":217,"80":[1,218],"82":[1,124],"83":[1,125]},{"78":219,"80":[1,218],"82":[1,124],"83":[1,125]},{"8":220,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,221],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,115],"4":[2,115],"28":[2,115],"29":[2,115],"50":[2,115],"58":[2,115],"62":[2,115],"74":[2,115],"75":[2,115],"76":[2,115],"77":[2,115],"80":[2,115],"81":[2,115],"82":[2,115],"83":[2,115],"86":[2,115],"94":[2,115],"96":[2,115],"100":[2,115],"109":[2,115],"111":[2,115],"112":[2,115],"113":[2,115],"117":[2,115],"123":[2,115],"124":[2,115],"125":[2,115],"134":[2,115],"135":[2,115],"136":[2,115],"137":[2,115],"138":[2,115],"139":[2,115],"140":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"148":[2,115]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"45":[2,72],"50":[2,72],"58":[2,72],"62":[2,72],"74":[2,72],"75":[2,72],"76":[2,72],"77":[2,72],"80":[2,72],"81":[2,72],"82":[2,72],"83":[2,72],"86":[2,72],"88":[2,72],"94":[2,72],"96":[2,72],"100":[2,72],"109":[2,72],"111":[2,72],"112":[2,72],"113":[2,72],"117":[2,72],"123":[2,72],"124":[2,72],"125":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72]},{"1":[2,111],"4":[2,111],"28":[2,111],"29":[2,111],"50":[2,111],"58":[2,111],"62":[2,111],"65":128,"74":[1,117],"75":[1,118],"76":[1,119],"77":[1,120],"78":121,"79":122,"80":[1,123],"81":[2,111],"82":[1,124],"83":[1,125],"86":[2,111],"93":127,"94":[1,116],"96":[2,111],"100":[2,111],"109":[2,111],"111":[2,111],"112":[2,111],"113":[2,111],"117":[2,111],"123":[2,111],"124":[2,111],"125":[2,111],"134":[2,111],"135":[2,111],"136":[2,111],"137":[2,111],"138":[2,111],"139":[2,111],"140":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"148":[2,111]},{"1":[2,112],"4":[2,112],"28":[2,112],"29":[2,112],"50":[2,112],"58":[2,112],"62":[2,112],"65":115,"74":[1,117],"75":[1,118],"76":[1,119],"77":[1,120],"78":121,"79":122,"80":[1,123],"81":[2,112],"82":[1,124],"83":[1,125],"86":[2,112],"93":114,"94":[1,116],"96":[2,112],"100":[2,112],"109":[2,112],"111":[2,112],"112":[2,112],"113":[2,112],"117":[2,112],"123":[2,112],"124":[2,112],"125":[2,112],"134":[2,112],"135":[2,112],"136":[2,112],"137":[2,112],"138":[2,112],"139":[2,112],"140":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"148":[2,112]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"50":[2,77],"58":[2,77],"62":[2,77],"74":[2,77],"75":[2,77],"76":[2,77],"77":[2,77],"80":[2,77],"81":[2,77],"82":[2,77],"83":[2,77],"86":[2,77],"94":[2,77],"96":[2,77],"100":[2,77],"109":[2,77],"111":[2,77],"112":[2,77],"113":[2,77],"117":[2,77],"123":[2,77],"124":[2,77],"125":[2,77],"134":[2,77],"135":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"148":[2,77]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"50":[2,74],"58":[2,74],"62":[2,74],"74":[2,74],"75":[2,74],"76":[2,74],"77":[2,74],"80":[2,74],"81":[2,74],"82":[2,74],"83":[2,74],"86":[2,74],"94":[2,74],"96":[2,74],"100":[2,74],"109":[2,74],"111":[2,74],"112":[2,74],"113":[2,74],"117":[2,74],"123":[2,74],"124":[2,74],"125":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"148":[2,74]},{"53":[1,222],"58":[1,223]},{"53":[2,63],"58":[2,63]},{"53":[2,65],"58":[2,65],"62":[1,224]},{"60":[1,225]},{"1":[2,57],"4":[2,57],"28":[2,57],"29":[2,57],"50":[2,57],"58":[2,57],"62":[2,57],"81":[2,57],"86":[2,57],"96":[2,57],"100":[2,57],"109":[2,57],"111":[2,57],"112":[2,57],"113":[2,57],"117":[2,57],"123":[2,57],"124":[2,57],"125":[2,57],"134":[2,57],"135":[2,57],"136":[2,57],"137":[2,57],"138":[2,57],"139":[2,57],"140":[2,57],"141":[2,57],"142":[2,57],"143":[2,57],"144":[2,57],"145":[2,57],"146":[2,57],"148":[2,57]},{"27":85,"49":[1,51]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"50":[1,92],"58":[2,193],"62":[2,193],"81":[2,193],"86":[2,193],"96":[2,193],"100":[2,193],"109":[2,193],"110":107,"111":[2,193],"112":[2,193],"113":[2,193],"116":108,"117":[2,193],"118":78,"123":[2,193],"124":[2,193],"125":[2,193],"134":[2,193],"135":[2,193],"136":[1,104],"137":[2,193],"138":[2,193],"139":[1,90],"140":[1,91],"141":[2,193],"142":[2,193],"143":[2,193],"144":[2,193],"145":[2,193],"146":[2,193],"148":[2,193]},{"110":111,"111":[1,74],"113":[1,75],"116":112,"117":[1,77],"118":78,"134":[1,109],"135":[1,110]},{"1":[2,194],"4":[2,194],"28":[2,194],"29":[2,194],"50":[1,92],"58":[2,194],"62":[2,194],"81":[2,194],"86":[2,194],"96":[2,194],"100":[2,194],"109":[2,194],"110":107,"111":[2,194],"112":[2,194],"113":[2,194],"116":108,"117":[2,194],"118":78,"123":[2,194],"124":[2,194],"125":[2,194],"134":[2,194],"135":[2,194],"136":[1,104],"137":[2,194],"138":[2,194],"139":[1,90],"140":[1,91],"141":[2,194],"142":[2,194],"143":[2,194],"144":[2,194],"145":[2,194],"146":[2,194],"148":[2,194]},{"1":[2,195],"4":[2,195],"28":[2,195],"29":[2,195],"50":[1,92],"58":[2,195],"62":[2,195],"81":[2,195],"86":[2,195],"96":[2,195],"100":[2,195],"109":[2,195],"110":107,"111":[2,195],"112":[2,195],"113":[2,195],"116":108,"117":[2,195],"118":78,"123":[2,195],"124":[2,195],"125":[2,195],"134":[2,195],"135":[2,195],"136":[1,104],"137":[2,195],"138":[2,195],"139":[1,90],"140":[1,91],"141":[2,195],"142":[2,195],"143":[2,195],"144":[2,195],"145":[2,195],"146":[2,195],"148":[2,195]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"50":[1,92],"58":[2,196],"62":[2,196],"81":[2,196],"86":[2,196],"96":[2,196],"100":[2,196],"109":[2,196],"110":107,"111":[2,196],"112":[2,196],"113":[2,196],"116":108,"117":[2,196],"118":78,"123":[2,196],"124":[2,196],"125":[2,196],"134":[2,196],"135":[2,196],"136":[2,196],"137":[2,196],"138":[2,196],"141":[2,196],"142":[2,196],"143":[2,196],"144":[2,196],"145":[2,196],"146":[2,196],"148":[2,196]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"50":[1,92],"58":[2,197],"62":[2,197],"81":[2,197],"86":[2,197],"96":[2,197],"100":[2,197],"109":[2,197],"110":107,"111":[2,197],"112":[2,197],"113":[2,197],"116":108,"117":[2,197],"118":78,"123":[2,197],"124":[2,197],"125":[2,197],"134":[2,197],"135":[2,197],"136":[2,197],"137":[2,197],"138":[2,197],"141":[2,197],"142":[2,197],"143":[2,197],"144":[2,197],"145":[2,197],"146":[2,197],"148":[2,197]},{"4":[1,138],"6":227,"28":[1,6],"132":[1,226]},{"104":228,"105":[1,229],"106":[1,230]},{"1":[2,151],"4":[2,151],"28":[2,151],"29":[2,151],"50":[2,151],"58":[2,151],"62":[2,151],"81":[2,151],"86":[2,151],"96":[2,151],"100":[2,151],"109":[2,151],"111":[2,151],"112":[2,151],"113":[2,151],"117":[2,151],"123":[2,151],"124":[2,151],"125":[2,151],"134":[2,151],"135":[2,151],"136":[2,151],"137":[2,151],"138":[2,151],"139":[2,151],"140":[2,151],"141":[2,151],"142":[2,151],"143":[2,151],"144":[2,151],"145":[2,151],"146":[2,151],"148":[2,151]},{"1":[2,159],"4":[2,159],"28":[2,159],"29":[2,159],"50":[2,159],"58":[2,159],"62":[2,159],"81":[2,159],"86":[2,159],"96":[2,159],"100":[2,159],"109":[2,159],"111":[2,159],"112":[2,159],"113":[2,159],"117":[2,159],"123":[2,159],"124":[2,159],"125":[2,159],"134":[2,159],"135":[2,159],"136":[2,159],"137":[2,159],"138":[2,159],"139":[2,159],"140":[2,159],"141":[2,159],"142":[2,159],"143":[2,159],"144":[2,159],"145":[2,159],"146":[2,159],"148":[2,159]},{"28":[1,231],"50":[1,92],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"127":232,"129":233,"130":[1,234]},{"14":235,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":131,"61":[1,68],"64":132,"66":155,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"98":[1,67],"99":[1,66],"108":[1,65]},{"1":[2,98],"4":[2,98],"28":[1,237],"29":[2,98],"50":[2,98],"58":[2,98],"62":[2,98],"74":[2,74],"75":[2,74],"76":[2,74],"77":[2,74],"80":[2,74],"81":[2,98],"82":[2,74],"83":[2,74],"86":[2,98],"88":[1,236],"94":[2,74],"96":[2,98],"100":[2,98],"109":[2,98],"111":[2,98],"112":[2,98],"113":[2,98],"117":[2,98],"123":[2,98],"124":[2,98],"125":[2,98],"134":[2,98],"135":[2,98],"136":[2,98],"137":[2,98],"138":[2,98],"139":[2,98],"140":[2,98],"141":[2,98],"142":[2,98],"143":[2,98],"144":[2,98],"145":[2,98],"146":[2,98],"148":[2,98]},{"4":[2,105],"27":186,"29":[2,105],"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":241,"49":[1,51],"61":[1,243],"67":242,"84":[1,240],"89":238,"90":239},{"65":115,"74":[1,117],"75":[1,118],"76":[1,119],"77":[1,120],"78":121,"79":122,"80":[1,123],"82":[1,124],"83":[1,125],"93":114,"94":[1,116]},{"65":128,"74":[1,117],"75":[1,118],"76":[1,119],"77":[1,120],"78":121,"79":122,"80":[1,123],"82":[1,124],"83":[1,125],"93":127,"94":[1,116]},{"1":[2,52],"4":[2,52],"29":[2,52],"50":[1,92],"109":[2,52],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[2,52],"135":[2,52],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,144],"4":[2,144],"29":[2,144],"50":[1,92],"109":[2,144],"110":107,"111":[2,144],"113":[2,144],"116":108,"117":[2,144],"118":78,"123":[1,101],"124":[1,102],"134":[2,144],"135":[2,144],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"109":[1,244]},{"1":[2,146],"4":[2,146],"28":[2,146],"29":[2,146],"50":[2,146],"58":[2,146],"62":[2,146],"74":[2,146],"75":[2,146],"76":[2,146],"77":[2,146],"80":[2,146],"81":[2,146],"82":[2,146],"83":[2,146],"86":[2,146],"94":[2,146],"96":[2,146],"100":[2,146],"109":[2,146],"111":[2,146],"112":[2,146],"113":[2,146],"117":[2,146],"123":[2,146],"124":[2,146],"125":[2,146],"134":[2,146],"135":[2,146],"136":[2,146],"137":[2,146],"138":[2,146],"139":[2,146],"140":[2,146],"141":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"146":[2,146],"147":[2,146],"148":[2,146]},{"4":[2,136],"28":[2,136],"50":[1,92],"58":[2,136],"62":[1,245],"100":[2,136],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"4":[2,60],"28":[2,60],"57":246,"58":[1,247],"100":[2,60]},{"4":[2,132],"28":[2,132],"29":[2,132],"58":[2,132],"96":[2,132],"100":[2,132]},{"4":[2,137],"28":[2,137],"29":[2,137],"58":[2,137],"96":[2,137],"100":[2,137]},{"1":[2,121],"4":[2,121],"28":[2,121],"29":[2,121],"45":[2,121],"47":[2,121],"50":[2,121],"58":[2,121],"62":[2,121],"74":[2,121],"75":[2,121],"76":[2,121],"77":[2,121],"80":[2,121],"81":[2,121],"82":[2,121],"83":[2,121],"86":[2,121],"88":[2,121],"94":[2,121],"96":[2,121],"100":[2,121],"109":[2,121],"111":[2,121],"112":[2,121],"113":[2,121],"117":[2,121],"123":[2,121],"124":[2,121],"125":[2,121],"134":[2,121],"135":[2,121],"136":[2,121],"137":[2,121],"138":[2,121],"139":[2,121],"140":[2,121],"141":[2,121],"142":[2,121],"143":[2,121],"144":[2,121],"145":[2,121],"146":[2,121],"147":[2,121],"148":[2,121]},{"1":[2,118],"4":[2,118],"28":[2,118],"29":[2,118],"50":[2,118],"58":[2,118],"62":[2,118],"81":[2,118],"86":[2,118],"96":[2,118],"100":[2,118],"109":[2,118],"111":[2,118],"112":[2,118],"113":[2,118],"117":[2,118],"123":[2,118],"124":[2,118],"125":[2,118],"134":[2,118],"135":[2,118],"136":[2,118],"137":[2,118],"138":[2,118],"139":[2,118],"140":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"146":[2,118],"148":[2,118]},{"4":[1,138],"6":248,"28":[1,6],"50":[1,92],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"4":[1,138],"6":249,"28":[1,6],"50":[1,92],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,147],"4":[2,147],"28":[2,147],"29":[2,147],"50":[1,92],"58":[2,147],"62":[2,147],"81":[2,147],"86":[2,147],"96":[2,147],"100":[2,147],"109":[2,147],"110":107,"111":[1,74],"112":[1,250],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"125":[2,147],"134":[2,147],"135":[2,147],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,149],"4":[2,149],"28":[2,149],"29":[2,149],"50":[1,92],"58":[2,149],"62":[2,149],"81":[2,149],"86":[2,149],"96":[2,149],"100":[2,149],"109":[2,149],"110":107,"111":[1,74],"112":[1,251],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"125":[2,149],"134":[2,149],"135":[2,149],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"50":[2,155],"58":[2,155],"62":[2,155],"81":[2,155],"86":[2,155],"96":[2,155],"100":[2,155],"109":[2,155],"111":[2,155],"112":[2,155],"113":[2,155],"117":[2,155],"123":[2,155],"124":[2,155],"125":[2,155],"134":[2,155],"135":[2,155],"136":[2,155],"137":[2,155],"138":[2,155],"139":[2,155],"140":[2,155],"141":[2,155],"142":[2,155],"143":[2,155],"144":[2,155],"145":[2,155],"146":[2,155],"148":[2,155]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"50":[1,92],"58":[2,156],"62":[2,156],"81":[2,156],"86":[2,156],"96":[2,156],"100":[2,156],"109":[2,156],"110":107,"111":[1,74],"112":[2,156],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"125":[2,156],"134":[2,156],"135":[2,156],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,160],"4":[2,160],"28":[2,160],"29":[2,160],"50":[2,160],"58":[2,160],"62":[2,160],"81":[2,160],"86":[2,160],"96":[2,160],"100":[2,160],"109":[2,160],"111":[2,160],"112":[2,160],"113":[2,160],"117":[2,160],"123":[2,160],"124":[2,160],"125":[2,160],"134":[2,160],"135":[2,160],"136":[2,160],"137":[2,160],"138":[2,160],"139":[2,160],"140":[2,160],"141":[2,160],"142":[2,160],"143":[2,160],"144":[2,160],"145":[2,160],"146":[2,160],"148":[2,160]},{"123":[2,162],"124":[2,162]},{"30":176,"31":[1,84],"68":177,"69":178,"84":[1,81],"99":[1,253],"120":252,"122":175},{"58":[1,254],"123":[2,167],"124":[2,167]},{"58":[2,164],"123":[2,164],"124":[2,164]},{"58":[2,165],"123":[2,165],"124":[2,165]},{"58":[2,166],"123":[2,166],"124":[2,166]},{"1":[2,161],"4":[2,161],"28":[2,161],"29":[2,161],"50":[2,161],"58":[2,161],"62":[2,161],"81":[2,161],"86":[2,161],"96":[2,161],"100":[2,161],"109":[2,161],"111":[2,161],"112":[2,161],"113":[2,161],"117":[2,161],"123":[2,161],"124":[2,161],"125":[2,161],"134":[2,161],"135":[2,161],"136":[2,161],"137":[2,161],"138":[2,161],"139":[2,161],"140":[2,161],"141":[2,161],"142":[2,161],"143":[2,161],"144":[2,161],"145":[2,161],"146":[2,161],"148":[2,161]},{"8":255,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":256,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[2,60],"28":[2,60],"57":257,"58":[1,258],"86":[2,60]},{"4":[2,94],"28":[2,94],"29":[2,94],"58":[2,94],"86":[2,94]},{"4":[2,45],"28":[2,45],"29":[2,45],"47":[1,259],"58":[2,45],"86":[2,45]},{"4":[2,46],"28":[2,46],"29":[2,46],"47":[1,260],"58":[2,46],"86":[2,46]},{"4":[2,51],"28":[2,51],"29":[2,51],"58":[2,51],"86":[2,51]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"50":[2,28],"58":[2,28],"62":[2,28],"81":[2,28],"86":[2,28],"96":[2,28],"100":[2,28],"105":[2,28],"106":[2,28],"109":[2,28],"111":[2,28],"112":[2,28],"113":[2,28],"117":[2,28],"123":[2,28],"124":[2,28],"125":[2,28],"128":[2,28],"130":[2,28],"134":[2,28],"135":[2,28],"136":[2,28],"137":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"148":[2,28]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"50":[1,92],"58":[2,200],"62":[2,200],"81":[2,200],"86":[2,200],"96":[2,200],"100":[2,200],"109":[2,200],"110":107,"111":[2,200],"112":[2,200],"113":[2,200],"116":108,"117":[2,200],"118":78,"123":[2,200],"124":[2,200],"125":[2,200],"134":[2,200],"135":[2,200],"136":[2,200],"137":[2,200],"138":[2,200],"139":[2,200],"140":[2,200],"141":[2,200],"142":[2,200],"143":[2,200],"144":[2,200],"145":[2,200],"146":[2,200],"148":[2,200]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"50":[1,92],"58":[2,201],"62":[2,201],"81":[2,201],"86":[2,201],"96":[2,201],"100":[2,201],"109":[2,201],"110":107,"111":[2,201],"112":[2,201],"113":[2,201],"116":108,"117":[2,201],"118":78,"123":[2,201],"124":[2,201],"125":[2,201],"134":[2,201],"135":[2,201],"136":[1,104],"137":[2,201],"138":[2,201],"139":[1,90],"140":[1,91],"141":[2,201],"142":[2,201],"143":[1,97],"144":[2,201],"145":[2,201],"146":[2,201],"148":[2,201]},{"1":[2,202],"4":[2,202],"28":[2,202],"29":[2,202],"50":[1,92],"58":[2,202],"62":[2,202],"81":[2,202],"86":[2,202],"96":[2,202],"100":[2,202],"109":[2,202],"110":107,"111":[2,202],"112":[2,202],"113":[2,202],"116":108,"117":[2,202],"118":78,"123":[2,202],"124":[2,202],"125":[2,202],"134":[2,202],"135":[2,202],"136":[1,104],"137":[2,202],"138":[2,202],"139":[1,90],"140":[1,91],"141":[2,202],"142":[2,202],"143":[1,97],"144":[2,202],"145":[2,202],"146":[2,202],"148":[2,202]},{"1":[2,203],"4":[2,203],"28":[2,203],"29":[2,203],"50":[1,92],"58":[2,203],"62":[2,203],"81":[2,203],"86":[2,203],"96":[2,203],"100":[2,203],"109":[2,203],"110":107,"111":[2,203],"112":[2,203],"113":[2,203],"116":108,"117":[2,203],"118":78,"123":[2,203],"124":[2,203],"125":[2,203],"134":[2,203],"135":[2,203],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[2,203],"142":[2,203],"143":[1,97],"144":[1,98],"145":[1,99],"146":[2,203],"148":[1,103]},{"1":[2,204],"4":[2,204],"28":[2,204],"29":[2,204],"50":[1,92],"58":[2,204],"62":[2,204],"81":[2,204],"86":[2,204],"96":[2,204],"100":[2,204],"109":[2,204],"110":107,"111":[2,204],"112":[2,204],"113":[2,204],"116":108,"117":[2,204],"118":78,"123":[2,204],"124":[2,204],"125":[2,204],"134":[2,204],"135":[2,204],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[2,204],"142":[2,204],"143":[1,97],"144":[1,98],"145":[1,99],"146":[2,204],"148":[1,103]},{"1":[2,205],"4":[2,205],"28":[2,205],"29":[2,205],"50":[1,92],"58":[2,205],"62":[2,205],"81":[2,205],"86":[2,205],"96":[2,205],"100":[2,205],"109":[2,205],"110":107,"111":[2,205],"112":[2,205],"113":[2,205],"116":108,"117":[2,205],"118":78,"123":[2,205],"124":[2,205],"125":[2,205],"134":[2,205],"135":[2,205],"136":[1,104],"137":[2,205],"138":[2,205],"139":[1,90],"140":[1,91],"141":[2,205],"142":[2,205],"143":[2,205],"144":[2,205],"145":[2,205],"146":[2,205],"148":[2,205]},{"1":[2,206],"4":[2,206],"28":[2,206],"29":[2,206],"50":[1,92],"58":[2,206],"62":[2,206],"81":[2,206],"86":[2,206],"96":[2,206],"100":[2,206],"109":[2,206],"110":107,"111":[2,206],"112":[2,206],"113":[2,206],"116":108,"117":[2,206],"118":78,"123":[2,206],"124":[2,206],"125":[2,206],"134":[2,206],"135":[2,206],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[2,206],"142":[2,206],"143":[1,97],"144":[2,206],"145":[2,206],"146":[2,206],"148":[2,206]},{"1":[2,207],"4":[2,207],"28":[2,207],"29":[2,207],"50":[1,92],"58":[2,207],"62":[2,207],"81":[2,207],"86":[2,207],"96":[2,207],"100":[2,207],"109":[2,207],"110":107,"111":[2,207],"112":[2,207],"113":[2,207],"116":108,"117":[2,207],"118":78,"123":[2,207],"124":[2,207],"125":[2,207],"134":[2,207],"135":[2,207],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[2,207],"142":[2,207],"143":[1,97],"144":[1,98],"145":[2,207],"146":[2,207],"148":[2,207]},{"1":[2,208],"4":[2,208],"28":[2,208],"29":[2,208],"50":[1,92],"58":[2,208],"62":[2,208],"81":[2,208],"86":[2,208],"96":[2,208],"100":[2,208],"109":[2,208],"110":107,"111":[2,208],"112":[2,208],"113":[2,208],"116":108,"117":[2,208],"118":78,"123":[2,208],"124":[2,208],"125":[2,208],"134":[2,208],"135":[2,208],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[2,208],"148":[1,103]},{"1":[2,211],"4":[2,211],"28":[2,211],"29":[2,211],"50":[1,92],"58":[2,211],"62":[2,211],"81":[2,211],"86":[2,211],"96":[2,211],"100":[2,211],"109":[2,211],"110":107,"111":[2,211],"112":[2,211],"113":[2,211],"116":108,"117":[2,211],"118":78,"123":[1,101],"124":[1,102],"125":[2,211],"134":[2,211],"135":[2,211],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,212],"4":[2,212],"28":[2,212],"29":[2,212],"50":[1,92],"58":[2,212],"62":[2,212],"81":[2,212],"86":[2,212],"96":[2,212],"100":[2,212],"109":[2,212],"110":107,"111":[2,212],"112":[2,212],"113":[2,212],"116":108,"117":[2,212],"118":78,"123":[1,101],"124":[1,102],"125":[2,212],"134":[2,212],"135":[2,212],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,213],"4":[2,213],"28":[2,213],"29":[2,213],"50":[1,92],"58":[2,213],"62":[2,213],"81":[2,213],"86":[2,213],"96":[2,213],"100":[2,213],"109":[2,213],"110":107,"111":[2,213],"112":[2,213],"113":[2,213],"116":108,"117":[2,213],"118":78,"123":[2,213],"124":[2,213],"125":[2,213],"134":[2,213],"135":[2,213],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[2,213],"142":[2,213],"143":[1,97],"144":[1,98],"145":[1,99],"146":[2,213],"148":[2,213]},{"8":261,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":262,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":263,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"50":[1,92],"58":[2,190],"62":[2,190],"81":[2,190],"86":[2,190],"96":[2,190],"100":[2,190],"109":[2,190],"110":107,"111":[1,74],"112":[2,190],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"125":[2,190],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,192],"4":[2,192],"28":[2,192],"29":[2,192],"50":[1,92],"58":[2,192],"62":[2,192],"81":[2,192],"86":[2,192],"96":[2,192],"100":[2,192],"109":[2,192],"110":107,"111":[1,74],"112":[2,192],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"125":[2,192],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"50":[1,92],"58":[2,189],"62":[2,189],"81":[2,189],"86":[2,189],"96":[2,189],"100":[2,189],"109":[2,189],"110":107,"111":[1,74],"112":[2,189],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"125":[2,189],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,191],"4":[2,191],"28":[2,191],"29":[2,191],"50":[1,92],"58":[2,191],"62":[2,191],"81":[2,191],"86":[2,191],"96":[2,191],"100":[2,191],"109":[2,191],"110":107,"111":[1,74],"112":[2,191],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"125":[2,191],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,209],"4":[2,209],"28":[2,209],"29":[2,209],"50":[1,92],"58":[2,209],"62":[2,209],"81":[2,209],"86":[2,209],"96":[2,209],"100":[2,209],"109":[2,209],"110":107,"111":[2,209],"112":[2,209],"113":[2,209],"116":108,"117":[2,209],"118":78,"123":[2,209],"124":[2,209],"125":[2,209],"134":[2,209],"135":[2,209],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"8":264,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[2,60],"28":[2,60],"57":265,"58":[1,247],"96":[2,60]},{"4":[2,136],"28":[2,136],"29":[2,136],"50":[1,92],"58":[2,136],"62":[1,266],"96":[2,136],"100":[2,136],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"45":[2,83],"50":[2,83],"58":[2,83],"62":[2,83],"74":[2,83],"75":[2,83],"76":[2,83],"77":[2,83],"80":[2,83],"81":[2,83],"82":[2,83],"83":[2,83],"86":[2,83],"88":[2,83],"94":[2,83],"96":[2,83],"100":[2,83],"109":[2,83],"111":[2,83],"112":[2,83],"113":[2,83],"117":[2,83],"123":[2,83],"124":[2,83],"125":[2,83],"134":[2,83],"135":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"45":[2,84],"50":[2,84],"58":[2,84],"62":[2,84],"74":[2,84],"75":[2,84],"76":[2,84],"77":[2,84],"80":[2,84],"81":[2,84],"82":[2,84],"83":[2,84],"86":[2,84],"88":[2,84],"94":[2,84],"96":[2,84],"100":[2,84],"109":[2,84],"111":[2,84],"112":[2,84],"113":[2,84],"117":[2,84],"123":[2,84],"124":[2,84],"125":[2,84],"134":[2,84],"135":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84]},{"1":[2,86],"4":[2,86],"28":[2,86],"29":[2,86],"45":[2,86],"50":[2,86],"58":[2,86],"62":[2,86],"74":[2,86],"75":[2,86],"76":[2,86],"77":[2,86],"80":[2,86],"81":[2,86],"82":[2,86],"83":[2,86],"86":[2,86],"88":[2,86],"94":[2,86],"96":[2,86],"100":[2,86],"109":[2,86],"111":[2,86],"112":[2,86],"113":[2,86],"117":[2,86],"123":[2,86],"124":[2,86],"125":[2,86],"134":[2,86],"135":[2,86],"136":[2,86],"137":[2,86],"138":[2,86],"139":[2,86],"140":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"148":[2,86]},{"50":[1,92],"62":[1,268],"81":[1,267],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"62":[1,269]},{"1":[2,90],"4":[2,90],"28":[2,90],"29":[2,90],"45":[2,90],"50":[2,90],"58":[2,90],"62":[2,90],"74":[2,90],"75":[2,90],"76":[2,90],"77":[2,90],"80":[2,90],"81":[2,90],"82":[2,90],"83":[2,90],"86":[2,90],"88":[2,90],"94":[2,90],"96":[2,90],"100":[2,90],"109":[2,90],"111":[2,90],"112":[2,90],"113":[2,90],"117":[2,90],"123":[2,90],"124":[2,90],"125":[2,90],"134":[2,90],"135":[2,90],"136":[2,90],"137":[2,90],"138":[2,90],"139":[2,90],"140":[2,90],"141":[2,90],"142":[2,90],"143":[2,90],"144":[2,90],"145":[2,90],"146":[2,90],"147":[2,90],"148":[2,90]},{"8":270,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,91],"4":[2,91],"28":[2,91],"29":[2,91],"45":[2,91],"50":[2,91],"58":[2,91],"62":[2,91],"74":[2,91],"75":[2,91],"76":[2,91],"77":[2,91],"80":[2,91],"81":[2,91],"82":[2,91],"83":[2,91],"86":[2,91],"88":[2,91],"94":[2,91],"96":[2,91],"100":[2,91],"109":[2,91],"111":[2,91],"112":[2,91],"113":[2,91],"117":[2,91],"123":[2,91],"124":[2,91],"125":[2,91],"134":[2,91],"135":[2,91],"136":[2,91],"137":[2,91],"138":[2,91],"139":[2,91],"140":[2,91],"141":[2,91],"142":[2,91],"143":[2,91],"144":[2,91],"145":[2,91],"146":[2,91],"147":[2,91],"148":[2,91]},{"1":[2,43],"4":[2,43],"28":[2,43],"29":[2,43],"50":[1,92],"58":[2,43],"62":[2,43],"81":[2,43],"86":[2,43],"96":[2,43],"100":[2,43],"109":[2,43],"110":107,"111":[1,74],"112":[2,43],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"125":[2,43],"134":[2,43],"135":[2,43],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"8":271,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"54":272,"55":[1,70],"56":[1,71]},{"59":273,"60":[1,135],"61":[1,136]},{"62":[1,274]},{"53":[2,66],"58":[2,66],"62":[1,275]},{"8":276,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"50":[2,187],"58":[2,187],"62":[2,187],"81":[2,187],"86":[2,187],"96":[2,187],"100":[2,187],"109":[2,187],"111":[2,187],"112":[2,187],"113":[2,187],"117":[2,187],"123":[2,187],"124":[2,187],"125":[2,187],"128":[2,187],"134":[2,187],"135":[2,187],"136":[2,187],"137":[2,187],"138":[2,187],"139":[2,187],"140":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"148":[2,187]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"50":[2,140],"58":[2,140],"62":[2,140],"81":[2,140],"86":[2,140],"96":[2,140],"100":[2,140],"105":[1,277],"109":[2,140],"111":[2,140],"112":[2,140],"113":[2,140],"117":[2,140],"123":[2,140],"124":[2,140],"125":[2,140],"134":[2,140],"135":[2,140],"136":[2,140],"137":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"148":[2,140]},{"4":[1,138],"6":278,"28":[1,6]},{"30":279,"31":[1,84]},{"127":280,"129":233,"130":[1,234]},{"29":[1,281],"128":[1,282],"129":283,"130":[1,234]},{"29":[2,180],"128":[2,180],"130":[2,180]},{"8":285,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"102":284,"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,113],"4":[2,113],"28":[2,113],"29":[2,113],"50":[2,113],"58":[2,113],"62":[2,113],"65":115,"74":[1,117],"75":[1,118],"76":[1,119],"77":[1,120],"78":121,"79":122,"80":[1,123],"81":[2,113],"82":[1,124],"83":[1,125],"86":[2,113],"93":114,"94":[1,116],"96":[2,113],"100":[2,113],"109":[2,113],"111":[2,113],"112":[2,113],"113":[2,113],"117":[2,113],"123":[2,113],"124":[2,113],"125":[2,113],"134":[2,113],"135":[2,113],"136":[2,113],"137":[2,113],"138":[2,113],"139":[2,113],"140":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"148":[2,113]},{"14":286,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":131,"61":[1,68],"64":132,"66":155,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"98":[1,67],"99":[1,66],"108":[1,65]},{"4":[2,105],"27":186,"29":[2,105],"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":241,"49":[1,51],"61":[1,243],"67":242,"84":[1,240],"89":287,"90":239},{"4":[1,289],"29":[1,288]},{"4":[2,106],"29":[2,106],"86":[2,106]},{"4":[2,105],"27":186,"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":241,"49":[1,51],"61":[1,243],"67":242,"84":[1,240],"86":[2,105],"89":290,"90":239},{"4":[2,103],"29":[2,103],"86":[2,103]},{"47":[1,291]},{"30":164,"31":[1,84]},{"1":[2,145],"4":[2,145],"28":[2,145],"29":[2,145],"50":[2,145],"58":[2,145],"62":[2,145],"74":[2,145],"75":[2,145],"76":[2,145],"77":[2,145],"80":[2,145],"81":[2,145],"82":[2,145],"83":[2,145],"86":[2,145],"94":[2,145],"96":[2,145],"100":[2,145],"109":[2,145],"111":[2,145],"112":[2,145],"113":[2,145],"117":[2,145],"123":[2,145],"124":[2,145],"125":[2,145],"134":[2,145],"135":[2,145],"136":[2,145],"137":[2,145],"138":[2,145],"139":[2,145],"140":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"146":[2,145],"147":[2,145],"148":[2,145]},{"62":[1,292]},{"4":[1,294],"28":[1,295],"100":[1,293]},{"4":[2,61],"8":211,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,61],"29":[2,61],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"63":163,"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"96":[2,61],"97":[1,69],"98":[1,67],"99":[1,66],"100":[2,61],"101":296,"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"50":[2,184],"58":[2,184],"62":[2,184],"81":[2,184],"86":[2,184],"96":[2,184],"100":[2,184],"109":[2,184],"111":[2,184],"112":[2,184],"113":[2,184],"117":[2,184],"123":[2,184],"124":[2,184],"125":[2,184],"128":[2,184],"134":[2,184],"135":[2,184],"136":[2,184],"137":[2,184],"138":[2,184],"139":[2,184],"140":[2,184],"141":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"148":[2,184]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"50":[2,185],"58":[2,185],"62":[2,185],"81":[2,185],"86":[2,185],"96":[2,185],"100":[2,185],"109":[2,185],"111":[2,185],"112":[2,185],"113":[2,185],"117":[2,185],"123":[2,185],"124":[2,185],"125":[2,185],"128":[2,185],"134":[2,185],"135":[2,185],"136":[2,185],"137":[2,185],"138":[2,185],"139":[2,185],"140":[2,185],"141":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"148":[2,185]},{"8":297,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":298,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"123":[2,163],"124":[2,163]},{"4":[2,131],"8":211,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,131],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"58":[2,131],"61":[1,68],"63":163,"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"95":161,"97":[1,69],"98":[1,67],"99":[1,66],"100":[2,131],"101":162,"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"30":176,"31":[1,84],"68":177,"69":178,"84":[1,81],"99":[1,253],"122":299},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"50":[1,92],"58":[2,169],"62":[2,169],"81":[2,169],"86":[2,169],"96":[2,169],"100":[2,169],"109":[2,169],"110":107,"111":[2,169],"112":[1,300],"113":[2,169],"116":108,"117":[2,169],"118":78,"123":[1,101],"124":[1,102],"125":[1,301],"134":[2,169],"135":[2,169],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"50":[1,92],"58":[2,170],"62":[2,170],"81":[2,170],"86":[2,170],"96":[2,170],"100":[2,170],"109":[2,170],"110":107,"111":[2,170],"112":[1,302],"113":[2,170],"116":108,"117":[2,170],"118":78,"123":[1,101],"124":[1,102],"125":[2,170],"134":[2,170],"135":[2,170],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"4":[1,304],"28":[1,305],"86":[1,303]},{"4":[2,61],"27":186,"28":[2,61],"29":[2,61],"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":306,"49":[1,51],"86":[2,61]},{"8":307,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,308],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":309,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,310],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,214],"4":[2,214],"28":[2,214],"29":[2,214],"50":[1,92],"58":[2,214],"62":[2,214],"81":[2,214],"86":[2,214],"96":[2,214],"100":[2,214],"109":[2,214],"110":107,"111":[2,214],"112":[2,214],"113":[2,214],"116":108,"117":[2,214],"118":78,"123":[2,214],"124":[2,214],"125":[2,214],"134":[2,214],"135":[2,214],"136":[1,104],"137":[2,214],"138":[2,214],"139":[1,90],"140":[1,91],"141":[2,214],"142":[2,214],"143":[2,214],"144":[2,214],"145":[2,214],"146":[2,214],"148":[2,214]},{"1":[2,215],"4":[2,215],"28":[2,215],"29":[2,215],"50":[1,92],"58":[2,215],"62":[2,215],"81":[2,215],"86":[2,215],"96":[2,215],"100":[2,215],"109":[2,215],"110":107,"111":[2,215],"112":[2,215],"113":[2,215],"116":108,"117":[2,215],"118":78,"123":[2,215],"124":[2,215],"125":[2,215],"134":[2,215],"135":[2,215],"136":[1,104],"137":[2,215],"138":[2,215],"139":[1,90],"140":[1,91],"141":[2,215],"142":[2,215],"143":[2,215],"144":[2,215],"145":[2,215],"146":[2,215],"148":[2,215]},{"1":[2,216],"4":[2,216],"28":[2,216],"29":[2,216],"50":[1,92],"58":[2,216],"62":[2,216],"81":[2,216],"86":[2,216],"96":[2,216],"100":[2,216],"109":[2,216],"110":107,"111":[2,216],"112":[2,216],"113":[2,216],"116":108,"117":[2,216],"118":78,"123":[2,216],"124":[2,216],"125":[2,216],"134":[2,216],"135":[2,216],"136":[1,104],"137":[2,216],"138":[2,216],"139":[1,90],"140":[1,91],"141":[2,216],"142":[2,216],"143":[2,216],"144":[2,216],"145":[2,216],"146":[2,216],"148":[2,216]},{"29":[1,311],"50":[1,92],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"4":[1,294],"28":[1,295],"96":[1,312]},{"62":[1,313]},{"1":[2,89],"4":[2,89],"28":[2,89],"29":[2,89],"45":[2,89],"50":[2,89],"58":[2,89],"62":[2,89],"74":[2,89],"75":[2,89],"76":[2,89],"77":[2,89],"80":[2,89],"81":[2,89],"82":[2,89],"83":[2,89],"86":[2,89],"88":[2,89],"94":[2,89],"96":[2,89],"100":[2,89],"109":[2,89],"111":[2,89],"112":[2,89],"113":[2,89],"117":[2,89],"123":[2,89],"124":[2,89],"125":[2,89],"134":[2,89],"135":[2,89],"136":[2,89],"137":[2,89],"138":[2,89],"139":[2,89],"140":[2,89],"141":[2,89],"142":[2,89],"143":[2,89],"144":[2,89],"145":[2,89],"146":[2,89],"147":[2,89],"148":[2,89]},{"62":[1,314]},{"8":315,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"62":[1,316],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"50":[1,92],"81":[1,267],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"29":[1,317],"50":[1,92],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"4":[1,138],"6":318,"28":[1,6]},{"53":[2,64],"58":[2,64]},{"62":[1,319]},{"62":[1,320]},{"4":[1,138],"6":321,"28":[1,6],"50":[1,92],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"4":[1,138],"6":322,"28":[1,6]},{"1":[2,141],"4":[2,141],"28":[2,141],"29":[2,141],"50":[2,141],"58":[2,141],"62":[2,141],"81":[2,141],"86":[2,141],"96":[2,141],"100":[2,141],"109":[2,141],"111":[2,141],"112":[2,141],"113":[2,141],"117":[2,141],"123":[2,141],"124":[2,141],"125":[2,141],"134":[2,141],"135":[2,141],"136":[2,141],"137":[2,141],"138":[2,141],"139":[2,141],"140":[2,141],"141":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"148":[2,141]},{"4":[1,138],"6":323,"28":[1,6]},{"29":[1,324],"128":[1,325],"129":283,"130":[1,234]},{"1":[2,178],"4":[2,178],"28":[2,178],"29":[2,178],"50":[2,178],"58":[2,178],"62":[2,178],"81":[2,178],"86":[2,178],"96":[2,178],"100":[2,178],"109":[2,178],"111":[2,178],"112":[2,178],"113":[2,178],"117":[2,178],"123":[2,178],"124":[2,178],"125":[2,178],"134":[2,178],"135":[2,178],"136":[2,178],"137":[2,178],"138":[2,178],"139":[2,178],"140":[2,178],"141":[2,178],"142":[2,178],"143":[2,178],"144":[2,178],"145":[2,178],"146":[2,178],"148":[2,178]},{"4":[1,138],"6":326,"28":[1,6]},{"29":[2,181],"128":[2,181],"130":[2,181]},{"4":[1,138],"6":327,"28":[1,6],"58":[1,328]},{"4":[2,138],"28":[2,138],"50":[1,92],"58":[2,138],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,99],"4":[2,99],"28":[1,329],"29":[2,99],"50":[2,99],"58":[2,99],"62":[2,99],"65":115,"74":[1,117],"75":[1,118],"76":[1,119],"77":[1,120],"78":121,"79":122,"80":[1,123],"81":[2,99],"82":[1,124],"83":[1,125],"86":[2,99],"93":114,"94":[1,116],"96":[2,99],"100":[2,99],"109":[2,99],"111":[2,99],"112":[2,99],"113":[2,99],"117":[2,99],"123":[2,99],"124":[2,99],"125":[2,99],"134":[2,99],"135":[2,99],"136":[2,99],"137":[2,99],"138":[2,99],"139":[2,99],"140":[2,99],"141":[2,99],"142":[2,99],"143":[2,99],"144":[2,99],"145":[2,99],"146":[2,99],"148":[2,99]},{"4":[1,289],"29":[1,330]},{"1":[2,102],"4":[2,102],"28":[2,102],"29":[2,102],"50":[2,102],"58":[2,102],"62":[2,102],"81":[2,102],"86":[2,102],"96":[2,102],"100":[2,102],"109":[2,102],"111":[2,102],"112":[2,102],"113":[2,102],"117":[2,102],"123":[2,102],"124":[2,102],"125":[2,102],"134":[2,102],"135":[2,102],"136":[2,102],"137":[2,102],"138":[2,102],"139":[2,102],"140":[2,102],"141":[2,102],"142":[2,102],"143":[2,102],"144":[2,102],"145":[2,102],"146":[2,102],"148":[2,102]},{"27":186,"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":241,"49":[1,51],"61":[1,243],"67":242,"90":331},{"4":[1,289],"86":[1,332]},{"8":333,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":334,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"62":[1,335],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,130],"4":[2,130],"28":[2,130],"29":[2,130],"45":[2,130],"50":[2,130],"58":[2,130],"62":[2,130],"74":[2,130],"75":[2,130],"76":[2,130],"77":[2,130],"80":[2,130],"81":[2,130],"82":[2,130],"83":[2,130],"86":[2,130],"94":[2,130],"96":[2,130],"100":[2,130],"109":[2,130],"111":[2,130],"112":[2,130],"113":[2,130],"117":[2,130],"123":[2,130],"124":[2,130],"125":[2,130],"134":[2,130],"135":[2,130],"136":[2,130],"137":[2,130],"138":[2,130],"139":[2,130],"140":[2,130],"141":[2,130],"142":[2,130],"143":[2,130],"144":[2,130],"145":[2,130],"146":[2,130],"147":[2,130],"148":[2,130]},{"8":211,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"63":163,"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"101":336,"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[2,131],"8":211,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,131],"29":[2,131],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"58":[2,131],"61":[1,68],"63":163,"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"95":337,"97":[1,69],"98":[1,67],"99":[1,66],"101":162,"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[2,133],"28":[2,133],"29":[2,133],"58":[2,133],"96":[2,133],"100":[2,133]},{"1":[2,148],"4":[2,148],"28":[2,148],"29":[2,148],"50":[1,92],"58":[2,148],"62":[2,148],"81":[2,148],"86":[2,148],"96":[2,148],"100":[2,148],"109":[2,148],"110":107,"111":[1,74],"112":[2,148],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"125":[2,148],"134":[2,148],"135":[2,148],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,150],"4":[2,150],"28":[2,150],"29":[2,150],"50":[1,92],"58":[2,150],"62":[2,150],"81":[2,150],"86":[2,150],"96":[2,150],"100":[2,150],"109":[2,150],"110":107,"111":[1,74],"112":[2,150],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"125":[2,150],"134":[2,150],"135":[2,150],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"123":[2,168],"124":[2,168]},{"8":338,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":339,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":340,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,92],"4":[2,92],"28":[2,92],"29":[2,92],"45":[2,92],"50":[2,92],"58":[2,92],"62":[2,92],"74":[2,92],"75":[2,92],"76":[2,92],"77":[2,92],"80":[2,92],"81":[2,92],"82":[2,92],"83":[2,92],"86":[2,92],"94":[2,92],"96":[2,92],"100":[2,92],"109":[2,92],"111":[2,92],"112":[2,92],"113":[2,92],"117":[2,92],"123":[2,92],"124":[2,92],"125":[2,92],"134":[2,92],"135":[2,92],"136":[2,92],"137":[2,92],"138":[2,92],"139":[2,92],"140":[2,92],"141":[2,92],"142":[2,92],"143":[2,92],"144":[2,92],"145":[2,92],"146":[2,92],"147":[2,92],"148":[2,92]},{"27":186,"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":341,"49":[1,51]},{"4":[2,93],"27":186,"28":[2,93],"29":[2,93],"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":183,"49":[1,51],"58":[2,93],"85":342},{"4":[2,95],"28":[2,95],"29":[2,95],"58":[2,95],"86":[2,95]},{"4":[2,47],"28":[2,47],"29":[2,47],"50":[1,92],"58":[2,47],"86":[2,47],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"8":343,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[2,48],"28":[2,48],"29":[2,48],"50":[1,92],"58":[2,48],"86":[2,48],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"8":344,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,210],"4":[2,210],"28":[2,210],"29":[2,210],"50":[2,210],"58":[2,210],"62":[2,210],"81":[2,210],"86":[2,210],"96":[2,210],"100":[2,210],"109":[2,210],"111":[2,210],"112":[2,210],"113":[2,210],"117":[2,210],"123":[2,210],"124":[2,210],"125":[2,210],"134":[2,210],"135":[2,210],"136":[2,210],"137":[2,210],"138":[2,210],"139":[2,210],"140":[2,210],"141":[2,210],"142":[2,210],"143":[2,210],"144":[2,210],"145":[2,210],"146":[2,210],"148":[2,210]},{"1":[2,116],"4":[2,116],"28":[2,116],"29":[2,116],"50":[2,116],"58":[2,116],"62":[2,116],"74":[2,116],"75":[2,116],"76":[2,116],"77":[2,116],"80":[2,116],"81":[2,116],"82":[2,116],"83":[2,116],"86":[2,116],"94":[2,116],"96":[2,116],"100":[2,116],"109":[2,116],"111":[2,116],"112":[2,116],"113":[2,116],"117":[2,116],"123":[2,116],"124":[2,116],"125":[2,116],"134":[2,116],"135":[2,116],"136":[2,116],"137":[2,116],"138":[2,116],"139":[2,116],"140":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"146":[2,116],"148":[2,116]},{"62":[1,345]},{"8":346,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"62":[1,347],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"81":[1,348],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"50":[1,92],"81":[1,349],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"8":350,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,44],"4":[2,44],"28":[2,44],"29":[2,44],"50":[2,44],"58":[2,44],"62":[2,44],"81":[2,44],"86":[2,44],"96":[2,44],"100":[2,44],"109":[2,44],"111":[2,44],"112":[2,44],"113":[2,44],"117":[2,44],"123":[2,44],"124":[2,44],"125":[2,44],"134":[2,44],"135":[2,44],"136":[2,44],"137":[2,44],"138":[2,44],"139":[2,44],"140":[2,44],"141":[2,44],"142":[2,44],"143":[2,44],"144":[2,44],"145":[2,44],"146":[2,44],"148":[2,44]},{"1":[2,56],"4":[2,56],"28":[2,56],"29":[2,56],"50":[2,56],"58":[2,56],"62":[2,56],"81":[2,56],"86":[2,56],"96":[2,56],"100":[2,56],"109":[2,56],"111":[2,56],"112":[2,56],"113":[2,56],"117":[2,56],"123":[2,56],"124":[2,56],"125":[2,56],"134":[2,56],"135":[2,56],"136":[2,56],"137":[2,56],"138":[2,56],"139":[2,56],"140":[2,56],"141":[2,56],"142":[2,56],"143":[2,56],"144":[2,56],"145":[2,56],"146":[2,56],"148":[2,56]},{"53":[2,67],"58":[2,67]},{"62":[1,351]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"50":[2,186],"58":[2,186],"62":[2,186],"81":[2,186],"86":[2,186],"96":[2,186],"100":[2,186],"109":[2,186],"111":[2,186],"112":[2,186],"113":[2,186],"117":[2,186],"123":[2,186],"124":[2,186],"125":[2,186],"128":[2,186],"134":[2,186],"135":[2,186],"136":[2,186],"137":[2,186],"138":[2,186],"139":[2,186],"140":[2,186],"141":[2,186],"142":[2,186],"143":[2,186],"144":[2,186],"145":[2,186],"146":[2,186],"148":[2,186]},{"1":[2,142],"4":[2,142],"28":[2,142],"29":[2,142],"50":[2,142],"58":[2,142],"62":[2,142],"81":[2,142],"86":[2,142],"96":[2,142],"100":[2,142],"109":[2,142],"111":[2,142],"112":[2,142],"113":[2,142],"117":[2,142],"123":[2,142],"124":[2,142],"125":[2,142],"134":[2,142],"135":[2,142],"136":[2,142],"137":[2,142],"138":[2,142],"139":[2,142],"140":[2,142],"141":[2,142],"142":[2,142],"143":[2,142],"144":[2,142],"145":[2,142],"146":[2,142],"148":[2,142]},{"1":[2,143],"4":[2,143],"28":[2,143],"29":[2,143],"50":[2,143],"58":[2,143],"62":[2,143],"81":[2,143],"86":[2,143],"96":[2,143],"100":[2,143],"105":[2,143],"109":[2,143],"111":[2,143],"112":[2,143],"113":[2,143],"117":[2,143],"123":[2,143],"124":[2,143],"125":[2,143],"134":[2,143],"135":[2,143],"136":[2,143],"137":[2,143],"138":[2,143],"139":[2,143],"140":[2,143],"141":[2,143],"142":[2,143],"143":[2,143],"144":[2,143],"145":[2,143],"146":[2,143],"148":[2,143]},{"1":[2,176],"4":[2,176],"28":[2,176],"29":[2,176],"50":[2,176],"58":[2,176],"62":[2,176],"81":[2,176],"86":[2,176],"96":[2,176],"100":[2,176],"109":[2,176],"111":[2,176],"112":[2,176],"113":[2,176],"117":[2,176],"123":[2,176],"124":[2,176],"125":[2,176],"134":[2,176],"135":[2,176],"136":[2,176],"137":[2,176],"138":[2,176],"139":[2,176],"140":[2,176],"141":[2,176],"142":[2,176],"143":[2,176],"144":[2,176],"145":[2,176],"146":[2,176],"148":[2,176]},{"4":[1,138],"6":352,"28":[1,6]},{"29":[1,353]},{"4":[1,354],"29":[2,182],"128":[2,182],"130":[2,182]},{"8":355,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[2,105],"27":186,"29":[2,105],"30":184,"31":[1,84],"32":185,"33":[1,82],"34":[1,83],"46":241,"49":[1,51],"61":[1,243],"67":242,"84":[1,240],"89":356,"90":239},{"1":[2,100],"4":[2,100],"28":[2,100],"29":[2,100],"50":[2,100],"58":[2,100],"62":[2,100],"81":[2,100],"86":[2,100],"96":[2,100],"100":[2,100],"109":[2,100],"111":[2,100],"112":[2,100],"113":[2,100],"117":[2,100],"123":[2,100],"124":[2,100],"125":[2,100],"134":[2,100],"135":[2,100],"136":[2,100],"137":[2,100],"138":[2,100],"139":[2,100],"140":[2,100],"141":[2,100],"142":[2,100],"143":[2,100],"144":[2,100],"145":[2,100],"146":[2,100],"148":[2,100]},{"4":[2,107],"29":[2,107],"86":[2,107]},{"4":[2,108],"29":[2,108],"86":[2,108]},{"4":[2,104],"29":[2,104],"50":[1,92],"86":[2,104],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"50":[1,92],"100":[1,357],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"4":[2,69],"8":358,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,69],"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"58":[2,69],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"100":[2,69],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[2,134],"28":[2,134],"29":[2,134],"58":[2,134],"96":[2,134],"100":[2,134]},{"4":[2,60],"28":[2,60],"29":[2,60],"57":359,"58":[1,247]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"50":[1,92],"58":[2,171],"62":[2,171],"81":[2,171],"86":[2,171],"96":[2,171],"100":[2,171],"109":[2,171],"110":107,"111":[2,171],"112":[2,171],"113":[2,171],"116":108,"117":[2,171],"118":78,"123":[1,101],"124":[1,102],"125":[1,360],"134":[2,171],"135":[2,171],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,173],"4":[2,173],"28":[2,173],"29":[2,173],"50":[1,92],"58":[2,173],"62":[2,173],"81":[2,173],"86":[2,173],"96":[2,173],"100":[2,173],"109":[2,173],"110":107,"111":[2,173],"112":[1,361],"113":[2,173],"116":108,"117":[2,173],"118":78,"123":[1,101],"124":[1,102],"125":[2,173],"134":[2,173],"135":[2,173],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,172],"4":[2,172],"28":[2,172],"29":[2,172],"50":[1,92],"58":[2,172],"62":[2,172],"81":[2,172],"86":[2,172],"96":[2,172],"100":[2,172],"109":[2,172],"110":107,"111":[2,172],"112":[2,172],"113":[2,172],"116":108,"117":[2,172],"118":78,"123":[1,101],"124":[1,102],"125":[2,172],"134":[2,172],"135":[2,172],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"4":[2,96],"28":[2,96],"29":[2,96],"58":[2,96],"86":[2,96]},{"4":[2,60],"28":[2,60],"29":[2,60],"57":362,"58":[1,258]},{"29":[1,363],"50":[1,92],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"29":[1,364],"50":[1,92],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"4":[2,69],"28":[2,69],"29":[2,69],"58":[2,69],"96":[2,69],"100":[2,69]},{"50":[1,92],"81":[1,365],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"8":366,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"81":[1,367],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"1":[2,126],"4":[2,126],"28":[2,126],"29":[2,126],"45":[2,126],"50":[2,126],"58":[2,126],"62":[2,126],"74":[2,126],"75":[2,126],"76":[2,126],"77":[2,126],"80":[2,126],"81":[2,126],"82":[2,126],"83":[2,126],"86":[2,126],"88":[2,126],"94":[2,126],"96":[2,126],"100":[2,126],"109":[2,126],"111":[2,126],"112":[2,126],"113":[2,126],"117":[2,126],"123":[2,126],"124":[2,126],"125":[2,126],"134":[2,126],"135":[2,126],"136":[2,126],"137":[2,126],"138":[2,126],"139":[2,126],"140":[2,126],"141":[2,126],"142":[2,126],"143":[2,126],"144":[2,126],"145":[2,126],"146":[2,126],"147":[2,126],"148":[2,126]},{"1":[2,128],"4":[2,128],"28":[2,128],"29":[2,128],"45":[2,128],"50":[2,128],"58":[2,128],"62":[2,128],"74":[2,128],"75":[2,128],"76":[2,128],"77":[2,128],"80":[2,128],"81":[2,128],"82":[2,128],"83":[2,128],"86":[2,128],"88":[2,128],"94":[2,128],"96":[2,128],"100":[2,128],"109":[2,128],"111":[2,128],"112":[2,128],"113":[2,128],"117":[2,128],"123":[2,128],"124":[2,128],"125":[2,128],"134":[2,128],"135":[2,128],"136":[2,128],"137":[2,128],"138":[2,128],"139":[2,128],"140":[2,128],"141":[2,128],"142":[2,128],"143":[2,128],"144":[2,128],"145":[2,128],"146":[2,128],"147":[2,128],"148":[2,128]},{"50":[1,92],"81":[1,368],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"53":[2,68],"58":[2,68]},{"29":[1,369]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"50":[2,179],"58":[2,179],"62":[2,179],"81":[2,179],"86":[2,179],"96":[2,179],"100":[2,179],"109":[2,179],"111":[2,179],"112":[2,179],"113":[2,179],"117":[2,179],"123":[2,179],"124":[2,179],"125":[2,179],"134":[2,179],"135":[2,179],"136":[2,179],"137":[2,179],"138":[2,179],"139":[2,179],"140":[2,179],"141":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"146":[2,179],"148":[2,179]},{"29":[2,183],"128":[2,183],"130":[2,183]},{"4":[2,139],"28":[2,139],"50":[1,92],"58":[2,139],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"4":[1,289],"29":[1,370]},{"1":[2,122],"4":[2,122],"28":[2,122],"29":[2,122],"50":[2,122],"58":[2,122],"62":[2,122],"74":[2,122],"75":[2,122],"76":[2,122],"77":[2,122],"80":[2,122],"81":[2,122],"82":[2,122],"83":[2,122],"86":[2,122],"94":[2,122],"96":[2,122],"100":[2,122],"109":[2,122],"111":[2,122],"112":[2,122],"113":[2,122],"117":[2,122],"123":[2,122],"124":[2,122],"125":[2,122],"134":[2,122],"135":[2,122],"136":[2,122],"137":[2,122],"138":[2,122],"139":[2,122],"140":[2,122],"141":[2,122],"142":[2,122],"143":[2,122],"144":[2,122],"145":[2,122],"146":[2,122],"147":[2,122],"148":[2,122]},{"50":[1,92],"100":[1,371],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"4":[1,294],"28":[1,295],"29":[1,372]},{"8":373,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"8":374,"9":140,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":79,"31":[1,84],"32":56,"33":[1,82],"34":[1,83],"35":28,"36":[1,57],"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":27,"48":[1,52],"49":[1,51],"51":[1,36],"54":37,"55":[1,70],"56":[1,71],"61":[1,68],"64":49,"66":33,"67":80,"68":54,"69":55,"70":29,"71":30,"72":31,"73":[1,32],"84":[1,81],"87":[1,50],"91":34,"92":[1,35],"97":[1,69],"98":[1,67],"99":[1,66],"103":[1,44],"107":[1,53],"108":[1,65],"110":45,"111":[1,74],"113":[1,75],"114":46,"115":[1,76],"116":47,"117":[1,77],"118":78,"126":[1,48],"131":43,"132":[1,72],"133":[1,73],"136":[1,38],"137":[1,39],"138":[1,40],"139":[1,41],"140":[1,42]},{"4":[1,304],"28":[1,305],"29":[1,375]},{"4":[2,49],"28":[2,49],"29":[2,49],"58":[2,49],"86":[2,49]},{"4":[2,50],"28":[2,50],"29":[2,50],"58":[2,50],"86":[2,50]},{"1":[2,124],"4":[2,124],"28":[2,124],"29":[2,124],"45":[2,124],"50":[2,124],"58":[2,124],"62":[2,124],"74":[2,124],"75":[2,124],"76":[2,124],"77":[2,124],"80":[2,124],"81":[2,124],"82":[2,124],"83":[2,124],"86":[2,124],"88":[2,124],"94":[2,124],"96":[2,124],"100":[2,124],"109":[2,124],"111":[2,124],"112":[2,124],"113":[2,124],"117":[2,124],"123":[2,124],"124":[2,124],"125":[2,124],"134":[2,124],"135":[2,124],"136":[2,124],"137":[2,124],"138":[2,124],"139":[2,124],"140":[2,124],"141":[2,124],"142":[2,124],"143":[2,124],"144":[2,124],"145":[2,124],"146":[2,124],"147":[2,124],"148":[2,124]},{"50":[1,92],"81":[1,376],"110":107,"111":[1,74],"113":[1,75],"116":108,"117":[1,77],"118":78,"123":[1,101],"124":[1,102],"134":[1,105],"135":[1,106],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,127],"4":[2,127],"28":[2,127],"29":[2,127],"45":[2,127],"50":[2,127],"58":[2,127],"62":[2,127],"74":[2,127],"75":[2,127],"76":[2,127],"77":[2,127],"80":[2,127],"81":[2,127],"82":[2,127],"83":[2,127],"86":[2,127],"88":[2,127],"94":[2,127],"96":[2,127],"100":[2,127],"109":[2,127],"111":[2,127],"112":[2,127],"113":[2,127],"117":[2,127],"123":[2,127],"124":[2,127],"125":[2,127],"134":[2,127],"135":[2,127],"136":[2,127],"137":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127],"142":[2,127],"143":[2,127],"144":[2,127],"145":[2,127],"146":[2,127],"147":[2,127],"148":[2,127]},{"1":[2,129],"4":[2,129],"28":[2,129],"29":[2,129],"45":[2,129],"50":[2,129],"58":[2,129],"62":[2,129],"74":[2,129],"75":[2,129],"76":[2,129],"77":[2,129],"80":[2,129],"81":[2,129],"82":[2,129],"83":[2,129],"86":[2,129],"88":[2,129],"94":[2,129],"96":[2,129],"100":[2,129],"109":[2,129],"111":[2,129],"112":[2,129],"113":[2,129],"117":[2,129],"123":[2,129],"124":[2,129],"125":[2,129],"134":[2,129],"135":[2,129],"136":[2,129],"137":[2,129],"138":[2,129],"139":[2,129],"140":[2,129],"141":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129]},{"1":[2,177],"4":[2,177],"28":[2,177],"29":[2,177],"50":[2,177],"58":[2,177],"62":[2,177],"81":[2,177],"86":[2,177],"96":[2,177],"100":[2,177],"109":[2,177],"111":[2,177],"112":[2,177],"113":[2,177],"117":[2,177],"123":[2,177],"124":[2,177],"125":[2,177],"134":[2,177],"135":[2,177],"136":[2,177],"137":[2,177],"138":[2,177],"139":[2,177],"140":[2,177],"141":[2,177],"142":[2,177],"143":[2,177],"144":[2,177],"145":[2,177],"146":[2,177],"148":[2,177]},{"1":[2,101],"4":[2,101],"28":[2,101],"29":[2,101],"50":[2,101],"58":[2,101],"62":[2,101],"81":[2,101],"86":[2,101],"96":[2,101],"100":[2,101],"109":[2,101],"111":[2,101],"112":[2,101],"113":[2,101],"117":[2,101],"123":[2,101],"124":[2,101],"125":[2,101],"134":[2,101],"135":[2,101],"136":[2,101],"137":[2,101],"138":[2,101],"139":[2,101],"140":[2,101],"141":[2,101],"142":[2,101],"143":[2,101],"144":[2,101],"145":[2,101],"146":[2,101],"148":[2,101]},{"1":[2,123],"4":[2,123],"28":[2,123],"29":[2,123],"50":[2,123],"58":[2,123],"62":[2,123],"74":[2,123],"75":[2,123],"76":[2,123],"77":[2,123],"80":[2,123],"81":[2,123],"82":[2,123],"83":[2,123],"86":[2,123],"94":[2,123],"96":[2,123],"100":[2,123],"109":[2,123],"111":[2,123],"112":[2,123],"113":[2,123],"117":[2,123],"123":[2,123],"124":[2,123],"125":[2,123],"134":[2,123],"135":[2,123],"136":[2,123],"137":[2,123],"138":[2,123],"139":[2,123],"140":[2,123],"141":[2,123],"142":[2,123],"143":[2,123],"144":[2,123],"145":[2,123],"146":[2,123],"147":[2,123],"148":[2,123]},{"4":[2,135],"28":[2,135],"29":[2,135],"58":[2,135],"96":[2,135],"100":[2,135]},{"1":[2,174],"4":[2,174],"28":[2,174],"29":[2,174],"50":[1,92],"58":[2,174],"62":[2,174],"81":[2,174],"86":[2,174],"96":[2,174],"100":[2,174],"109":[2,174],"110":107,"111":[2,174],"112":[2,174],"113":[2,174],"116":108,"117":[2,174],"118":78,"123":[1,101],"124":[1,102],"125":[2,174],"134":[2,174],"135":[2,174],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"1":[2,175],"4":[2,175],"28":[2,175],"29":[2,175],"50":[1,92],"58":[2,175],"62":[2,175],"81":[2,175],"86":[2,175],"96":[2,175],"100":[2,175],"109":[2,175],"110":107,"111":[2,175],"112":[2,175],"113":[2,175],"116":108,"117":[2,175],"118":78,"123":[1,101],"124":[1,102],"125":[2,175],"134":[2,175],"135":[2,175],"136":[1,104],"137":[1,94],"138":[1,93],"139":[1,90],"140":[1,91],"141":[1,95],"142":[1,96],"143":[1,97],"144":[1,98],"145":[1,99],"146":[1,100],"148":[1,103]},{"4":[2,97],"28":[2,97],"29":[2,97],"58":[2,97],"86":[2,97]},{"1":[2,125],"4":[2,125],"28":[2,125],"29":[2,125],"45":[2,125],"50":[2,125],"58":[2,125],"62":[2,125],"74":[2,125],"75":[2,125],"76":[2,125],"77":[2,125],"80":[2,125],"81":[2,125],"82":[2,125],"83":[2,125],"86":[2,125],"88":[2,125],"94":[2,125],"96":[2,125],"100":[2,125],"109":[2,125],"111":[2,125],"112":[2,125],"113":[2,125],"117":[2,125],"123":[2,125],"124":[2,125],"125":[2,125],"134":[2,125],"135":[2,125],"136":[2,125],"137":[2,125],"138":[2,125],"139":[2,125],"140":[2,125],"141":[2,125],"142":[2,125],"143":[2,125],"144":[2,125],"145":[2,125],"146":[2,125],"147":[2,125],"148":[2,125]}], + defaultActions: {"87":[2,4]}, + parseError: function parseError(str, hash) { + throw new Error(str); +diff --git a/src/grammar.coffee b/src/grammar.coffee +index 2de9329..eb33dc9 100644 +--- a/src/grammar.coffee ++++ b/src/grammar.coffee +@@ -552,11 +552,12 @@ grammar = + o "Value COMPOUND_ASSIGN Expression", -> new OpNode $2, $1, $3 + o "Value COMPOUND_ASSIGN INDENT Expression OUTDENT", -> new OpNode $2, $1, $4 + +- o "Expression INSTANCEOF Expression", -> new OpNode 'instanceof', $1, $3 + o "Expression IN Expression", -> new InNode $1, $3 + o "Expression OF Expression", -> new OpNode 'in', $1, $3 ++ o "Expression INSTANCEOF Expression", -> new OpNode 'instanceof', $1, $3 + o "Expression UNARY IN Expression", -> new OpNode $2, new InNode $1, $4 + o "Expression UNARY OF Expression", -> new OpNode $2, new ParentheticalNode new OpNode 'in', $1, $4 ++ o "Expression UNARY INSTANCEOF Expression", -> new OpNode $2, new ParentheticalNode new OpNode 'instanceof', $1, $4 + ] + + +@@ -572,7 +573,7 @@ grammar = + # + # (2 + 3) * 4 + operators = [ +- ["right", '?'] ++ ["right", '?', 'NEW'] + ["nonassoc", '++', '--'] + ["right", 'UNARY'] + ["left", 'MATH'] +@@ -586,7 +587,7 @@ operators = [ + ["left", '.'] + ["nonassoc", 'INDENT', 'OUTDENT'] + ["right", 'WHEN', 'LEADING_WHEN', 'IN', 'OF', 'BY', 'THROW'] +- ["right", 'IF', 'UNLESS', 'ELSE', 'FOR', 'WHILE', 'UNTIL', 'LOOP', 'NEW', 'SUPER', 'CLASS', 'EXTENDS'] ++ ["right", 'IF', 'UNLESS', 'ELSE', 'FOR', 'WHILE', 'UNTIL', 'LOOP', 'SUPER', 'CLASS', 'EXTENDS'] + ["right", '=', ':', 'RETURN'] + ["right", '->', '=>', 'UNLESS', 'POST_IF', 'POST_UNLESS'] + ] +diff --git a/src/rewriter.coffee b/src/rewriter.coffee +index 0caca55..d27f588 100644 +--- a/src/rewriter.coffee ++++ b/src/rewriter.coffee +@@ -163,7 +163,7 @@ exports.Rewriter = class Rewriter + idx = 2 if callObject + classLine = no if include(LINEBREAKS, token[0]) + if prev and (prev.spaced and include(IMPLICIT_FUNC, prev[0]) and include(IMPLICIT_CALL, token[0]) and +- not (token[0] is 'UNARY' and (@tag(i + 1) in ['IN', 'OF']))) or callObject ++ not (token[0] is 'UNARY' and (@tag(i + 1) in ['IN', 'OF', 'INSTANCEOF']))) or callObject + @tokens.splice i, 0, ['CALL_START', '(', token[2]] + condition = (token, i) -> + (not token.generated and @tokens[i - 1][0] isnt ',' and include(IMPLICIT_END, token[0]) and +-- +2.9.3 + diff --git a/gnu/packages/patches/coffeescript-backport-optional-braces.patch b/gnu/packages/patches/coffeescript-backport-optional-braces.patch new file mode 100644 index 000000000..3f9b67878 --- /dev/null +++ b/gnu/packages/patches/coffeescript-backport-optional-braces.patch @@ -0,0 +1,520 @@ +From a4bfd5e1f53c14bc1c4c993fccf0378b1a89d945 Mon Sep 17 00:00:00 2001 +From: Jelle Licht +Date: Tue, 16 Aug 2016 15:27:56 +0200 +Subject: [PATCH] [Backport] Using an experimental version of new + optional-brace objects +To: guix-devel@gnu.org + +--- + lib/parser.js | 238 ++++++++++++++++++++++++++-------------------------- + src/grammar.coffee | 1 + + src/rewriter.coffee | 36 ++++++++ + 3 files changed, 157 insertions(+), 118 deletions(-) + +diff --git a/lib/parser.js b/lib/parser.js +index b3d71ba..bc5c0be 100755 +--- a/lib/parser.js ++++ b/lib/parser.js +@@ -4,7 +4,7 @@ var parser = {trace: function trace() { }, + yy: {}, + symbols_: {"error":2,"Root":3,"TERMINATOR":4,"Body":5,"Block":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"Throw":11,"BREAK":12,"CONTINUE":13,"Value":14,"Call":15,"Code":16,"Operation":17,"Assign":18,"If":19,"Try":20,"While":21,"For":22,"Switch":23,"Extends":24,"Class":25,"Splat":26,"Existence":27,"Comment":28,"INDENT":29,"OUTDENT":30,"Identifier":31,"IDENTIFIER":32,"AlphaNumeric":33,"NUMBER":34,"STRING":35,"Literal":36,"JS":37,"REGEX":38,"TRUE":39,"FALSE":40,"YES":41,"NO":42,"ON":43,"OFF":44,"Assignable":45,"=":46,"AssignObj":47,":":48,"RETURN":49,"HERECOMMENT":50,"?":51,"PARAM_START":52,"ParamList":53,"PARAM_END":54,"FuncGlyph":55,"->":56,"=>":57,"OptComma":58,",":59,"Param":60,"PARAM":61,".":62,"SimpleAssignable":63,"Accessor":64,"Invocation":65,"ThisProperty":66,"Array":67,"Object":68,"Parenthetical":69,"Range":70,"This":71,"NULL":72,"PROPERTY_ACCESS":73,"PROTOTYPE_ACCESS":74,"::":75,"SOAK_ACCESS":76,"Index":77,"Slice":78,"INDEX_START":79,"INDEX_END":80,"INDEX_SOAK":81,"INDEX_PROTO":82,"{":83,"AssignList":84,"}":85,"CLASS":86,"EXTENDS":87,"ClassBody":88,"ClassAssign":89,"Super":90,"NEW":91,"Arguments":92,"CALL_START":93,"ArgList":94,"CALL_END":95,"SUPER":96,"THIS":97,"@":98,"[":99,"]":100,"SimpleArgs":101,"TRY":102,"Catch":103,"FINALLY":104,"CATCH":105,"THROW":106,"(":107,")":108,"WhileSource":109,"WHILE":110,"WHEN":111,"UNTIL":112,"Loop":113,"LOOP":114,"ForStart":115,"ForSource":116,"FOR":117,"ForVariables":118,"ALL":119,"ForValue":120,"IN":121,"OF":122,"BY":123,"SWITCH":124,"Whens":125,"ELSE":126,"When":127,"LEADING_WHEN":128,"IfBlock":129,"IF":130,"UNLESS":131,"!":132,"!!":133,"-":134,"+":135,"~":136,"--":137,"++":138,"DELETE":139,"TYPEOF":140,"*":141,"/":142,"%":143,"<<":144,">>":145,">>>":146,"&":147,"|":148,"^":149,"<=":150,"<":151,">":152,">=":153,"==":154,"!=":155,"&&":156,"||":157,"OP?":158,"-=":159,"+=":160,"/=":161,"*=":162,"%=":163,"||=":164,"&&=":165,"?=":166,"INSTANCEOF":167,"$accept":0,"$end":1}, + terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","29":"INDENT","30":"OUTDENT","32":"IDENTIFIER","34":"NUMBER","35":"STRING","37":"JS","38":"REGEX","39":"TRUE","40":"FALSE","41":"YES","42":"NO","43":"ON","44":"OFF","46":"=","48":":","49":"RETURN","50":"HERECOMMENT","51":"?","52":"PARAM_START","54":"PARAM_END","56":"->","57":"=>","59":",","61":"PARAM","62":".","72":"NULL","73":"PROPERTY_ACCESS","74":"PROTOTYPE_ACCESS","75":"::","76":"SOAK_ACCESS","79":"INDEX_START","80":"INDEX_END","81":"INDEX_SOAK","82":"INDEX_PROTO","83":"{","85":"}","86":"CLASS","87":"EXTENDS","91":"NEW","93":"CALL_START","95":"CALL_END","96":"SUPER","97":"THIS","98":"@","99":"[","100":"]","102":"TRY","104":"FINALLY","105":"CATCH","106":"THROW","107":"(","108":")","110":"WHILE","111":"WHEN","112":"UNTIL","114":"LOOP","117":"FOR","119":"ALL","121":"IN","122":"OF","123":"BY","124":"SWITCH","126":"ELSE","128":"LEADING_WHEN","130":"IF","131":"UNLESS","132":"!","133":"!!","134":"-","135":"+","136":"~","137":"--","138":"++","139":"DELETE","140":"TYPEOF","141":"*","142":"/","143":"%","144":"<<","145":">>","146":">>>","147":"&","148":"|","149":"^","150":"<=","151":"<","152":">","153":">=","154":"==","155":"!=","156":"&&","157":"||","158":"OP?","159":"-=","160":"+=","161":"/=","162":"*=","163":"%=","164":"||=","165":"&&=","166":"?=","167":"INSTANCEOF"}, +-productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[31,1],[33,1],[33,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[18,3],[47,1],[47,1],[47,3],[47,3],[47,1],[10,2],[10,1],[28,1],[27,2],[16,5],[16,2],[55,1],[55,1],[58,0],[58,1],[53,0],[53,1],[53,3],[60,1],[60,4],[26,4],[63,1],[63,2],[63,2],[63,1],[45,1],[45,1],[45,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[64,2],[64,2],[64,1],[64,2],[64,1],[64,1],[77,3],[77,2],[77,2],[68,4],[84,0],[84,1],[84,3],[84,4],[84,6],[25,2],[25,4],[25,5],[25,7],[89,1],[89,3],[88,0],[88,1],[88,3],[15,1],[15,1],[15,2],[15,2],[24,3],[65,2],[65,2],[92,4],[90,1],[90,2],[71,1],[71,1],[66,2],[70,6],[70,7],[78,6],[78,7],[67,4],[94,0],[94,1],[94,3],[94,4],[94,6],[101,1],[101,3],[20,3],[20,4],[20,5],[103,3],[11,2],[69,3],[109,2],[109,4],[109,2],[109,4],[21,2],[21,2],[21,2],[21,1],[113,2],[113,2],[22,3],[22,3],[22,3],[115,2],[115,3],[120,1],[120,1],[120,1],[118,1],[118,3],[116,2],[116,2],[116,4],[116,4],[116,4],[116,6],[116,6],[23,5],[23,7],[23,4],[23,6],[125,1],[125,2],[127,3],[127,4],[129,3],[129,3],[129,5],[129,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,4],[17,4]], ++productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[31,1],[33,1],[33,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[18,3],[47,1],[47,1],[47,3],[47,3],[47,1],[10,2],[10,1],[28,1],[27,2],[16,5],[16,2],[55,1],[55,1],[58,0],[58,1],[53,0],[53,1],[53,3],[60,1],[60,4],[26,4],[63,1],[63,2],[63,2],[63,1],[45,1],[45,1],[45,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[64,2],[64,2],[64,1],[64,2],[64,1],[64,1],[77,3],[77,2],[77,2],[68,4],[84,0],[84,1],[84,3],[84,4],[84,6],[25,2],[25,4],[25,5],[25,7],[89,1],[89,3],[88,0],[88,1],[88,3],[88,3],[15,1],[15,1],[15,2],[15,2],[24,3],[65,2],[65,2],[92,4],[90,1],[90,2],[71,1],[71,1],[66,2],[70,6],[70,7],[78,6],[78,7],[67,4],[94,0],[94,1],[94,3],[94,4],[94,6],[101,1],[101,3],[20,3],[20,4],[20,5],[103,3],[11,2],[69,3],[109,2],[109,4],[109,2],[109,4],[21,2],[21,2],[21,2],[21,1],[113,2],[113,2],[22,3],[22,3],[22,3],[115,2],[115,3],[120,1],[120,1],[120,1],[118,1],[118,3],[116,2],[116,2],[116,4],[116,4],[116,4],[116,6],[116,6],[23,5],[23,7],[23,4],[23,6],[125,1],[125,2],[127,3],[127,4],[129,3],[129,3],[129,5],[129,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,4],[17,4]], + performAction: function anonymous(yytext,yyleng,yylineno,yy) { + + var $$ = arguments[5],$0=arguments[5].length; +@@ -219,305 +219,307 @@ case 101:this.$ = [$$[$0-1+1-1]]; + break; + case 102:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); + break; +-case 103:this.$ = $$[$0-1+1-1]; ++case 103:this.$ = $$[$0-3+2-1]; + break; + case 104:this.$ = $$[$0-1+1-1]; + break; +-case 105:this.$ = $$[$0-2+2-1].newInstance(); ++case 105:this.$ = $$[$0-1+1-1]; + break; +-case 106:this.$ = (new CallNode($$[$0-2+2-1], [])).newInstance(); ++case 106:this.$ = $$[$0-2+2-1].newInstance(); + break; +-case 107:this.$ = new ExtendsNode($$[$0-3+1-1], $$[$0-3+3-1]); ++case 107:this.$ = (new CallNode($$[$0-2+2-1], [])).newInstance(); + break; +-case 108:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); ++case 108:this.$ = new ExtendsNode($$[$0-3+1-1], $$[$0-3+3-1]); + break; + case 109:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); + break; +-case 110:this.$ = $$[$0-4+2-1]; ++case 110:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); + break; +-case 111:this.$ = new CallNode('super', [new SplatNode(new LiteralNode('arguments'))]); ++case 111:this.$ = $$[$0-4+2-1]; + break; +-case 112:this.$ = new CallNode('super', $$[$0-2+2-1]); ++case 112:this.$ = new CallNode('super', [new SplatNode(new LiteralNode('arguments'))]); + break; +-case 113:this.$ = new ValueNode(new LiteralNode('this')); ++case 113:this.$ = new CallNode('super', $$[$0-2+2-1]); + break; + case 114:this.$ = new ValueNode(new LiteralNode('this')); + break; +-case 115:this.$ = new ValueNode(new LiteralNode('this'), [new AccessorNode($$[$0-2+2-1])]); ++case 115:this.$ = new ValueNode(new LiteralNode('this')); + break; +-case 116:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); ++case 116:this.$ = new ValueNode(new LiteralNode('this'), [new AccessorNode($$[$0-2+2-1])]); + break; +-case 117:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); ++case 117:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); + break; +-case 118:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); ++case 118:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); + break; +-case 119:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); ++case 119:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); + break; +-case 120:this.$ = new ArrayNode($$[$0-4+2-1]); ++case 120:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); + break; +-case 121:this.$ = []; ++case 121:this.$ = new ArrayNode($$[$0-4+2-1]); + break; +-case 122:this.$ = [$$[$0-1+1-1]]; ++case 122:this.$ = []; + break; +-case 123:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); ++case 123:this.$ = [$$[$0-1+1-1]]; + break; +-case 124:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); ++case 124:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); + break; +-case 125:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); ++case 125:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); + break; +-case 126:this.$ = $$[$0-1+1-1]; ++case 126:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); + break; +-case 127:this.$ = ($$[$0-3+1-1] instanceof Array) ? $$[$0-3+1-1].concat([$$[$0-3+3-1]]) : [$$[$0-3+1-1]].concat([$$[$0-3+3-1]]); ++case 127:this.$ = $$[$0-1+1-1]; + break; +-case 128:this.$ = new TryNode($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); ++case 128:this.$ = $$[$0-3+1-1] instanceof Array ? $$[$0-3+1-1].concat([$$[$0-3+3-1]]) : [$$[$0-3+1-1]].concat([$$[$0-3+3-1]]); + break; +-case 129:this.$ = new TryNode($$[$0-4+2-1], null, null, $$[$0-4+4-1]); ++case 129:this.$ = new TryNode($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); + break; +-case 130:this.$ = new TryNode($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); ++case 130:this.$ = new TryNode($$[$0-4+2-1], null, null, $$[$0-4+4-1]); + break; +-case 131:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; ++case 131:this.$ = new TryNode($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); + break; +-case 132:this.$ = new ThrowNode($$[$0-2+2-1]); ++case 132:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; + break; +-case 133:this.$ = new ParentheticalNode($$[$0-3+2-1]); ++case 133:this.$ = new ThrowNode($$[$0-2+2-1]); + break; +-case 134:this.$ = new WhileNode($$[$0-2+2-1]); ++case 134:this.$ = new ParentheticalNode($$[$0-3+2-1]); + break; +-case 135:this.$ = new WhileNode($$[$0-4+2-1], { ++case 135:this.$ = new WhileNode($$[$0-2+2-1]); ++break; ++case 136:this.$ = new WhileNode($$[$0-4+2-1], { + guard: $$[$0-4+4-1] + }); + break; +-case 136:this.$ = new WhileNode($$[$0-2+2-1], { ++case 137:this.$ = new WhileNode($$[$0-2+2-1], { + invert: true + }); + break; +-case 137:this.$ = new WhileNode($$[$0-4+2-1], { ++case 138:this.$ = new WhileNode($$[$0-4+2-1], { + invert: true, + guard: $$[$0-4+4-1] + }); + break; +-case 138:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); +-break; +-case 139:this.$ = $$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]])); ++case 139:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); + break; + case 140:this.$ = $$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]])); + break; +-case 141:this.$ = $$[$0-1+1-1]; ++case 141:this.$ = $$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]])); + break; +-case 142:this.$ = new WhileNode(new LiteralNode('true')).addBody($$[$0-2+2-1]); ++case 142:this.$ = $$[$0-1+1-1]; + break; +-case 143:this.$ = new WhileNode(new LiteralNode('true')).addBody(Expressions.wrap([$$[$0-2+2-1]])); ++case 143:this.$ = new WhileNode(new LiteralNode('true')).addBody($$[$0-2+2-1]); + break; +-case 144:this.$ = (function () { ++case 144:this.$ = new WhileNode(new LiteralNode('true')).addBody(Expressions.wrap([$$[$0-2+2-1]])); ++break; ++case 145:this.$ = (function () { + $$[$0-3+3-1].raw = $$[$0-3+2-1].raw; + return new ForNode($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1][0], $$[$0-3+2-1][1]); + }()); + break; +-case 145:this.$ = (function () { ++case 146:this.$ = (function () { + $$[$0-3+3-1].raw = $$[$0-3+2-1].raw; + return new ForNode($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1][0], $$[$0-3+2-1][1]); + }()); + break; +-case 146:this.$ = (function () { ++case 147:this.$ = (function () { + $$[$0-3+2-1].raw = $$[$0-3+1-1].raw; + return new ForNode($$[$0-3+3-1], $$[$0-3+2-1], $$[$0-3+1-1][0], $$[$0-3+1-1][1]); + }()); + break; +-case 147:this.$ = $$[$0-2+2-1]; ++case 148:this.$ = $$[$0-2+2-1]; + break; +-case 148:this.$ = (function () { ++case 149:this.$ = (function () { + $$[$0-3+3-1].raw = true; + return $$[$0-3+3-1]; + }()); + break; +-case 149:this.$ = $$[$0-1+1-1]; +-break; +-case 150:this.$ = new ValueNode($$[$0-1+1-1]); ++case 150:this.$ = $$[$0-1+1-1]; + break; + case 151:this.$ = new ValueNode($$[$0-1+1-1]); + break; +-case 152:this.$ = [$$[$0-1+1-1]]; ++case 152:this.$ = new ValueNode($$[$0-1+1-1]); ++break; ++case 153:this.$ = [$$[$0-1+1-1]]; + break; +-case 153:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; ++case 154:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; + break; +-case 154:this.$ = { ++case 155:this.$ = { + source: $$[$0-2+2-1] + }; + break; +-case 155:this.$ = { ++case 156:this.$ = { + source: $$[$0-2+2-1], + object: true + }; + break; +-case 156:this.$ = { ++case 157:this.$ = { + source: $$[$0-4+2-1], + guard: $$[$0-4+4-1] + }; + break; +-case 157:this.$ = { ++case 158:this.$ = { + source: $$[$0-4+2-1], + guard: $$[$0-4+4-1], + object: true + }; + break; +-case 158:this.$ = { ++case 159:this.$ = { + source: $$[$0-4+2-1], + step: $$[$0-4+4-1] + }; + break; +-case 159:this.$ = { ++case 160:this.$ = { + source: $$[$0-6+2-1], + guard: $$[$0-6+4-1], + step: $$[$0-6+6-1] + }; + break; +-case 160:this.$ = { ++case 161:this.$ = { + source: $$[$0-6+2-1], + step: $$[$0-6+4-1], + guard: $$[$0-6+6-1] + }; + break; +-case 161:this.$ = $$[$0-5+4-1].switchesOver($$[$0-5+2-1]); ++case 162:this.$ = $$[$0-5+4-1].switchesOver($$[$0-5+2-1]); + break; +-case 162:this.$ = $$[$0-7+4-1].switchesOver($$[$0-7+2-1]).addElse($$[$0-7+6-1], true); ++case 163:this.$ = $$[$0-7+4-1].switchesOver($$[$0-7+2-1]).addElse($$[$0-7+6-1], true); + break; +-case 163:this.$ = $$[$0-4+3-1]; ++case 164:this.$ = $$[$0-4+3-1]; + break; +-case 164:this.$ = $$[$0-6+3-1].addElse($$[$0-6+5-1], true); ++case 165:this.$ = $$[$0-6+3-1].addElse($$[$0-6+5-1], true); + break; +-case 165:this.$ = $$[$0-1+1-1]; ++case 166:this.$ = $$[$0-1+1-1]; + break; +-case 166:this.$ = $$[$0-2+1-1].addElse($$[$0-2+2-1]); ++case 167:this.$ = $$[$0-2+1-1].addElse($$[$0-2+2-1]); + break; +-case 167:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { ++case 168:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { + statement: true + }); + break; +-case 168:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], { ++case 169:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], { + statement: true + }); + break; +-case 169:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1]); ++case 170:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1]); + break; +-case 170:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { ++case 171:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { + invert: true + }); + break; +-case 171:this.$ = $$[$0-5+1-1].addElse((new IfNode($$[$0-5+4-1], $$[$0-5+5-1])).forceStatement()); ++case 172:this.$ = $$[$0-5+1-1].addElse((new IfNode($$[$0-5+4-1], $$[$0-5+5-1])).forceStatement()); + break; +-case 172:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); ++case 173:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); + break; +-case 173:this.$ = $$[$0-1+1-1]; ++case 174:this.$ = $$[$0-1+1-1]; + break; +-case 174:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { ++case 175:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { + statement: true + }); + break; +-case 175:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { ++case 176:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { + statement: true + }); + break; +-case 176:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { ++case 177:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { + statement: true, + invert: true + }); + break; +-case 177:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { ++case 178:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { + statement: true, + invert: true + }); + break; +-case 178:this.$ = new OpNode('!', $$[$0-2+2-1]); ++case 179:this.$ = new OpNode('!', $$[$0-2+2-1]); + break; +-case 179:this.$ = new OpNode('!!', $$[$0-2+2-1]); ++case 180:this.$ = new OpNode('!!', $$[$0-2+2-1]); + break; +-case 180:this.$ = new OpNode('-', $$[$0-2+2-1]); ++case 181:this.$ = new OpNode('-', $$[$0-2+2-1]); + break; +-case 181:this.$ = new OpNode('+', $$[$0-2+2-1]); ++case 182:this.$ = new OpNode('+', $$[$0-2+2-1]); + break; +-case 182:this.$ = new OpNode('~', $$[$0-2+2-1]); ++case 183:this.$ = new OpNode('~', $$[$0-2+2-1]); + break; +-case 183:this.$ = new OpNode('--', $$[$0-2+2-1]); ++case 184:this.$ = new OpNode('--', $$[$0-2+2-1]); + break; +-case 184:this.$ = new OpNode('++', $$[$0-2+2-1]); ++case 185:this.$ = new OpNode('++', $$[$0-2+2-1]); + break; +-case 185:this.$ = new OpNode('delete', $$[$0-2+2-1]); ++case 186:this.$ = new OpNode('delete', $$[$0-2+2-1]); + break; +-case 186:this.$ = new OpNode('typeof', $$[$0-2+2-1]); ++case 187:this.$ = new OpNode('typeof', $$[$0-2+2-1]); + break; +-case 187:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); ++case 188:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); + break; +-case 188:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); ++case 189:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); + break; +-case 189:this.$ = new OpNode('*', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 190:this.$ = new OpNode('*', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 190:this.$ = new OpNode('/', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 191:this.$ = new OpNode('/', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 191:this.$ = new OpNode('%', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 192:this.$ = new OpNode('%', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 192:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 193:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 193:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 194:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 194:this.$ = new OpNode('<<', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 195:this.$ = new OpNode('<<', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 195:this.$ = new OpNode('>>', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 196:this.$ = new OpNode('>>', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 196:this.$ = new OpNode('>>>', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 197:this.$ = new OpNode('>>>', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 197:this.$ = new OpNode('&', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 198:this.$ = new OpNode('&', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 198:this.$ = new OpNode('|', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 199:this.$ = new OpNode('|', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 199:this.$ = new OpNode('^', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 200:this.$ = new OpNode('^', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 200:this.$ = new OpNode('<=', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 201:this.$ = new OpNode('<=', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 201:this.$ = new OpNode('<', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 202:this.$ = new OpNode('<', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 202:this.$ = new OpNode('>', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 203:this.$ = new OpNode('>', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 203:this.$ = new OpNode('>=', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 204:this.$ = new OpNode('>=', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 204:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 205:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 205:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 206:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 206:this.$ = new OpNode('&&', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 207:this.$ = new OpNode('&&', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 207:this.$ = new OpNode('||', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 208:this.$ = new OpNode('||', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 208:this.$ = new OpNode('?', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 209:this.$ = new OpNode('?', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 209:this.$ = new OpNode('-=', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 210:this.$ = new OpNode('-=', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 210:this.$ = new OpNode('+=', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 211:this.$ = new OpNode('+=', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 211:this.$ = new OpNode('/=', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 212:this.$ = new OpNode('/=', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 212:this.$ = new OpNode('*=', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 213:this.$ = new OpNode('*=', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 213:this.$ = new OpNode('%=', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 214:this.$ = new OpNode('%=', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 214:this.$ = new OpNode('||=', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 215:this.$ = new OpNode('||=', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 215:this.$ = new OpNode('&&=', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 216:this.$ = new OpNode('&&=', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 216:this.$ = new OpNode('?=', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 217:this.$ = new OpNode('?=', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 217:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 218:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 218:this.$ = new InNode($$[$0-3+1-1], $$[$0-3+3-1]); ++case 219:this.$ = new InNode($$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 219:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 220:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 220:this.$ = new OpNode('!', new InNode($$[$0-4+1-1], $$[$0-4+4-1])); ++case 221:this.$ = new OpNode('!', new InNode($$[$0-4+1-1], $$[$0-4+4-1])); + break; +-case 221:this.$ = new OpNode('!', new ParentheticalNode(new OpNode('in', $$[$0-4+1-1], $$[$0-4+4-1]))); ++case 222:this.$ = new OpNode('!', new ParentheticalNode(new OpNode('in', $$[$0-4+1-1], $$[$0-4+4-1]))); + break; + } + }, +-table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[3]},{"1":[2,2],"28":89,"50":[1,56]},{"1":[2,3],"4":[1,90]},{"4":[1,91]},{"1":[2,5],"4":[2,5],"30":[2,5]},{"5":92,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[1,93],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,8],"4":[2,8],"30":[2,8],"51":[1,133],"62":[1,132],"108":[2,8],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,9],"4":[2,9],"30":[2,9],"108":[2,9],"109":136,"110":[1,79],"112":[1,80],"115":137,"117":[1,82],"130":[1,134],"131":[1,135]},{"1":[2,14],"4":[2,14],"29":[2,14],"30":[2,14],"51":[2,14],"59":[2,14],"62":[2,14],"64":139,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,14],"81":[1,148],"82":[1,149],"85":[2,14],"92":138,"93":[1,140],"95":[2,14],"100":[2,14],"108":[2,14],"110":[2,14],"111":[2,14],"112":[2,14],"117":[2,14],"121":[2,14],"122":[2,14],"123":[2,14],"130":[2,14],"131":[2,14],"132":[2,14],"134":[2,14],"135":[2,14],"137":[2,14],"138":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14],"162":[2,14],"163":[2,14],"164":[2,14],"165":[2,14],"166":[2,14],"167":[2,14]},{"1":[2,15],"4":[2,15],"29":[2,15],"30":[2,15],"51":[2,15],"59":[2,15],"62":[2,15],"80":[2,15],"85":[2,15],"95":[2,15],"100":[2,15],"108":[2,15],"110":[2,15],"111":[2,15],"112":[2,15],"117":[2,15],"121":[2,15],"122":[2,15],"123":[2,15],"130":[2,15],"131":[2,15],"132":[2,15],"134":[2,15],"135":[2,15],"137":[2,15],"138":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15],"162":[2,15],"163":[2,15],"164":[2,15],"165":[2,15],"166":[2,15],"167":[2,15]},{"1":[2,16],"4":[2,16],"29":[2,16],"30":[2,16],"51":[2,16],"59":[2,16],"62":[2,16],"80":[2,16],"85":[2,16],"95":[2,16],"100":[2,16],"108":[2,16],"110":[2,16],"111":[2,16],"112":[2,16],"117":[2,16],"121":[2,16],"122":[2,16],"123":[2,16],"130":[2,16],"131":[2,16],"132":[2,16],"134":[2,16],"135":[2,16],"137":[2,16],"138":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16],"162":[2,16],"163":[2,16],"164":[2,16],"165":[2,16],"166":[2,16],"167":[2,16]},{"1":[2,17],"4":[2,17],"29":[2,17],"30":[2,17],"51":[2,17],"59":[2,17],"62":[2,17],"80":[2,17],"85":[2,17],"95":[2,17],"100":[2,17],"108":[2,17],"110":[2,17],"111":[2,17],"112":[2,17],"117":[2,17],"121":[2,17],"122":[2,17],"123":[2,17],"130":[2,17],"131":[2,17],"132":[2,17],"134":[2,17],"135":[2,17],"137":[2,17],"138":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17],"162":[2,17],"163":[2,17],"164":[2,17],"165":[2,17],"166":[2,17],"167":[2,17]},{"1":[2,18],"4":[2,18],"29":[2,18],"30":[2,18],"51":[2,18],"59":[2,18],"62":[2,18],"80":[2,18],"85":[2,18],"95":[2,18],"100":[2,18],"108":[2,18],"110":[2,18],"111":[2,18],"112":[2,18],"117":[2,18],"121":[2,18],"122":[2,18],"123":[2,18],"130":[2,18],"131":[2,18],"132":[2,18],"134":[2,18],"135":[2,18],"137":[2,18],"138":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18],"162":[2,18],"163":[2,18],"164":[2,18],"165":[2,18],"166":[2,18],"167":[2,18]},{"1":[2,19],"4":[2,19],"29":[2,19],"30":[2,19],"51":[2,19],"59":[2,19],"62":[2,19],"80":[2,19],"85":[2,19],"95":[2,19],"100":[2,19],"108":[2,19],"110":[2,19],"111":[2,19],"112":[2,19],"117":[2,19],"121":[2,19],"122":[2,19],"123":[2,19],"130":[2,19],"131":[2,19],"132":[2,19],"134":[2,19],"135":[2,19],"137":[2,19],"138":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19],"162":[2,19],"163":[2,19],"164":[2,19],"165":[2,19],"166":[2,19],"167":[2,19]},{"1":[2,20],"4":[2,20],"29":[2,20],"30":[2,20],"51":[2,20],"59":[2,20],"62":[2,20],"80":[2,20],"85":[2,20],"95":[2,20],"100":[2,20],"108":[2,20],"110":[2,20],"111":[2,20],"112":[2,20],"117":[2,20],"121":[2,20],"122":[2,20],"123":[2,20],"130":[2,20],"131":[2,20],"132":[2,20],"134":[2,20],"135":[2,20],"137":[2,20],"138":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20],"162":[2,20],"163":[2,20],"164":[2,20],"165":[2,20],"166":[2,20],"167":[2,20]},{"1":[2,21],"4":[2,21],"29":[2,21],"30":[2,21],"51":[2,21],"59":[2,21],"62":[2,21],"80":[2,21],"85":[2,21],"95":[2,21],"100":[2,21],"108":[2,21],"110":[2,21],"111":[2,21],"112":[2,21],"117":[2,21],"121":[2,21],"122":[2,21],"123":[2,21],"130":[2,21],"131":[2,21],"132":[2,21],"134":[2,21],"135":[2,21],"137":[2,21],"138":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21],"162":[2,21],"163":[2,21],"164":[2,21],"165":[2,21],"166":[2,21],"167":[2,21]},{"1":[2,22],"4":[2,22],"29":[2,22],"30":[2,22],"51":[2,22],"59":[2,22],"62":[2,22],"80":[2,22],"85":[2,22],"95":[2,22],"100":[2,22],"108":[2,22],"110":[2,22],"111":[2,22],"112":[2,22],"117":[2,22],"121":[2,22],"122":[2,22],"123":[2,22],"130":[2,22],"131":[2,22],"132":[2,22],"134":[2,22],"135":[2,22],"137":[2,22],"138":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22],"162":[2,22],"163":[2,22],"164":[2,22],"165":[2,22],"166":[2,22],"167":[2,22]},{"1":[2,23],"4":[2,23],"29":[2,23],"30":[2,23],"51":[2,23],"59":[2,23],"62":[2,23],"80":[2,23],"85":[2,23],"95":[2,23],"100":[2,23],"108":[2,23],"110":[2,23],"111":[2,23],"112":[2,23],"117":[2,23],"121":[2,23],"122":[2,23],"123":[2,23],"130":[2,23],"131":[2,23],"132":[2,23],"134":[2,23],"135":[2,23],"137":[2,23],"138":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23],"162":[2,23],"163":[2,23],"164":[2,23],"165":[2,23],"166":[2,23],"167":[2,23]},{"1":[2,24],"4":[2,24],"29":[2,24],"30":[2,24],"51":[2,24],"59":[2,24],"62":[2,24],"80":[2,24],"85":[2,24],"95":[2,24],"100":[2,24],"108":[2,24],"110":[2,24],"111":[2,24],"112":[2,24],"117":[2,24],"121":[2,24],"122":[2,24],"123":[2,24],"130":[2,24],"131":[2,24],"132":[2,24],"134":[2,24],"135":[2,24],"137":[2,24],"138":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24],"162":[2,24],"163":[2,24],"164":[2,24],"165":[2,24],"166":[2,24],"167":[2,24]},{"1":[2,25],"4":[2,25],"29":[2,25],"30":[2,25],"51":[2,25],"59":[2,25],"62":[2,25],"80":[2,25],"85":[2,25],"95":[2,25],"100":[2,25],"108":[2,25],"110":[2,25],"111":[2,25],"112":[2,25],"117":[2,25],"121":[2,25],"122":[2,25],"123":[2,25],"130":[2,25],"131":[2,25],"132":[2,25],"134":[2,25],"135":[2,25],"137":[2,25],"138":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25],"162":[2,25],"163":[2,25],"164":[2,25],"165":[2,25],"166":[2,25],"167":[2,25]},{"1":[2,26],"4":[2,26],"29":[2,26],"30":[2,26],"51":[2,26],"59":[2,26],"62":[2,26],"80":[2,26],"85":[2,26],"95":[2,26],"100":[2,26],"108":[2,26],"110":[2,26],"111":[2,26],"112":[2,26],"117":[2,26],"121":[2,26],"122":[2,26],"123":[2,26],"130":[2,26],"131":[2,26],"132":[2,26],"134":[2,26],"135":[2,26],"137":[2,26],"138":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26],"162":[2,26],"163":[2,26],"164":[2,26],"165":[2,26],"166":[2,26],"167":[2,26]},{"1":[2,27],"4":[2,27],"29":[2,27],"30":[2,27],"51":[2,27],"59":[2,27],"62":[2,27],"80":[2,27],"85":[2,27],"95":[2,27],"100":[2,27],"108":[2,27],"110":[2,27],"111":[2,27],"112":[2,27],"117":[2,27],"121":[2,27],"122":[2,27],"123":[2,27],"130":[2,27],"131":[2,27],"132":[2,27],"134":[2,27],"135":[2,27],"137":[2,27],"138":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27],"162":[2,27],"163":[2,27],"164":[2,27],"165":[2,27],"166":[2,27],"167":[2,27]},{"1":[2,28],"4":[2,28],"29":[2,28],"30":[2,28],"51":[2,28],"59":[2,28],"62":[2,28],"80":[2,28],"85":[2,28],"95":[2,28],"100":[2,28],"108":[2,28],"110":[2,28],"111":[2,28],"112":[2,28],"117":[2,28],"121":[2,28],"122":[2,28],"123":[2,28],"130":[2,28],"131":[2,28],"132":[2,28],"134":[2,28],"135":[2,28],"137":[2,28],"138":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28],"162":[2,28],"163":[2,28],"164":[2,28],"165":[2,28],"166":[2,28],"167":[2,28]},{"1":[2,10],"4":[2,10],"30":[2,10],"108":[2,10],"110":[2,10],"112":[2,10],"117":[2,10],"130":[2,10],"131":[2,10]},{"1":[2,11],"4":[2,11],"30":[2,11],"108":[2,11],"110":[2,11],"112":[2,11],"117":[2,11],"130":[2,11],"131":[2,11]},{"1":[2,12],"4":[2,12],"30":[2,12],"108":[2,12],"110":[2,12],"112":[2,12],"117":[2,12],"130":[2,12],"131":[2,12]},{"1":[2,13],"4":[2,13],"30":[2,13],"108":[2,13],"110":[2,13],"112":[2,13],"117":[2,13],"130":[2,13],"131":[2,13]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"46":[1,150],"51":[2,73],"59":[2,73],"62":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"76":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"82":[2,73],"85":[2,73],"93":[2,73],"95":[2,73],"100":[2,73],"108":[2,73],"110":[2,73],"111":[2,73],"112":[2,73],"117":[2,73],"121":[2,73],"122":[2,73],"123":[2,73],"130":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"137":[2,73],"138":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73],"164":[2,73],"165":[2,73],"166":[2,73],"167":[2,73]},{"1":[2,74],"4":[2,74],"29":[2,74],"30":[2,74],"51":[2,74],"59":[2,74],"62":[2,74],"73":[2,74],"74":[2,74],"75":[2,74],"76":[2,74],"79":[2,74],"80":[2,74],"81":[2,74],"82":[2,74],"85":[2,74],"93":[2,74],"95":[2,74],"100":[2,74],"108":[2,74],"110":[2,74],"111":[2,74],"112":[2,74],"117":[2,74],"121":[2,74],"122":[2,74],"123":[2,74],"130":[2,74],"131":[2,74],"132":[2,74],"134":[2,74],"135":[2,74],"137":[2,74],"138":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74],"162":[2,74],"163":[2,74],"164":[2,74],"165":[2,74],"166":[2,74],"167":[2,74]},{"1":[2,75],"4":[2,75],"29":[2,75],"30":[2,75],"51":[2,75],"59":[2,75],"62":[2,75],"73":[2,75],"74":[2,75],"75":[2,75],"76":[2,75],"79":[2,75],"80":[2,75],"81":[2,75],"82":[2,75],"85":[2,75],"93":[2,75],"95":[2,75],"100":[2,75],"108":[2,75],"110":[2,75],"111":[2,75],"112":[2,75],"117":[2,75],"121":[2,75],"122":[2,75],"123":[2,75],"130":[2,75],"131":[2,75],"132":[2,75],"134":[2,75],"135":[2,75],"137":[2,75],"138":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75],"162":[2,75],"163":[2,75],"164":[2,75],"165":[2,75],"166":[2,75],"167":[2,75]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"51":[2,76],"59":[2,76],"62":[2,76],"73":[2,76],"74":[2,76],"75":[2,76],"76":[2,76],"79":[2,76],"80":[2,76],"81":[2,76],"82":[2,76],"85":[2,76],"93":[2,76],"95":[2,76],"100":[2,76],"108":[2,76],"110":[2,76],"111":[2,76],"112":[2,76],"117":[2,76],"121":[2,76],"122":[2,76],"123":[2,76],"130":[2,76],"131":[2,76],"132":[2,76],"134":[2,76],"135":[2,76],"137":[2,76],"138":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76],"162":[2,76],"163":[2,76],"164":[2,76],"165":[2,76],"166":[2,76],"167":[2,76]},{"1":[2,77],"4":[2,77],"29":[2,77],"30":[2,77],"51":[2,77],"59":[2,77],"62":[2,77],"73":[2,77],"74":[2,77],"75":[2,77],"76":[2,77],"79":[2,77],"80":[2,77],"81":[2,77],"82":[2,77],"85":[2,77],"93":[2,77],"95":[2,77],"100":[2,77],"108":[2,77],"110":[2,77],"111":[2,77],"112":[2,77],"117":[2,77],"121":[2,77],"122":[2,77],"123":[2,77],"130":[2,77],"131":[2,77],"132":[2,77],"134":[2,77],"135":[2,77],"137":[2,77],"138":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77],"162":[2,77],"163":[2,77],"164":[2,77],"165":[2,77],"166":[2,77],"167":[2,77]},{"1":[2,78],"4":[2,78],"29":[2,78],"30":[2,78],"51":[2,78],"59":[2,78],"62":[2,78],"73":[2,78],"74":[2,78],"75":[2,78],"76":[2,78],"79":[2,78],"80":[2,78],"81":[2,78],"82":[2,78],"85":[2,78],"93":[2,78],"95":[2,78],"100":[2,78],"108":[2,78],"110":[2,78],"111":[2,78],"112":[2,78],"117":[2,78],"121":[2,78],"122":[2,78],"123":[2,78],"130":[2,78],"131":[2,78],"132":[2,78],"134":[2,78],"135":[2,78],"137":[2,78],"138":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78],"162":[2,78],"163":[2,78],"164":[2,78],"165":[2,78],"166":[2,78],"167":[2,78]},{"1":[2,103],"4":[2,103],"29":[2,103],"30":[2,103],"51":[2,103],"59":[2,103],"62":[2,103],"64":152,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,103],"81":[1,148],"82":[1,149],"85":[2,103],"92":151,"93":[1,140],"95":[2,103],"100":[2,103],"108":[2,103],"110":[2,103],"111":[2,103],"112":[2,103],"117":[2,103],"121":[2,103],"122":[2,103],"123":[2,103],"130":[2,103],"131":[2,103],"132":[2,103],"134":[2,103],"135":[2,103],"137":[2,103],"138":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"146":[2,103],"147":[2,103],"148":[2,103],"149":[2,103],"150":[2,103],"151":[2,103],"152":[2,103],"153":[2,103],"154":[2,103],"155":[2,103],"156":[2,103],"157":[2,103],"158":[2,103],"159":[2,103],"160":[2,103],"161":[2,103],"162":[2,103],"163":[2,103],"164":[2,103],"165":[2,103],"166":[2,103],"167":[2,103]},{"1":[2,104],"4":[2,104],"29":[2,104],"30":[2,104],"51":[2,104],"59":[2,104],"62":[2,104],"80":[2,104],"85":[2,104],"95":[2,104],"100":[2,104],"108":[2,104],"110":[2,104],"111":[2,104],"112":[2,104],"117":[2,104],"121":[2,104],"122":[2,104],"123":[2,104],"130":[2,104],"131":[2,104],"132":[2,104],"134":[2,104],"135":[2,104],"137":[2,104],"138":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"148":[2,104],"149":[2,104],"150":[2,104],"151":[2,104],"152":[2,104],"153":[2,104],"154":[2,104],"155":[2,104],"156":[2,104],"157":[2,104],"158":[2,104],"159":[2,104],"160":[2,104],"161":[2,104],"162":[2,104],"163":[2,104],"164":[2,104],"165":[2,104],"166":[2,104],"167":[2,104]},{"14":154,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":155,"63":156,"65":153,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"97":[1,72],"98":[1,73],"99":[1,71],"107":[1,70]},{"53":157,"54":[2,60],"59":[2,60],"60":158,"61":[1,159]},{"4":[1,161],"6":160,"29":[1,6]},{"8":162,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":164,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":165,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":166,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":167,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":168,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":169,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":170,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":171,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,173],"4":[2,173],"29":[2,173],"30":[2,173],"51":[2,173],"59":[2,173],"62":[2,173],"80":[2,173],"85":[2,173],"95":[2,173],"100":[2,173],"108":[2,173],"110":[2,173],"111":[2,173],"112":[2,173],"117":[2,173],"121":[2,173],"122":[2,173],"123":[2,173],"126":[1,172],"130":[2,173],"131":[2,173],"132":[2,173],"134":[2,173],"135":[2,173],"137":[2,173],"138":[2,173],"141":[2,173],"142":[2,173],"143":[2,173],"144":[2,173],"145":[2,173],"146":[2,173],"147":[2,173],"148":[2,173],"149":[2,173],"150":[2,173],"151":[2,173],"152":[2,173],"153":[2,173],"154":[2,173],"155":[2,173],"156":[2,173],"157":[2,173],"158":[2,173],"159":[2,173],"160":[2,173],"161":[2,173],"162":[2,173],"163":[2,173],"164":[2,173],"165":[2,173],"166":[2,173],"167":[2,173]},{"4":[1,161],"6":173,"29":[1,6]},{"4":[1,161],"6":174,"29":[1,6]},{"1":[2,141],"4":[2,141],"29":[2,141],"30":[2,141],"51":[2,141],"59":[2,141],"62":[2,141],"80":[2,141],"85":[2,141],"95":[2,141],"100":[2,141],"108":[2,141],"110":[2,141],"111":[2,141],"112":[2,141],"117":[2,141],"121":[2,141],"122":[2,141],"123":[2,141],"130":[2,141],"131":[2,141],"132":[2,141],"134":[2,141],"135":[2,141],"137":[2,141],"138":[2,141],"141":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"147":[2,141],"148":[2,141],"149":[2,141],"150":[2,141],"151":[2,141],"152":[2,141],"153":[2,141],"154":[2,141],"155":[2,141],"156":[2,141],"157":[2,141],"158":[2,141],"159":[2,141],"160":[2,141],"161":[2,141],"162":[2,141],"163":[2,141],"164":[2,141],"165":[2,141],"166":[2,141],"167":[2,141]},{"116":175,"121":[1,176],"122":[1,177]},{"8":178,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,179],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"46":[2,70],"51":[2,70],"59":[2,70],"62":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"76":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"82":[2,70],"85":[2,70],"87":[1,180],"93":[2,70],"95":[2,70],"100":[2,70],"108":[2,70],"110":[2,70],"111":[2,70],"112":[2,70],"117":[2,70],"121":[2,70],"122":[2,70],"123":[2,70],"130":[2,70],"131":[2,70],"132":[2,70],"134":[2,70],"135":[2,70],"137":[2,70],"138":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70],"164":[2,70],"165":[2,70],"166":[2,70],"167":[2,70]},{"14":182,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":155,"63":181,"65":183,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"97":[1,72],"98":[1,73],"99":[1,71],"107":[1,70]},{"1":[2,52],"4":[2,52],"29":[2,52],"30":[2,52],"51":[2,52],"59":[2,52],"62":[2,52],"80":[2,52],"85":[2,52],"95":[2,52],"100":[2,52],"104":[2,52],"105":[2,52],"108":[2,52],"110":[2,52],"111":[2,52],"112":[2,52],"117":[2,52],"121":[2,52],"122":[2,52],"123":[2,52],"126":[2,52],"128":[2,52],"130":[2,52],"131":[2,52],"132":[2,52],"134":[2,52],"135":[2,52],"137":[2,52],"138":[2,52],"141":[2,52],"142":[2,52],"143":[2,52],"144":[2,52],"145":[2,52],"146":[2,52],"147":[2,52],"148":[2,52],"149":[2,52],"150":[2,52],"151":[2,52],"152":[2,52],"153":[2,52],"154":[2,52],"155":[2,52],"156":[2,52],"157":[2,52],"158":[2,52],"159":[2,52],"160":[2,52],"161":[2,52],"162":[2,52],"163":[2,52],"164":[2,52],"165":[2,52],"166":[2,52],"167":[2,52]},{"1":[2,51],"4":[2,51],"8":184,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,51],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"108":[2,51],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[2,51],"131":[2,51],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":185,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,71],"4":[2,71],"29":[2,71],"30":[2,71],"46":[2,71],"51":[2,71],"59":[2,71],"62":[2,71],"73":[2,71],"74":[2,71],"75":[2,71],"76":[2,71],"79":[2,71],"80":[2,71],"81":[2,71],"82":[2,71],"85":[2,71],"93":[2,71],"95":[2,71],"100":[2,71],"108":[2,71],"110":[2,71],"111":[2,71],"112":[2,71],"117":[2,71],"121":[2,71],"122":[2,71],"123":[2,71],"130":[2,71],"131":[2,71],"132":[2,71],"134":[2,71],"135":[2,71],"137":[2,71],"138":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71],"162":[2,71],"163":[2,71],"164":[2,71],"165":[2,71],"166":[2,71],"167":[2,71]},{"1":[2,72],"4":[2,72],"29":[2,72],"30":[2,72],"46":[2,72],"51":[2,72],"59":[2,72],"62":[2,72],"73":[2,72],"74":[2,72],"75":[2,72],"76":[2,72],"79":[2,72],"80":[2,72],"81":[2,72],"82":[2,72],"85":[2,72],"93":[2,72],"95":[2,72],"100":[2,72],"108":[2,72],"110":[2,72],"111":[2,72],"112":[2,72],"117":[2,72],"121":[2,72],"122":[2,72],"123":[2,72],"130":[2,72],"131":[2,72],"132":[2,72],"134":[2,72],"135":[2,72],"137":[2,72],"138":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72],"162":[2,72],"163":[2,72],"164":[2,72],"165":[2,72],"166":[2,72],"167":[2,72]},{"1":[2,35],"4":[2,35],"29":[2,35],"30":[2,35],"51":[2,35],"59":[2,35],"62":[2,35],"73":[2,35],"74":[2,35],"75":[2,35],"76":[2,35],"79":[2,35],"80":[2,35],"81":[2,35],"82":[2,35],"85":[2,35],"93":[2,35],"95":[2,35],"100":[2,35],"108":[2,35],"110":[2,35],"111":[2,35],"112":[2,35],"117":[2,35],"121":[2,35],"122":[2,35],"123":[2,35],"130":[2,35],"131":[2,35],"132":[2,35],"134":[2,35],"135":[2,35],"137":[2,35],"138":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35],"162":[2,35],"163":[2,35],"164":[2,35],"165":[2,35],"166":[2,35],"167":[2,35]},{"1":[2,36],"4":[2,36],"29":[2,36],"30":[2,36],"51":[2,36],"59":[2,36],"62":[2,36],"73":[2,36],"74":[2,36],"75":[2,36],"76":[2,36],"79":[2,36],"80":[2,36],"81":[2,36],"82":[2,36],"85":[2,36],"93":[2,36],"95":[2,36],"100":[2,36],"108":[2,36],"110":[2,36],"111":[2,36],"112":[2,36],"117":[2,36],"121":[2,36],"122":[2,36],"123":[2,36],"130":[2,36],"131":[2,36],"132":[2,36],"134":[2,36],"135":[2,36],"137":[2,36],"138":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36],"162":[2,36],"163":[2,36],"164":[2,36],"165":[2,36],"166":[2,36],"167":[2,36]},{"1":[2,37],"4":[2,37],"29":[2,37],"30":[2,37],"51":[2,37],"59":[2,37],"62":[2,37],"73":[2,37],"74":[2,37],"75":[2,37],"76":[2,37],"79":[2,37],"80":[2,37],"81":[2,37],"82":[2,37],"85":[2,37],"93":[2,37],"95":[2,37],"100":[2,37],"108":[2,37],"110":[2,37],"111":[2,37],"112":[2,37],"117":[2,37],"121":[2,37],"122":[2,37],"123":[2,37],"130":[2,37],"131":[2,37],"132":[2,37],"134":[2,37],"135":[2,37],"137":[2,37],"138":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37],"162":[2,37],"163":[2,37],"164":[2,37],"165":[2,37],"166":[2,37],"167":[2,37]},{"1":[2,38],"4":[2,38],"29":[2,38],"30":[2,38],"51":[2,38],"59":[2,38],"62":[2,38],"73":[2,38],"74":[2,38],"75":[2,38],"76":[2,38],"79":[2,38],"80":[2,38],"81":[2,38],"82":[2,38],"85":[2,38],"93":[2,38],"95":[2,38],"100":[2,38],"108":[2,38],"110":[2,38],"111":[2,38],"112":[2,38],"117":[2,38],"121":[2,38],"122":[2,38],"123":[2,38],"130":[2,38],"131":[2,38],"132":[2,38],"134":[2,38],"135":[2,38],"137":[2,38],"138":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38],"162":[2,38],"163":[2,38],"164":[2,38],"165":[2,38],"166":[2,38],"167":[2,38]},{"1":[2,39],"4":[2,39],"29":[2,39],"30":[2,39],"51":[2,39],"59":[2,39],"62":[2,39],"73":[2,39],"74":[2,39],"75":[2,39],"76":[2,39],"79":[2,39],"80":[2,39],"81":[2,39],"82":[2,39],"85":[2,39],"93":[2,39],"95":[2,39],"100":[2,39],"108":[2,39],"110":[2,39],"111":[2,39],"112":[2,39],"117":[2,39],"121":[2,39],"122":[2,39],"123":[2,39],"130":[2,39],"131":[2,39],"132":[2,39],"134":[2,39],"135":[2,39],"137":[2,39],"138":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39],"162":[2,39],"163":[2,39],"164":[2,39],"165":[2,39],"166":[2,39],"167":[2,39]},{"1":[2,40],"4":[2,40],"29":[2,40],"30":[2,40],"51":[2,40],"59":[2,40],"62":[2,40],"73":[2,40],"74":[2,40],"75":[2,40],"76":[2,40],"79":[2,40],"80":[2,40],"81":[2,40],"82":[2,40],"85":[2,40],"93":[2,40],"95":[2,40],"100":[2,40],"108":[2,40],"110":[2,40],"111":[2,40],"112":[2,40],"117":[2,40],"121":[2,40],"122":[2,40],"123":[2,40],"130":[2,40],"131":[2,40],"132":[2,40],"134":[2,40],"135":[2,40],"137":[2,40],"138":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40],"162":[2,40],"163":[2,40],"164":[2,40],"165":[2,40],"166":[2,40],"167":[2,40]},{"1":[2,41],"4":[2,41],"29":[2,41],"30":[2,41],"51":[2,41],"59":[2,41],"62":[2,41],"73":[2,41],"74":[2,41],"75":[2,41],"76":[2,41],"79":[2,41],"80":[2,41],"81":[2,41],"82":[2,41],"85":[2,41],"93":[2,41],"95":[2,41],"100":[2,41],"108":[2,41],"110":[2,41],"111":[2,41],"112":[2,41],"117":[2,41],"121":[2,41],"122":[2,41],"123":[2,41],"130":[2,41],"131":[2,41],"132":[2,41],"134":[2,41],"135":[2,41],"137":[2,41],"138":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41],"162":[2,41],"163":[2,41],"164":[2,41],"165":[2,41],"166":[2,41],"167":[2,41]},{"1":[2,42],"4":[2,42],"29":[2,42],"30":[2,42],"51":[2,42],"59":[2,42],"62":[2,42],"73":[2,42],"74":[2,42],"75":[2,42],"76":[2,42],"79":[2,42],"80":[2,42],"81":[2,42],"82":[2,42],"85":[2,42],"93":[2,42],"95":[2,42],"100":[2,42],"108":[2,42],"110":[2,42],"111":[2,42],"112":[2,42],"117":[2,42],"121":[2,42],"122":[2,42],"123":[2,42],"130":[2,42],"131":[2,42],"132":[2,42],"134":[2,42],"135":[2,42],"137":[2,42],"138":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"148":[2,42],"149":[2,42],"150":[2,42],"151":[2,42],"152":[2,42],"153":[2,42],"154":[2,42],"155":[2,42],"156":[2,42],"157":[2,42],"158":[2,42],"159":[2,42],"160":[2,42],"161":[2,42],"162":[2,42],"163":[2,42],"164":[2,42],"165":[2,42],"166":[2,42],"167":[2,42]},{"1":[2,43],"4":[2,43],"29":[2,43],"30":[2,43],"51":[2,43],"59":[2,43],"62":[2,43],"73":[2,43],"74":[2,43],"75":[2,43],"76":[2,43],"79":[2,43],"80":[2,43],"81":[2,43],"82":[2,43],"85":[2,43],"93":[2,43],"95":[2,43],"100":[2,43],"108":[2,43],"110":[2,43],"111":[2,43],"112":[2,43],"117":[2,43],"121":[2,43],"122":[2,43],"123":[2,43],"130":[2,43],"131":[2,43],"132":[2,43],"134":[2,43],"135":[2,43],"137":[2,43],"138":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"148":[2,43],"149":[2,43],"150":[2,43],"151":[2,43],"152":[2,43],"153":[2,43],"154":[2,43],"155":[2,43],"156":[2,43],"157":[2,43],"158":[2,43],"159":[2,43],"160":[2,43],"161":[2,43],"162":[2,43],"163":[2,43],"164":[2,43],"165":[2,43],"166":[2,43],"167":[2,43]},{"7":186,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[2,121],"8":187,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,121],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,121],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"94":188,"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"100":[2,121],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,113],"4":[2,113],"29":[2,113],"30":[2,113],"51":[2,113],"59":[2,113],"62":[2,113],"73":[2,113],"74":[2,113],"75":[2,113],"76":[2,113],"79":[2,113],"80":[2,113],"81":[2,113],"82":[2,113],"85":[2,113],"93":[2,113],"95":[2,113],"100":[2,113],"108":[2,113],"110":[2,113],"111":[2,113],"112":[2,113],"117":[2,113],"121":[2,113],"122":[2,113],"123":[2,113],"130":[2,113],"131":[2,113],"132":[2,113],"134":[2,113],"135":[2,113],"137":[2,113],"138":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113],"162":[2,113],"163":[2,113],"164":[2,113],"165":[2,113],"166":[2,113],"167":[2,113]},{"1":[2,114],"4":[2,114],"29":[2,114],"30":[2,114],"31":189,"32":[1,88],"51":[2,114],"59":[2,114],"62":[2,114],"73":[2,114],"74":[2,114],"75":[2,114],"76":[2,114],"79":[2,114],"80":[2,114],"81":[2,114],"82":[2,114],"85":[2,114],"93":[2,114],"95":[2,114],"100":[2,114],"108":[2,114],"110":[2,114],"111":[2,114],"112":[2,114],"117":[2,114],"121":[2,114],"122":[2,114],"123":[2,114],"130":[2,114],"131":[2,114],"132":[2,114],"134":[2,114],"135":[2,114],"137":[2,114],"138":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114],"162":[2,114],"163":[2,114],"164":[2,114],"165":[2,114],"166":[2,114],"167":[2,114]},{"1":[2,111],"4":[2,111],"29":[2,111],"30":[2,111],"51":[2,111],"59":[2,111],"62":[2,111],"80":[2,111],"85":[2,111],"92":190,"93":[1,140],"95":[2,111],"100":[2,111],"108":[2,111],"110":[2,111],"111":[2,111],"112":[2,111],"117":[2,111],"121":[2,111],"122":[2,111],"123":[2,111],"130":[2,111],"131":[2,111],"132":[2,111],"134":[2,111],"135":[2,111],"137":[2,111],"138":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111],"162":[2,111],"163":[2,111],"164":[2,111],"165":[2,111],"166":[2,111],"167":[2,111]},{"4":[2,56],"29":[2,56]},{"4":[2,57],"29":[2,57]},{"8":191,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":192,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":193,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":194,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[1,161],"6":195,"8":196,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"31":200,"32":[1,88],"67":201,"68":202,"83":[1,85],"99":[1,203],"118":197,"119":[1,198],"120":199},{"1":[2,66],"4":[2,66],"29":[2,66],"30":[2,66],"46":[2,66],"51":[2,66],"59":[2,66],"62":[2,66],"73":[2,66],"74":[2,66],"75":[2,66],"76":[2,66],"79":[2,66],"80":[2,66],"81":[2,66],"82":[2,66],"85":[2,66],"87":[2,66],"93":[2,66],"95":[2,66],"100":[2,66],"108":[2,66],"110":[2,66],"111":[2,66],"112":[2,66],"117":[2,66],"121":[2,66],"122":[2,66],"123":[2,66],"130":[2,66],"131":[2,66],"132":[2,66],"134":[2,66],"135":[2,66],"137":[2,66],"138":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66],"162":[2,66],"163":[2,66],"164":[2,66],"165":[2,66],"166":[2,66],"167":[2,66]},{"1":[2,69],"4":[2,69],"29":[2,69],"30":[2,69],"46":[2,69],"51":[2,69],"59":[2,69],"62":[2,69],"73":[2,69],"74":[2,69],"75":[2,69],"76":[2,69],"79":[2,69],"80":[2,69],"81":[2,69],"82":[2,69],"85":[2,69],"87":[2,69],"93":[2,69],"95":[2,69],"100":[2,69],"108":[2,69],"110":[2,69],"111":[2,69],"112":[2,69],"117":[2,69],"121":[2,69],"122":[2,69],"123":[2,69],"130":[2,69],"131":[2,69],"132":[2,69],"134":[2,69],"135":[2,69],"137":[2,69],"138":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69],"162":[2,69],"163":[2,69],"164":[2,69],"165":[2,69],"166":[2,69],"167":[2,69]},{"4":[2,89],"28":208,"29":[2,89],"31":206,"32":[1,88],"33":207,"34":[1,86],"35":[1,87],"47":205,"50":[1,56],"59":[2,89],"84":204,"85":[2,89]},{"1":[2,33],"4":[2,33],"29":[2,33],"30":[2,33],"48":[2,33],"51":[2,33],"59":[2,33],"62":[2,33],"73":[2,33],"74":[2,33],"75":[2,33],"76":[2,33],"79":[2,33],"80":[2,33],"81":[2,33],"82":[2,33],"85":[2,33],"93":[2,33],"95":[2,33],"100":[2,33],"108":[2,33],"110":[2,33],"111":[2,33],"112":[2,33],"117":[2,33],"121":[2,33],"122":[2,33],"123":[2,33],"130":[2,33],"131":[2,33],"132":[2,33],"134":[2,33],"135":[2,33],"137":[2,33],"138":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33],"162":[2,33],"163":[2,33],"164":[2,33],"165":[2,33],"166":[2,33],"167":[2,33]},{"1":[2,34],"4":[2,34],"29":[2,34],"30":[2,34],"48":[2,34],"51":[2,34],"59":[2,34],"62":[2,34],"73":[2,34],"74":[2,34],"75":[2,34],"76":[2,34],"79":[2,34],"80":[2,34],"81":[2,34],"82":[2,34],"85":[2,34],"93":[2,34],"95":[2,34],"100":[2,34],"108":[2,34],"110":[2,34],"111":[2,34],"112":[2,34],"117":[2,34],"121":[2,34],"122":[2,34],"123":[2,34],"130":[2,34],"131":[2,34],"132":[2,34],"134":[2,34],"135":[2,34],"137":[2,34],"138":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34],"162":[2,34],"163":[2,34],"164":[2,34],"165":[2,34],"166":[2,34],"167":[2,34]},{"1":[2,32],"4":[2,32],"29":[2,32],"30":[2,32],"46":[2,32],"48":[2,32],"51":[2,32],"59":[2,32],"62":[2,32],"73":[2,32],"74":[2,32],"75":[2,32],"76":[2,32],"79":[2,32],"80":[2,32],"81":[2,32],"82":[2,32],"85":[2,32],"87":[2,32],"93":[2,32],"95":[2,32],"100":[2,32],"108":[2,32],"110":[2,32],"111":[2,32],"112":[2,32],"117":[2,32],"121":[2,32],"122":[2,32],"123":[2,32],"130":[2,32],"131":[2,32],"132":[2,32],"134":[2,32],"135":[2,32],"137":[2,32],"138":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32],"162":[2,32],"163":[2,32],"164":[2,32],"165":[2,32],"166":[2,32],"167":[2,32]},{"1":[2,31],"4":[2,31],"29":[2,31],"30":[2,31],"51":[2,31],"59":[2,31],"62":[2,31],"80":[2,31],"85":[2,31],"95":[2,31],"100":[2,31],"104":[2,31],"105":[2,31],"108":[2,31],"110":[2,31],"111":[2,31],"112":[2,31],"117":[2,31],"121":[2,31],"122":[2,31],"123":[2,31],"126":[2,31],"128":[2,31],"130":[2,31],"131":[2,31],"132":[2,31],"134":[2,31],"135":[2,31],"137":[2,31],"138":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31],"162":[2,31],"163":[2,31],"164":[2,31],"165":[2,31],"166":[2,31],"167":[2,31]},{"1":[2,7],"4":[2,7],"7":209,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,7],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,4]},{"4":[1,90],"30":[1,210]},{"1":[2,30],"4":[2,30],"29":[2,30],"30":[2,30],"51":[2,30],"59":[2,30],"62":[2,30],"80":[2,30],"85":[2,30],"95":[2,30],"100":[2,30],"104":[2,30],"105":[2,30],"108":[2,30],"110":[2,30],"111":[2,30],"112":[2,30],"117":[2,30],"121":[2,30],"122":[2,30],"123":[2,30],"126":[2,30],"128":[2,30],"130":[2,30],"131":[2,30],"132":[2,30],"134":[2,30],"135":[2,30],"137":[2,30],"138":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30],"162":[2,30],"163":[2,30],"164":[2,30],"165":[2,30],"166":[2,30],"167":[2,30]},{"1":[2,187],"4":[2,187],"29":[2,187],"30":[2,187],"51":[2,187],"59":[2,187],"62":[2,187],"80":[2,187],"85":[2,187],"95":[2,187],"100":[2,187],"108":[2,187],"110":[2,187],"111":[2,187],"112":[2,187],"117":[2,187],"121":[2,187],"122":[2,187],"123":[2,187],"130":[2,187],"131":[2,187],"132":[2,187],"134":[2,187],"135":[2,187],"137":[2,187],"138":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"147":[2,187],"148":[2,187],"149":[2,187],"150":[2,187],"151":[2,187],"152":[2,187],"153":[2,187],"154":[2,187],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187],"162":[2,187],"163":[2,187],"164":[2,187],"165":[2,187],"166":[2,187],"167":[2,187]},{"1":[2,188],"4":[2,188],"29":[2,188],"30":[2,188],"51":[2,188],"59":[2,188],"62":[2,188],"80":[2,188],"85":[2,188],"95":[2,188],"100":[2,188],"108":[2,188],"110":[2,188],"111":[2,188],"112":[2,188],"117":[2,188],"121":[2,188],"122":[2,188],"123":[2,188],"130":[2,188],"131":[2,188],"132":[2,188],"134":[2,188],"135":[2,188],"137":[2,188],"138":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188],"162":[2,188],"163":[2,188],"164":[2,188],"165":[2,188],"166":[2,188],"167":[2,188]},{"8":211,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":212,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":213,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":214,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":215,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":216,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":217,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":218,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":219,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":220,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":221,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":222,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":223,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":224,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":225,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":226,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":227,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":228,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":229,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":230,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":231,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":232,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":233,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":234,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":235,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":236,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":237,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":238,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":239,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":240,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":241,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"121":[1,242],"122":[1,243]},{"8":244,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":245,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,140],"4":[2,140],"29":[2,140],"30":[2,140],"51":[2,140],"59":[2,140],"62":[2,140],"80":[2,140],"85":[2,140],"95":[2,140],"100":[2,140],"108":[2,140],"110":[2,140],"111":[2,140],"112":[2,140],"117":[2,140],"121":[2,140],"122":[2,140],"123":[2,140],"130":[2,140],"131":[2,140],"132":[2,140],"134":[2,140],"135":[2,140],"137":[2,140],"138":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140],"161":[2,140],"162":[2,140],"163":[2,140],"164":[2,140],"165":[2,140],"166":[2,140],"167":[2,140]},{"116":246,"121":[1,176],"122":[1,177]},{"62":[1,247]},{"1":[2,53],"4":[2,53],"29":[2,53],"30":[2,53],"51":[2,53],"59":[2,53],"62":[2,53],"80":[2,53],"85":[2,53],"95":[2,53],"100":[2,53],"108":[2,53],"110":[2,53],"111":[2,53],"112":[2,53],"117":[2,53],"121":[2,53],"122":[2,53],"123":[2,53],"130":[2,53],"131":[2,53],"132":[2,53],"134":[2,53],"135":[2,53],"137":[2,53],"138":[2,53],"141":[2,53],"142":[2,53],"143":[2,53],"144":[2,53],"145":[2,53],"146":[2,53],"147":[2,53],"148":[2,53],"149":[2,53],"150":[2,53],"151":[2,53],"152":[2,53],"153":[2,53],"154":[2,53],"155":[2,53],"156":[2,53],"157":[2,53],"158":[2,53],"159":[2,53],"160":[2,53],"161":[2,53],"162":[2,53],"163":[2,53],"164":[2,53],"165":[2,53],"166":[2,53],"167":[2,53]},{"8":248,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":249,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,139],"4":[2,139],"29":[2,139],"30":[2,139],"51":[2,139],"59":[2,139],"62":[2,139],"80":[2,139],"85":[2,139],"95":[2,139],"100":[2,139],"108":[2,139],"110":[2,139],"111":[2,139],"112":[2,139],"117":[2,139],"121":[2,139],"122":[2,139],"123":[2,139],"130":[2,139],"131":[2,139],"132":[2,139],"134":[2,139],"135":[2,139],"137":[2,139],"138":[2,139],"141":[2,139],"142":[2,139],"143":[2,139],"144":[2,139],"145":[2,139],"146":[2,139],"147":[2,139],"148":[2,139],"149":[2,139],"150":[2,139],"151":[2,139],"152":[2,139],"153":[2,139],"154":[2,139],"155":[2,139],"156":[2,139],"157":[2,139],"158":[2,139],"159":[2,139],"160":[2,139],"161":[2,139],"162":[2,139],"163":[2,139],"164":[2,139],"165":[2,139],"166":[2,139],"167":[2,139]},{"116":250,"121":[1,176],"122":[1,177]},{"1":[2,108],"4":[2,108],"29":[2,108],"30":[2,108],"51":[2,108],"59":[2,108],"62":[2,108],"73":[2,108],"74":[2,108],"75":[2,108],"76":[2,108],"79":[2,108],"80":[2,108],"81":[2,108],"82":[2,108],"85":[2,108],"93":[2,108],"95":[2,108],"100":[2,108],"108":[2,108],"110":[2,108],"111":[2,108],"112":[2,108],"117":[2,108],"121":[2,108],"122":[2,108],"123":[2,108],"130":[2,108],"131":[2,108],"132":[2,108],"134":[2,108],"135":[2,108],"137":[2,108],"138":[2,108],"141":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108],"162":[2,108],"163":[2,108],"164":[2,108],"165":[2,108],"166":[2,108],"167":[2,108]},{"1":[2,67],"4":[2,67],"29":[2,67],"30":[2,67],"46":[2,67],"51":[2,67],"59":[2,67],"62":[2,67],"73":[2,67],"74":[2,67],"75":[2,67],"76":[2,67],"79":[2,67],"80":[2,67],"81":[2,67],"82":[2,67],"85":[2,67],"87":[2,67],"93":[2,67],"95":[2,67],"100":[2,67],"108":[2,67],"110":[2,67],"111":[2,67],"112":[2,67],"117":[2,67],"121":[2,67],"122":[2,67],"123":[2,67],"130":[2,67],"131":[2,67],"132":[2,67],"134":[2,67],"135":[2,67],"137":[2,67],"138":[2,67],"141":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67],"162":[2,67],"163":[2,67],"164":[2,67],"165":[2,67],"166":[2,67],"167":[2,67]},{"4":[2,121],"8":252,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,121],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,121],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"94":251,"95":[2,121],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"31":253,"32":[1,88]},{"31":254,"32":[1,88]},{"1":[2,81],"4":[2,81],"29":[2,81],"30":[2,81],"46":[2,81],"51":[2,81],"59":[2,81],"62":[2,81],"73":[2,81],"74":[2,81],"75":[2,81],"76":[2,81],"79":[2,81],"80":[2,81],"81":[2,81],"82":[2,81],"85":[2,81],"87":[2,81],"93":[2,81],"95":[2,81],"100":[2,81],"108":[2,81],"110":[2,81],"111":[2,81],"112":[2,81],"117":[2,81],"121":[2,81],"122":[2,81],"123":[2,81],"130":[2,81],"131":[2,81],"132":[2,81],"134":[2,81],"135":[2,81],"137":[2,81],"138":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81],"162":[2,81],"163":[2,81],"164":[2,81],"165":[2,81],"166":[2,81],"167":[2,81]},{"31":255,"32":[1,88]},{"1":[2,83],"4":[2,83],"29":[2,83],"30":[2,83],"46":[2,83],"51":[2,83],"59":[2,83],"62":[2,83],"73":[2,83],"74":[2,83],"75":[2,83],"76":[2,83],"79":[2,83],"80":[2,83],"81":[2,83],"82":[2,83],"85":[2,83],"87":[2,83],"93":[2,83],"95":[2,83],"100":[2,83],"108":[2,83],"110":[2,83],"111":[2,83],"112":[2,83],"117":[2,83],"121":[2,83],"122":[2,83],"123":[2,83],"130":[2,83],"131":[2,83],"132":[2,83],"134":[2,83],"135":[2,83],"137":[2,83],"138":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83],"162":[2,83],"163":[2,83],"164":[2,83],"165":[2,83],"166":[2,83],"167":[2,83]},{"1":[2,84],"4":[2,84],"29":[2,84],"30":[2,84],"46":[2,84],"51":[2,84],"59":[2,84],"62":[2,84],"73":[2,84],"74":[2,84],"75":[2,84],"76":[2,84],"79":[2,84],"80":[2,84],"81":[2,84],"82":[2,84],"85":[2,84],"87":[2,84],"93":[2,84],"95":[2,84],"100":[2,84],"108":[2,84],"110":[2,84],"111":[2,84],"112":[2,84],"117":[2,84],"121":[2,84],"122":[2,84],"123":[2,84],"130":[2,84],"131":[2,84],"132":[2,84],"134":[2,84],"135":[2,84],"137":[2,84],"138":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84],"162":[2,84],"163":[2,84],"164":[2,84],"165":[2,84],"166":[2,84],"167":[2,84]},{"8":256,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"77":257,"79":[1,258],"81":[1,148],"82":[1,149]},{"77":259,"79":[1,258],"81":[1,148],"82":[1,149]},{"8":260,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,109],"4":[2,109],"29":[2,109],"30":[2,109],"51":[2,109],"59":[2,109],"62":[2,109],"73":[2,109],"74":[2,109],"75":[2,109],"76":[2,109],"79":[2,109],"80":[2,109],"81":[2,109],"82":[2,109],"85":[2,109],"93":[2,109],"95":[2,109],"100":[2,109],"108":[2,109],"110":[2,109],"111":[2,109],"112":[2,109],"117":[2,109],"121":[2,109],"122":[2,109],"123":[2,109],"130":[2,109],"131":[2,109],"132":[2,109],"134":[2,109],"135":[2,109],"137":[2,109],"138":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109],"162":[2,109],"163":[2,109],"164":[2,109],"165":[2,109],"166":[2,109],"167":[2,109]},{"1":[2,68],"4":[2,68],"29":[2,68],"30":[2,68],"46":[2,68],"51":[2,68],"59":[2,68],"62":[2,68],"73":[2,68],"74":[2,68],"75":[2,68],"76":[2,68],"79":[2,68],"80":[2,68],"81":[2,68],"82":[2,68],"85":[2,68],"87":[2,68],"93":[2,68],"95":[2,68],"100":[2,68],"108":[2,68],"110":[2,68],"111":[2,68],"112":[2,68],"117":[2,68],"121":[2,68],"122":[2,68],"123":[2,68],"130":[2,68],"131":[2,68],"132":[2,68],"134":[2,68],"135":[2,68],"137":[2,68],"138":[2,68],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68],"164":[2,68],"165":[2,68],"166":[2,68],"167":[2,68]},{"1":[2,105],"4":[2,105],"29":[2,105],"30":[2,105],"51":[2,105],"59":[2,105],"62":[2,105],"64":152,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,105],"81":[1,148],"82":[1,149],"85":[2,105],"92":151,"93":[1,140],"95":[2,105],"100":[2,105],"108":[2,105],"110":[2,105],"111":[2,105],"112":[2,105],"117":[2,105],"121":[2,105],"122":[2,105],"123":[2,105],"130":[2,105],"131":[2,105],"132":[2,105],"134":[2,105],"135":[2,105],"137":[2,105],"138":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105],"161":[2,105],"162":[2,105],"163":[2,105],"164":[2,105],"165":[2,105],"166":[2,105],"167":[2,105]},{"1":[2,106],"4":[2,106],"29":[2,106],"30":[2,106],"51":[2,106],"59":[2,106],"62":[2,106],"64":139,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,106],"81":[1,148],"82":[1,149],"85":[2,106],"92":138,"93":[1,140],"95":[2,106],"100":[2,106],"108":[2,106],"110":[2,106],"111":[2,106],"112":[2,106],"117":[2,106],"121":[2,106],"122":[2,106],"123":[2,106],"130":[2,106],"131":[2,106],"132":[2,106],"134":[2,106],"135":[2,106],"137":[2,106],"138":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106],"161":[2,106],"162":[2,106],"163":[2,106],"164":[2,106],"165":[2,106],"166":[2,106],"167":[2,106]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"51":[2,73],"59":[2,73],"62":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"76":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"82":[2,73],"85":[2,73],"93":[2,73],"95":[2,73],"100":[2,73],"108":[2,73],"110":[2,73],"111":[2,73],"112":[2,73],"117":[2,73],"121":[2,73],"122":[2,73],"123":[2,73],"130":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"137":[2,73],"138":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73],"164":[2,73],"165":[2,73],"166":[2,73],"167":[2,73]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"51":[2,70],"59":[2,70],"62":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"76":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"82":[2,70],"85":[2,70],"93":[2,70],"95":[2,70],"100":[2,70],"108":[2,70],"110":[2,70],"111":[2,70],"112":[2,70],"117":[2,70],"121":[2,70],"122":[2,70],"123":[2,70],"130":[2,70],"131":[2,70],"132":[2,70],"134":[2,70],"135":[2,70],"137":[2,70],"138":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70],"164":[2,70],"165":[2,70],"166":[2,70],"167":[2,70]},{"54":[1,261],"59":[1,262]},{"54":[2,61],"59":[2,61],"62":[1,263]},{"54":[2,63],"59":[2,63],"62":[2,63]},{"1":[2,55],"4":[2,55],"29":[2,55],"30":[2,55],"51":[2,55],"59":[2,55],"62":[2,55],"80":[2,55],"85":[2,55],"95":[2,55],"100":[2,55],"108":[2,55],"110":[2,55],"111":[2,55],"112":[2,55],"117":[2,55],"121":[2,55],"122":[2,55],"123":[2,55],"130":[2,55],"131":[2,55],"132":[2,55],"134":[2,55],"135":[2,55],"137":[2,55],"138":[2,55],"141":[2,55],"142":[2,55],"143":[2,55],"144":[2,55],"145":[2,55],"146":[2,55],"147":[2,55],"148":[2,55],"149":[2,55],"150":[2,55],"151":[2,55],"152":[2,55],"153":[2,55],"154":[2,55],"155":[2,55],"156":[2,55],"157":[2,55],"158":[2,55],"159":[2,55],"160":[2,55],"161":[2,55],"162":[2,55],"163":[2,55],"164":[2,55],"165":[2,55],"166":[2,55],"167":[2,55]},{"28":89,"50":[1,56]},{"1":[2,178],"4":[2,178],"29":[2,178],"30":[2,178],"51":[1,133],"59":[2,178],"62":[2,178],"80":[2,178],"85":[2,178],"95":[2,178],"100":[2,178],"108":[2,178],"109":130,"110":[2,178],"111":[2,178],"112":[2,178],"115":131,"117":[2,178],"121":[2,178],"122":[2,178],"123":[2,178],"130":[2,178],"131":[2,178],"134":[2,178],"135":[2,178],"141":[2,178],"142":[2,178],"143":[2,178],"144":[2,178],"145":[2,178],"146":[2,178],"147":[2,178],"148":[2,178],"149":[2,178],"150":[2,178],"151":[2,178],"152":[2,178],"153":[2,178],"154":[2,178],"155":[2,178],"156":[2,178],"157":[2,178],"158":[2,178],"159":[2,178],"160":[2,178],"161":[2,178],"162":[2,178],"163":[2,178],"164":[2,178],"165":[2,178],"166":[2,178],"167":[2,178]},{"109":136,"110":[1,79],"112":[1,80],"115":137,"117":[1,82],"130":[1,134],"131":[1,135]},{"1":[2,179],"4":[2,179],"29":[2,179],"30":[2,179],"51":[1,133],"59":[2,179],"62":[2,179],"80":[2,179],"85":[2,179],"95":[2,179],"100":[2,179],"108":[2,179],"109":130,"110":[2,179],"111":[2,179],"112":[2,179],"115":131,"117":[2,179],"121":[2,179],"122":[2,179],"123":[2,179],"130":[2,179],"131":[2,179],"134":[2,179],"135":[2,179],"141":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"146":[2,179],"147":[2,179],"148":[2,179],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[2,179],"162":[2,179],"163":[2,179],"164":[2,179],"165":[2,179],"166":[2,179],"167":[2,179]},{"1":[2,180],"4":[2,180],"29":[2,180],"30":[2,180],"51":[1,133],"59":[2,180],"62":[2,180],"80":[2,180],"85":[2,180],"95":[2,180],"100":[2,180],"108":[2,180],"109":130,"110":[2,180],"111":[2,180],"112":[2,180],"115":131,"117":[2,180],"121":[2,180],"122":[2,180],"123":[2,180],"130":[2,180],"131":[2,180],"134":[2,180],"135":[2,180],"141":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"146":[2,180],"147":[2,180],"148":[2,180],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[2,180],"162":[2,180],"163":[2,180],"164":[2,180],"165":[2,180],"166":[2,180],"167":[2,180]},{"1":[2,181],"4":[2,181],"29":[2,181],"30":[2,181],"51":[1,133],"59":[2,181],"62":[2,181],"80":[2,181],"85":[2,181],"95":[2,181],"100":[2,181],"108":[2,181],"109":130,"110":[2,181],"111":[2,181],"112":[2,181],"115":131,"117":[2,181],"121":[2,181],"122":[2,181],"123":[2,181],"130":[2,181],"131":[2,181],"134":[2,181],"135":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181],"161":[2,181],"162":[2,181],"163":[2,181],"164":[2,181],"165":[2,181],"166":[2,181],"167":[2,181]},{"1":[2,182],"4":[2,182],"29":[2,182],"30":[2,182],"51":[1,133],"59":[2,182],"62":[2,182],"80":[2,182],"85":[2,182],"95":[2,182],"100":[2,182],"108":[2,182],"109":130,"110":[2,182],"111":[2,182],"112":[2,182],"115":131,"117":[2,182],"121":[2,182],"122":[2,182],"123":[2,182],"130":[2,182],"131":[2,182],"134":[2,182],"135":[2,182],"141":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"146":[2,182],"147":[2,182],"148":[2,182],"149":[2,182],"150":[2,182],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182],"161":[2,182],"162":[2,182],"163":[2,182],"164":[2,182],"165":[2,182],"166":[2,182],"167":[2,182]},{"1":[2,183],"4":[2,183],"29":[2,183],"30":[2,183],"51":[1,133],"59":[2,183],"62":[2,183],"80":[2,183],"85":[2,183],"95":[2,183],"100":[2,183],"108":[2,183],"109":130,"110":[2,183],"111":[2,183],"112":[2,183],"115":131,"117":[2,183],"121":[2,183],"122":[2,183],"123":[2,183],"130":[2,183],"131":[2,183],"134":[2,183],"135":[2,183],"141":[2,183],"142":[2,183],"143":[2,183],"144":[2,183],"145":[2,183],"146":[2,183],"147":[2,183],"148":[2,183],"149":[2,183],"150":[2,183],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183],"162":[2,183],"163":[2,183],"164":[2,183],"165":[2,183],"166":[2,183],"167":[2,183]},{"1":[2,184],"4":[2,184],"29":[2,184],"30":[2,184],"51":[1,133],"59":[2,184],"62":[2,184],"80":[2,184],"85":[2,184],"95":[2,184],"100":[2,184],"108":[2,184],"109":130,"110":[2,184],"111":[2,184],"112":[2,184],"115":131,"117":[2,184],"121":[2,184],"122":[2,184],"123":[2,184],"130":[2,184],"131":[2,184],"134":[2,184],"135":[2,184],"141":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"147":[2,184],"148":[2,184],"149":[2,184],"150":[2,184],"151":[2,184],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184],"162":[2,184],"163":[2,184],"164":[2,184],"165":[2,184],"166":[2,184],"167":[2,184]},{"1":[2,185],"4":[2,185],"29":[2,185],"30":[2,185],"51":[1,133],"59":[2,185],"62":[2,185],"80":[2,185],"85":[2,185],"95":[2,185],"100":[2,185],"108":[2,185],"109":130,"110":[2,185],"111":[2,185],"112":[2,185],"115":131,"117":[2,185],"121":[2,185],"122":[2,185],"123":[2,185],"130":[2,185],"131":[2,185],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185],"162":[2,185],"163":[2,185],"164":[2,185],"165":[2,185],"166":[2,185],"167":[1,124]},{"1":[2,186],"4":[2,186],"29":[2,186],"30":[2,186],"51":[1,133],"59":[2,186],"62":[2,186],"80":[2,186],"85":[2,186],"95":[2,186],"100":[2,186],"108":[2,186],"109":130,"110":[2,186],"111":[2,186],"112":[2,186],"115":131,"117":[2,186],"121":[2,186],"122":[2,186],"123":[2,186],"130":[2,186],"131":[2,186],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[2,186],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186],"162":[2,186],"163":[2,186],"164":[2,186],"165":[2,186],"166":[2,186],"167":[1,124]},{"4":[1,161],"6":265,"29":[1,6],"130":[1,264]},{"103":266,"104":[1,267],"105":[1,268]},{"1":[2,138],"4":[2,138],"29":[2,138],"30":[2,138],"51":[2,138],"59":[2,138],"62":[2,138],"80":[2,138],"85":[2,138],"95":[2,138],"100":[2,138],"108":[2,138],"110":[2,138],"111":[2,138],"112":[2,138],"117":[2,138],"121":[2,138],"122":[2,138],"123":[2,138],"130":[2,138],"131":[2,138],"132":[2,138],"134":[2,138],"135":[2,138],"137":[2,138],"138":[2,138],"141":[2,138],"142":[2,138],"143":[2,138],"144":[2,138],"145":[2,138],"146":[2,138],"147":[2,138],"148":[2,138],"149":[2,138],"150":[2,138],"151":[2,138],"152":[2,138],"153":[2,138],"154":[2,138],"155":[2,138],"156":[2,138],"157":[2,138],"158":[2,138],"159":[2,138],"160":[2,138],"161":[2,138],"162":[2,138],"163":[2,138],"164":[2,138],"165":[2,138],"166":[2,138],"167":[2,138]},{"4":[1,161],"6":269,"29":[1,6]},{"8":270,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":271,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"29":[1,272],"51":[1,133],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"125":273,"127":274,"128":[1,275]},{"14":276,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":155,"63":156,"65":183,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"97":[1,72],"98":[1,73],"99":[1,71],"107":[1,70]},{"1":[2,94],"4":[2,94],"29":[1,278],"30":[2,94],"51":[2,94],"59":[2,94],"62":[2,94],"73":[2,70],"74":[2,70],"75":[2,70],"76":[2,70],"79":[2,70],"80":[2,94],"81":[2,70],"82":[2,70],"85":[2,94],"87":[1,277],"93":[2,70],"95":[2,94],"100":[2,94],"108":[2,94],"110":[2,94],"111":[2,94],"112":[2,94],"117":[2,94],"121":[2,94],"122":[2,94],"123":[2,94],"130":[2,94],"131":[2,94],"132":[2,94],"134":[2,94],"135":[2,94],"137":[2,94],"138":[2,94],"141":[2,94],"142":[2,94],"143":[2,94],"144":[2,94],"145":[2,94],"146":[2,94],"147":[2,94],"148":[2,94],"149":[2,94],"150":[2,94],"151":[2,94],"152":[2,94],"153":[2,94],"154":[2,94],"155":[2,94],"156":[2,94],"157":[2,94],"158":[2,94],"159":[2,94],"160":[2,94],"161":[2,94],"162":[2,94],"163":[2,94],"164":[2,94],"165":[2,94],"166":[2,94],"167":[2,94]},{"64":139,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"81":[1,148],"82":[1,149],"92":138,"93":[1,140]},{"64":152,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"81":[1,148],"82":[1,149],"92":151,"93":[1,140]},{"1":[2,50],"4":[2,50],"30":[2,50],"51":[1,133],"62":[1,132],"108":[2,50],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[2,50],"131":[2,50],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,132],"4":[2,132],"30":[2,132],"51":[1,133],"62":[1,132],"108":[2,132],"109":130,"110":[2,132],"112":[2,132],"115":131,"117":[2,132],"121":[1,125],"122":[1,126],"130":[2,132],"131":[2,132],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"108":[1,279]},{"4":[2,122],"29":[2,122],"51":[1,133],"59":[2,122],"62":[1,280],"100":[2,122],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[2,58],"29":[2,58],"58":281,"59":[1,282],"100":[2,58]},{"1":[2,115],"4":[2,115],"29":[2,115],"30":[2,115],"46":[2,115],"48":[2,115],"51":[2,115],"59":[2,115],"62":[2,115],"73":[2,115],"74":[2,115],"75":[2,115],"76":[2,115],"79":[2,115],"80":[2,115],"81":[2,115],"82":[2,115],"85":[2,115],"87":[2,115],"93":[2,115],"95":[2,115],"100":[2,115],"108":[2,115],"110":[2,115],"111":[2,115],"112":[2,115],"117":[2,115],"121":[2,115],"122":[2,115],"123":[2,115],"130":[2,115],"131":[2,115],"132":[2,115],"134":[2,115],"135":[2,115],"137":[2,115],"138":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"148":[2,115],"149":[2,115],"150":[2,115],"151":[2,115],"152":[2,115],"153":[2,115],"154":[2,115],"155":[2,115],"156":[2,115],"157":[2,115],"158":[2,115],"159":[2,115],"160":[2,115],"161":[2,115],"162":[2,115],"163":[2,115],"164":[2,115],"165":[2,115],"166":[2,115],"167":[2,115]},{"1":[2,112],"4":[2,112],"29":[2,112],"30":[2,112],"51":[2,112],"59":[2,112],"62":[2,112],"80":[2,112],"85":[2,112],"95":[2,112],"100":[2,112],"108":[2,112],"110":[2,112],"111":[2,112],"112":[2,112],"117":[2,112],"121":[2,112],"122":[2,112],"123":[2,112],"130":[2,112],"131":[2,112],"132":[2,112],"134":[2,112],"135":[2,112],"137":[2,112],"138":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112],"162":[2,112],"163":[2,112],"164":[2,112],"165":[2,112],"166":[2,112],"167":[2,112]},{"4":[1,161],"6":283,"29":[1,6],"51":[1,133],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[1,161],"6":284,"29":[1,6],"51":[1,133],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,134],"4":[2,134],"29":[2,134],"30":[2,134],"51":[1,133],"59":[2,134],"62":[1,132],"80":[2,134],"85":[2,134],"95":[2,134],"100":[2,134],"108":[2,134],"109":130,"110":[1,79],"111":[1,285],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,134],"130":[2,134],"131":[2,134],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,136],"4":[2,136],"29":[2,136],"30":[2,136],"51":[1,133],"59":[2,136],"62":[1,132],"80":[2,136],"85":[2,136],"95":[2,136],"100":[2,136],"108":[2,136],"109":130,"110":[1,79],"111":[1,286],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,136],"130":[2,136],"131":[2,136],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,142],"4":[2,142],"29":[2,142],"30":[2,142],"51":[2,142],"59":[2,142],"62":[2,142],"80":[2,142],"85":[2,142],"95":[2,142],"100":[2,142],"108":[2,142],"110":[2,142],"111":[2,142],"112":[2,142],"117":[2,142],"121":[2,142],"122":[2,142],"123":[2,142],"130":[2,142],"131":[2,142],"132":[2,142],"134":[2,142],"135":[2,142],"137":[2,142],"138":[2,142],"141":[2,142],"142":[2,142],"143":[2,142],"144":[2,142],"145":[2,142],"146":[2,142],"147":[2,142],"148":[2,142],"149":[2,142],"150":[2,142],"151":[2,142],"152":[2,142],"153":[2,142],"154":[2,142],"155":[2,142],"156":[2,142],"157":[2,142],"158":[2,142],"159":[2,142],"160":[2,142],"161":[2,142],"162":[2,142],"163":[2,142],"164":[2,142],"165":[2,142],"166":[2,142],"167":[2,142]},{"1":[2,143],"4":[2,143],"29":[2,143],"30":[2,143],"51":[1,133],"59":[2,143],"62":[1,132],"80":[2,143],"85":[2,143],"95":[2,143],"100":[2,143],"108":[2,143],"109":130,"110":[1,79],"111":[2,143],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,143],"130":[2,143],"131":[2,143],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"121":[2,147],"122":[2,147]},{"31":200,"32":[1,88],"67":201,"68":202,"83":[1,85],"99":[1,203],"118":287,"120":199},{"59":[1,288],"121":[2,152],"122":[2,152]},{"59":[2,149],"121":[2,149],"122":[2,149]},{"59":[2,150],"121":[2,150],"122":[2,150]},{"59":[2,151],"121":[2,151],"122":[2,151]},{"4":[2,121],"8":252,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,121],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,121],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"94":188,"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"100":[2,121],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[2,58],"29":[2,58],"58":289,"59":[1,290],"85":[2,58]},{"4":[2,90],"29":[2,90],"30":[2,90],"59":[2,90],"85":[2,90]},{"4":[2,45],"29":[2,45],"30":[2,45],"48":[1,291],"59":[2,45],"85":[2,45]},{"4":[2,46],"29":[2,46],"30":[2,46],"48":[1,292],"59":[2,46],"85":[2,46]},{"4":[2,49],"29":[2,49],"30":[2,49],"59":[2,49],"85":[2,49]},{"1":[2,6],"4":[2,6],"30":[2,6]},{"1":[2,29],"4":[2,29],"29":[2,29],"30":[2,29],"51":[2,29],"59":[2,29],"62":[2,29],"80":[2,29],"85":[2,29],"95":[2,29],"100":[2,29],"104":[2,29],"105":[2,29],"108":[2,29],"110":[2,29],"111":[2,29],"112":[2,29],"117":[2,29],"121":[2,29],"122":[2,29],"123":[2,29],"126":[2,29],"128":[2,29],"130":[2,29],"131":[2,29],"132":[2,29],"134":[2,29],"135":[2,29],"137":[2,29],"138":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29],"162":[2,29],"163":[2,29],"164":[2,29],"165":[2,29],"166":[2,29],"167":[2,29]},{"1":[2,189],"4":[2,189],"29":[2,189],"30":[2,189],"51":[1,133],"59":[2,189],"62":[2,189],"80":[2,189],"85":[2,189],"95":[2,189],"100":[2,189],"108":[2,189],"109":130,"110":[2,189],"111":[2,189],"112":[2,189],"115":131,"117":[2,189],"121":[2,189],"122":[2,189],"123":[2,189],"130":[2,189],"131":[2,189],"132":[1,127],"134":[2,189],"135":[2,189],"137":[1,94],"138":[1,95],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189],"162":[2,189],"163":[2,189],"164":[2,189],"165":[2,189],"166":[2,189],"167":[2,189]},{"1":[2,190],"4":[2,190],"29":[2,190],"30":[2,190],"51":[1,133],"59":[2,190],"62":[2,190],"80":[2,190],"85":[2,190],"95":[2,190],"100":[2,190],"108":[2,190],"109":130,"110":[2,190],"111":[2,190],"112":[2,190],"115":131,"117":[2,190],"121":[2,190],"122":[2,190],"123":[2,190],"130":[2,190],"131":[2,190],"132":[1,127],"134":[2,190],"135":[2,190],"137":[1,94],"138":[1,95],"141":[2,190],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190],"162":[2,190],"163":[2,190],"164":[2,190],"165":[2,190],"166":[2,190],"167":[2,190]},{"1":[2,191],"4":[2,191],"29":[2,191],"30":[2,191],"51":[1,133],"59":[2,191],"62":[2,191],"80":[2,191],"85":[2,191],"95":[2,191],"100":[2,191],"108":[2,191],"109":130,"110":[2,191],"111":[2,191],"112":[2,191],"115":131,"117":[2,191],"121":[2,191],"122":[2,191],"123":[2,191],"130":[2,191],"131":[2,191],"132":[1,127],"134":[2,191],"135":[2,191],"137":[1,94],"138":[1,95],"141":[2,191],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191],"162":[2,191],"163":[2,191],"164":[2,191],"165":[2,191],"166":[2,191],"167":[2,191]},{"1":[2,192],"4":[2,192],"29":[2,192],"30":[2,192],"51":[1,133],"59":[2,192],"62":[2,192],"80":[2,192],"85":[2,192],"95":[2,192],"100":[2,192],"108":[2,192],"109":130,"110":[2,192],"111":[2,192],"112":[2,192],"115":131,"117":[2,192],"121":[2,192],"122":[2,192],"123":[2,192],"130":[2,192],"131":[2,192],"132":[1,127],"134":[2,192],"135":[2,192],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192],"162":[2,192],"163":[2,192],"164":[2,192],"165":[2,192],"166":[2,192],"167":[2,192]},{"1":[2,193],"4":[2,193],"29":[2,193],"30":[2,193],"51":[1,133],"59":[2,193],"62":[2,193],"80":[2,193],"85":[2,193],"95":[2,193],"100":[2,193],"108":[2,193],"109":130,"110":[2,193],"111":[2,193],"112":[2,193],"115":131,"117":[2,193],"121":[2,193],"122":[2,193],"123":[2,193],"130":[2,193],"131":[2,193],"132":[1,127],"134":[2,193],"135":[2,193],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[2,193],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193],"162":[2,193],"163":[2,193],"164":[2,193],"165":[2,193],"166":[2,193],"167":[2,193]},{"1":[2,194],"4":[2,194],"29":[2,194],"30":[2,194],"51":[1,133],"59":[2,194],"62":[2,194],"80":[2,194],"85":[2,194],"95":[2,194],"100":[2,194],"108":[2,194],"109":130,"110":[2,194],"111":[2,194],"112":[2,194],"115":131,"117":[2,194],"121":[2,194],"122":[2,194],"123":[2,194],"130":[2,194],"131":[2,194],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[2,194],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194],"162":[2,194],"163":[2,194],"164":[2,194],"165":[2,194],"166":[2,194],"167":[2,194]},{"1":[2,195],"4":[2,195],"29":[2,195],"30":[2,195],"51":[1,133],"59":[2,195],"62":[2,195],"80":[2,195],"85":[2,195],"95":[2,195],"100":[2,195],"108":[2,195],"109":130,"110":[2,195],"111":[2,195],"112":[2,195],"115":131,"117":[2,195],"121":[2,195],"122":[2,195],"123":[2,195],"130":[2,195],"131":[2,195],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[2,195],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195],"162":[2,195],"163":[2,195],"164":[2,195],"165":[2,195],"166":[2,195],"167":[2,195]},{"1":[2,196],"4":[2,196],"29":[2,196],"30":[2,196],"51":[1,133],"59":[2,196],"62":[2,196],"80":[2,196],"85":[2,196],"95":[2,196],"100":[2,196],"108":[2,196],"109":130,"110":[2,196],"111":[2,196],"112":[2,196],"115":131,"117":[2,196],"121":[2,196],"122":[2,196],"123":[2,196],"130":[2,196],"131":[2,196],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[2,196],"145":[2,196],"146":[2,196],"147":[2,196],"148":[2,196],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[2,196],"162":[2,196],"163":[2,196],"164":[2,196],"165":[2,196],"166":[2,196],"167":[2,196]},{"1":[2,197],"4":[2,197],"29":[2,197],"30":[2,197],"51":[1,133],"59":[2,197],"62":[2,197],"80":[2,197],"85":[2,197],"95":[2,197],"100":[2,197],"108":[2,197],"109":130,"110":[2,197],"111":[2,197],"112":[2,197],"115":131,"117":[2,197],"121":[2,197],"122":[2,197],"123":[2,197],"130":[2,197],"131":[2,197],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[2,197],"148":[2,197],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[2,197],"162":[2,197],"163":[2,197],"164":[2,197],"165":[2,197],"166":[2,197],"167":[2,197]},{"1":[2,198],"4":[2,198],"29":[2,198],"30":[2,198],"51":[1,133],"59":[2,198],"62":[2,198],"80":[2,198],"85":[2,198],"95":[2,198],"100":[2,198],"108":[2,198],"109":130,"110":[2,198],"111":[2,198],"112":[2,198],"115":131,"117":[2,198],"121":[2,198],"122":[2,198],"123":[2,198],"130":[2,198],"131":[2,198],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[2,198],"148":[2,198],"149":[2,198],"150":[2,198],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[2,198],"162":[2,198],"163":[2,198],"164":[2,198],"165":[2,198],"166":[2,198],"167":[2,198]},{"1":[2,199],"4":[2,199],"29":[2,199],"30":[2,199],"51":[1,133],"59":[2,199],"62":[2,199],"80":[2,199],"85":[2,199],"95":[2,199],"100":[2,199],"108":[2,199],"109":130,"110":[2,199],"111":[2,199],"112":[2,199],"115":131,"117":[2,199],"121":[2,199],"122":[2,199],"123":[2,199],"130":[2,199],"131":[2,199],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[2,199],"148":[2,199],"149":[2,199],"150":[2,199],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[2,199],"162":[2,199],"163":[2,199],"164":[2,199],"165":[2,199],"166":[2,199],"167":[2,199]},{"1":[2,200],"4":[2,200],"29":[2,200],"30":[2,200],"51":[1,133],"59":[2,200],"62":[2,200],"80":[2,200],"85":[2,200],"95":[2,200],"100":[2,200],"108":[2,200],"109":130,"110":[2,200],"111":[2,200],"112":[2,200],"115":131,"117":[2,200],"121":[2,200],"122":[2,200],"123":[2,200],"130":[2,200],"131":[2,200],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[2,200],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[2,200],"162":[2,200],"163":[2,200],"164":[2,200],"165":[2,200],"166":[2,200],"167":[2,200]},{"1":[2,201],"4":[2,201],"29":[2,201],"30":[2,201],"51":[1,133],"59":[2,201],"62":[2,201],"80":[2,201],"85":[2,201],"95":[2,201],"100":[2,201],"108":[2,201],"109":130,"110":[2,201],"111":[2,201],"112":[2,201],"115":131,"117":[2,201],"121":[2,201],"122":[2,201],"123":[2,201],"130":[2,201],"131":[2,201],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[2,201],"151":[2,201],"152":[2,201],"153":[2,201],"154":[2,201],"155":[2,201],"156":[2,201],"157":[2,201],"158":[2,201],"159":[2,201],"160":[2,201],"161":[2,201],"162":[2,201],"163":[2,201],"164":[2,201],"165":[2,201],"166":[2,201],"167":[2,201]},{"1":[2,202],"4":[2,202],"29":[2,202],"30":[2,202],"51":[1,133],"59":[2,202],"62":[2,202],"80":[2,202],"85":[2,202],"95":[2,202],"100":[2,202],"108":[2,202],"109":130,"110":[2,202],"111":[2,202],"112":[2,202],"115":131,"117":[2,202],"121":[2,202],"122":[2,202],"123":[2,202],"130":[2,202],"131":[2,202],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[2,202],"151":[2,202],"152":[2,202],"153":[2,202],"154":[2,202],"155":[2,202],"156":[2,202],"157":[2,202],"158":[2,202],"159":[2,202],"160":[2,202],"161":[2,202],"162":[2,202],"163":[2,202],"164":[2,202],"165":[2,202],"166":[2,202],"167":[2,202]},{"1":[2,203],"4":[2,203],"29":[2,203],"30":[2,203],"51":[1,133],"59":[2,203],"62":[2,203],"80":[2,203],"85":[2,203],"95":[2,203],"100":[2,203],"108":[2,203],"109":130,"110":[2,203],"111":[2,203],"112":[2,203],"115":131,"117":[2,203],"121":[2,203],"122":[2,203],"123":[2,203],"130":[2,203],"131":[2,203],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[2,203],"151":[2,203],"152":[2,203],"153":[2,203],"154":[2,203],"155":[2,203],"156":[2,203],"157":[2,203],"158":[2,203],"159":[2,203],"160":[2,203],"161":[2,203],"162":[2,203],"163":[2,203],"164":[2,203],"165":[2,203],"166":[2,203],"167":[2,203]},{"1":[2,204],"4":[2,204],"29":[2,204],"30":[2,204],"51":[1,133],"59":[2,204],"62":[2,204],"80":[2,204],"85":[2,204],"95":[2,204],"100":[2,204],"108":[2,204],"109":130,"110":[2,204],"111":[2,204],"112":[2,204],"115":131,"117":[2,204],"121":[2,204],"122":[2,204],"123":[2,204],"130":[2,204],"131":[2,204],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[2,204],"155":[2,204],"156":[2,204],"157":[2,204],"158":[2,204],"159":[2,204],"160":[2,204],"161":[2,204],"162":[2,204],"163":[2,204],"164":[2,204],"165":[2,204],"166":[2,204],"167":[1,124]},{"1":[2,205],"4":[2,205],"29":[2,205],"30":[2,205],"51":[1,133],"59":[2,205],"62":[2,205],"80":[2,205],"85":[2,205],"95":[2,205],"100":[2,205],"108":[2,205],"109":130,"110":[2,205],"111":[2,205],"112":[2,205],"115":131,"117":[2,205],"121":[2,205],"122":[2,205],"123":[2,205],"130":[2,205],"131":[2,205],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[2,205],"155":[2,205],"156":[2,205],"157":[2,205],"158":[2,205],"159":[2,205],"160":[2,205],"161":[2,205],"162":[2,205],"163":[2,205],"164":[2,205],"165":[2,205],"166":[2,205],"167":[1,124]},{"1":[2,206],"4":[2,206],"29":[2,206],"30":[2,206],"51":[1,133],"59":[2,206],"62":[2,206],"80":[2,206],"85":[2,206],"95":[2,206],"100":[2,206],"108":[2,206],"109":130,"110":[2,206],"111":[2,206],"112":[2,206],"115":131,"117":[2,206],"121":[2,206],"122":[2,206],"123":[2,206],"130":[2,206],"131":[2,206],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[2,206],"157":[2,206],"158":[2,206],"159":[2,206],"160":[2,206],"161":[2,206],"162":[2,206],"163":[2,206],"164":[2,206],"165":[2,206],"166":[2,206],"167":[1,124]},{"1":[2,207],"4":[2,207],"29":[2,207],"30":[2,207],"51":[1,133],"59":[2,207],"62":[2,207],"80":[2,207],"85":[2,207],"95":[2,207],"100":[2,207],"108":[2,207],"109":130,"110":[2,207],"111":[2,207],"112":[2,207],"115":131,"117":[2,207],"121":[2,207],"122":[2,207],"123":[2,207],"130":[2,207],"131":[2,207],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[2,207],"157":[2,207],"158":[2,207],"159":[2,207],"160":[2,207],"161":[2,207],"162":[2,207],"163":[2,207],"164":[2,207],"165":[2,207],"166":[2,207],"167":[1,124]},{"1":[2,208],"4":[2,208],"29":[2,208],"30":[2,208],"51":[1,133],"59":[2,208],"62":[2,208],"80":[2,208],"85":[2,208],"95":[2,208],"100":[2,208],"108":[2,208],"109":130,"110":[2,208],"111":[2,208],"112":[2,208],"115":131,"117":[2,208],"121":[2,208],"122":[2,208],"123":[2,208],"130":[2,208],"131":[2,208],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[2,208],"157":[2,208],"158":[2,208],"159":[2,208],"160":[2,208],"161":[2,208],"162":[2,208],"163":[2,208],"164":[2,208],"165":[2,208],"166":[2,208],"167":[1,124]},{"1":[2,209],"4":[2,209],"29":[2,209],"30":[2,209],"51":[1,133],"59":[2,209],"62":[2,209],"80":[2,209],"85":[2,209],"95":[2,209],"100":[2,209],"108":[2,209],"109":130,"110":[2,209],"111":[2,209],"112":[2,209],"115":131,"117":[2,209],"121":[2,209],"122":[2,209],"123":[2,209],"130":[2,209],"131":[2,209],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,210],"4":[2,210],"29":[2,210],"30":[2,210],"51":[1,133],"59":[2,210],"62":[2,210],"80":[2,210],"85":[2,210],"95":[2,210],"100":[2,210],"108":[2,210],"109":130,"110":[2,210],"111":[2,210],"112":[2,210],"115":131,"117":[2,210],"121":[2,210],"122":[2,210],"123":[2,210],"130":[2,210],"131":[2,210],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,211],"4":[2,211],"29":[2,211],"30":[2,211],"51":[1,133],"59":[2,211],"62":[2,211],"80":[2,211],"85":[2,211],"95":[2,211],"100":[2,211],"108":[2,211],"109":130,"110":[2,211],"111":[2,211],"112":[2,211],"115":131,"117":[2,211],"121":[2,211],"122":[2,211],"123":[2,211],"130":[2,211],"131":[2,211],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,212],"4":[2,212],"29":[2,212],"30":[2,212],"51":[1,133],"59":[2,212],"62":[2,212],"80":[2,212],"85":[2,212],"95":[2,212],"100":[2,212],"108":[2,212],"109":130,"110":[2,212],"111":[2,212],"112":[2,212],"115":131,"117":[2,212],"121":[2,212],"122":[2,212],"123":[2,212],"130":[2,212],"131":[2,212],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,213],"4":[2,213],"29":[2,213],"30":[2,213],"51":[1,133],"59":[2,213],"62":[2,213],"80":[2,213],"85":[2,213],"95":[2,213],"100":[2,213],"108":[2,213],"109":130,"110":[2,213],"111":[2,213],"112":[2,213],"115":131,"117":[2,213],"121":[2,213],"122":[2,213],"123":[2,213],"130":[2,213],"131":[2,213],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,214],"4":[2,214],"29":[2,214],"30":[2,214],"51":[1,133],"59":[2,214],"62":[2,214],"80":[2,214],"85":[2,214],"95":[2,214],"100":[2,214],"108":[2,214],"109":130,"110":[2,214],"111":[2,214],"112":[2,214],"115":131,"117":[2,214],"121":[2,214],"122":[2,214],"123":[2,214],"130":[2,214],"131":[2,214],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,215],"4":[2,215],"29":[2,215],"30":[2,215],"51":[1,133],"59":[2,215],"62":[2,215],"80":[2,215],"85":[2,215],"95":[2,215],"100":[2,215],"108":[2,215],"109":130,"110":[2,215],"111":[2,215],"112":[2,215],"115":131,"117":[2,215],"121":[2,215],"122":[2,215],"123":[2,215],"130":[2,215],"131":[2,215],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,216],"4":[2,216],"29":[2,216],"30":[2,216],"51":[1,133],"59":[2,216],"62":[2,216],"80":[2,216],"85":[2,216],"95":[2,216],"100":[2,216],"108":[2,216],"109":130,"110":[2,216],"111":[2,216],"112":[2,216],"115":131,"117":[2,216],"121":[2,216],"122":[2,216],"123":[2,216],"130":[2,216],"131":[2,216],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,217],"4":[2,217],"29":[2,217],"30":[2,217],"51":[1,133],"59":[2,217],"62":[2,217],"80":[2,217],"85":[2,217],"95":[2,217],"100":[2,217],"108":[2,217],"109":130,"110":[2,217],"111":[2,217],"112":[2,217],"115":131,"117":[2,217],"121":[2,217],"122":[2,217],"123":[2,217],"130":[2,217],"131":[2,217],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[2,217],"155":[2,217],"156":[2,217],"157":[2,217],"158":[2,217],"159":[2,217],"160":[2,217],"161":[2,217],"162":[2,217],"163":[2,217],"164":[2,217],"165":[2,217],"166":[2,217],"167":[1,124]},{"1":[2,218],"4":[2,218],"29":[2,218],"30":[2,218],"51":[1,133],"59":[2,218],"62":[1,132],"80":[2,218],"85":[2,218],"95":[2,218],"100":[2,218],"108":[2,218],"109":130,"110":[2,218],"111":[2,218],"112":[2,218],"115":131,"117":[2,218],"121":[1,125],"122":[1,126],"123":[2,218],"130":[2,218],"131":[2,218],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,219],"4":[2,219],"29":[2,219],"30":[2,219],"51":[1,133],"59":[2,219],"62":[1,132],"80":[2,219],"85":[2,219],"95":[2,219],"100":[2,219],"108":[2,219],"109":130,"110":[2,219],"111":[2,219],"112":[2,219],"115":131,"117":[2,219],"121":[1,125],"122":[1,126],"123":[2,219],"130":[2,219],"131":[2,219],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"8":293,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":294,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,175],"4":[2,175],"29":[2,175],"30":[2,175],"51":[1,133],"59":[2,175],"62":[1,132],"80":[2,175],"85":[2,175],"95":[2,175],"100":[2,175],"108":[2,175],"109":130,"110":[1,79],"111":[2,175],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,175],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,177],"4":[2,177],"29":[2,177],"30":[2,177],"51":[1,133],"59":[2,177],"62":[1,132],"80":[2,177],"85":[2,177],"95":[2,177],"100":[2,177],"108":[2,177],"109":130,"110":[1,79],"111":[2,177],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,177],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,145],"4":[2,145],"29":[2,145],"30":[2,145],"51":[2,145],"59":[2,145],"62":[2,145],"80":[2,145],"85":[2,145],"95":[2,145],"100":[2,145],"108":[2,145],"110":[2,145],"111":[2,145],"112":[2,145],"117":[2,145],"121":[2,145],"122":[2,145],"123":[2,145],"130":[2,145],"131":[2,145],"132":[2,145],"134":[2,145],"135":[2,145],"137":[2,145],"138":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"146":[2,145],"147":[2,145],"148":[2,145],"149":[2,145],"150":[2,145],"151":[2,145],"152":[2,145],"153":[2,145],"154":[2,145],"155":[2,145],"156":[2,145],"157":[2,145],"158":[2,145],"159":[2,145],"160":[2,145],"161":[2,145],"162":[2,145],"163":[2,145],"164":[2,145],"165":[2,145],"166":[2,145],"167":[2,145]},{"62":[1,295]},{"1":[2,174],"4":[2,174],"29":[2,174],"30":[2,174],"51":[1,133],"59":[2,174],"62":[1,132],"80":[2,174],"85":[2,174],"95":[2,174],"100":[2,174],"108":[2,174],"109":130,"110":[1,79],"111":[2,174],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,174],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,176],"4":[2,176],"29":[2,176],"30":[2,176],"51":[1,133],"59":[2,176],"62":[1,132],"80":[2,176],"85":[2,176],"95":[2,176],"100":[2,176],"108":[2,176],"109":130,"110":[1,79],"111":[2,176],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,176],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,144],"4":[2,144],"29":[2,144],"30":[2,144],"51":[2,144],"59":[2,144],"62":[2,144],"80":[2,144],"85":[2,144],"95":[2,144],"100":[2,144],"108":[2,144],"110":[2,144],"111":[2,144],"112":[2,144],"117":[2,144],"121":[2,144],"122":[2,144],"123":[2,144],"130":[2,144],"131":[2,144],"132":[2,144],"134":[2,144],"135":[2,144],"137":[2,144],"138":[2,144],"141":[2,144],"142":[2,144],"143":[2,144],"144":[2,144],"145":[2,144],"146":[2,144],"147":[2,144],"148":[2,144],"149":[2,144],"150":[2,144],"151":[2,144],"152":[2,144],"153":[2,144],"154":[2,144],"155":[2,144],"156":[2,144],"157":[2,144],"158":[2,144],"159":[2,144],"160":[2,144],"161":[2,144],"162":[2,144],"163":[2,144],"164":[2,144],"165":[2,144],"166":[2,144],"167":[2,144]},{"4":[2,58],"29":[2,58],"58":296,"59":[1,282],"95":[2,58]},{"4":[2,122],"29":[2,122],"30":[2,122],"51":[1,133],"59":[2,122],"62":[1,132],"95":[2,122],"100":[2,122],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,79],"4":[2,79],"29":[2,79],"30":[2,79],"46":[2,79],"51":[2,79],"59":[2,79],"62":[2,79],"73":[2,79],"74":[2,79],"75":[2,79],"76":[2,79],"79":[2,79],"80":[2,79],"81":[2,79],"82":[2,79],"85":[2,79],"87":[2,79],"93":[2,79],"95":[2,79],"100":[2,79],"108":[2,79],"110":[2,79],"111":[2,79],"112":[2,79],"117":[2,79],"121":[2,79],"122":[2,79],"123":[2,79],"130":[2,79],"131":[2,79],"132":[2,79],"134":[2,79],"135":[2,79],"137":[2,79],"138":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79],"162":[2,79],"163":[2,79],"164":[2,79],"165":[2,79],"166":[2,79],"167":[2,79]},{"1":[2,80],"4":[2,80],"29":[2,80],"30":[2,80],"46":[2,80],"51":[2,80],"59":[2,80],"62":[2,80],"73":[2,80],"74":[2,80],"75":[2,80],"76":[2,80],"79":[2,80],"80":[2,80],"81":[2,80],"82":[2,80],"85":[2,80],"87":[2,80],"93":[2,80],"95":[2,80],"100":[2,80],"108":[2,80],"110":[2,80],"111":[2,80],"112":[2,80],"117":[2,80],"121":[2,80],"122":[2,80],"123":[2,80],"130":[2,80],"131":[2,80],"132":[2,80],"134":[2,80],"135":[2,80],"137":[2,80],"138":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80],"162":[2,80],"163":[2,80],"164":[2,80],"165":[2,80],"166":[2,80],"167":[2,80]},{"1":[2,82],"4":[2,82],"29":[2,82],"30":[2,82],"46":[2,82],"51":[2,82],"59":[2,82],"62":[2,82],"73":[2,82],"74":[2,82],"75":[2,82],"76":[2,82],"79":[2,82],"80":[2,82],"81":[2,82],"82":[2,82],"85":[2,82],"87":[2,82],"93":[2,82],"95":[2,82],"100":[2,82],"108":[2,82],"110":[2,82],"111":[2,82],"112":[2,82],"117":[2,82],"121":[2,82],"122":[2,82],"123":[2,82],"130":[2,82],"131":[2,82],"132":[2,82],"134":[2,82],"135":[2,82],"137":[2,82],"138":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82],"162":[2,82],"163":[2,82],"164":[2,82],"165":[2,82],"166":[2,82],"167":[2,82]},{"51":[1,133],"62":[1,298],"80":[1,297],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,86],"4":[2,86],"29":[2,86],"30":[2,86],"46":[2,86],"51":[2,86],"59":[2,86],"62":[2,86],"73":[2,86],"74":[2,86],"75":[2,86],"76":[2,86],"79":[2,86],"80":[2,86],"81":[2,86],"82":[2,86],"85":[2,86],"87":[2,86],"93":[2,86],"95":[2,86],"100":[2,86],"108":[2,86],"110":[2,86],"111":[2,86],"112":[2,86],"117":[2,86],"121":[2,86],"122":[2,86],"123":[2,86],"130":[2,86],"131":[2,86],"132":[2,86],"134":[2,86],"135":[2,86],"137":[2,86],"138":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"148":[2,86],"149":[2,86],"150":[2,86],"151":[2,86],"152":[2,86],"153":[2,86],"154":[2,86],"155":[2,86],"156":[2,86],"157":[2,86],"158":[2,86],"159":[2,86],"160":[2,86],"161":[2,86],"162":[2,86],"163":[2,86],"164":[2,86],"165":[2,86],"166":[2,86],"167":[2,86]},{"8":299,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,87],"4":[2,87],"29":[2,87],"30":[2,87],"46":[2,87],"51":[2,87],"59":[2,87],"62":[2,87],"73":[2,87],"74":[2,87],"75":[2,87],"76":[2,87],"79":[2,87],"80":[2,87],"81":[2,87],"82":[2,87],"85":[2,87],"87":[2,87],"93":[2,87],"95":[2,87],"100":[2,87],"108":[2,87],"110":[2,87],"111":[2,87],"112":[2,87],"117":[2,87],"121":[2,87],"122":[2,87],"123":[2,87],"130":[2,87],"131":[2,87],"132":[2,87],"134":[2,87],"135":[2,87],"137":[2,87],"138":[2,87],"141":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87],"148":[2,87],"149":[2,87],"150":[2,87],"151":[2,87],"152":[2,87],"153":[2,87],"154":[2,87],"155":[2,87],"156":[2,87],"157":[2,87],"158":[2,87],"159":[2,87],"160":[2,87],"161":[2,87],"162":[2,87],"163":[2,87],"164":[2,87],"165":[2,87],"166":[2,87],"167":[2,87]},{"1":[2,44],"4":[2,44],"29":[2,44],"30":[2,44],"51":[1,133],"59":[2,44],"62":[1,132],"80":[2,44],"85":[2,44],"95":[2,44],"100":[2,44],"108":[2,44],"109":130,"110":[1,79],"111":[2,44],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,44],"130":[2,44],"131":[2,44],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"55":300,"56":[1,75],"57":[1,76]},{"60":301,"61":[1,159]},{"62":[1,302]},{"8":303,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,172],"4":[2,172],"29":[2,172],"30":[2,172],"51":[2,172],"59":[2,172],"62":[2,172],"80":[2,172],"85":[2,172],"95":[2,172],"100":[2,172],"108":[2,172],"110":[2,172],"111":[2,172],"112":[2,172],"117":[2,172],"121":[2,172],"122":[2,172],"123":[2,172],"126":[2,172],"130":[2,172],"131":[2,172],"132":[2,172],"134":[2,172],"135":[2,172],"137":[2,172],"138":[2,172],"141":[2,172],"142":[2,172],"143":[2,172],"144":[2,172],"145":[2,172],"146":[2,172],"147":[2,172],"148":[2,172],"149":[2,172],"150":[2,172],"151":[2,172],"152":[2,172],"153":[2,172],"154":[2,172],"155":[2,172],"156":[2,172],"157":[2,172],"158":[2,172],"159":[2,172],"160":[2,172],"161":[2,172],"162":[2,172],"163":[2,172],"164":[2,172],"165":[2,172],"166":[2,172],"167":[2,172]},{"1":[2,128],"4":[2,128],"29":[2,128],"30":[2,128],"51":[2,128],"59":[2,128],"62":[2,128],"80":[2,128],"85":[2,128],"95":[2,128],"100":[2,128],"104":[1,304],"108":[2,128],"110":[2,128],"111":[2,128],"112":[2,128],"117":[2,128],"121":[2,128],"122":[2,128],"123":[2,128],"130":[2,128],"131":[2,128],"132":[2,128],"134":[2,128],"135":[2,128],"137":[2,128],"138":[2,128],"141":[2,128],"142":[2,128],"143":[2,128],"144":[2,128],"145":[2,128],"146":[2,128],"147":[2,128],"148":[2,128],"149":[2,128],"150":[2,128],"151":[2,128],"152":[2,128],"153":[2,128],"154":[2,128],"155":[2,128],"156":[2,128],"157":[2,128],"158":[2,128],"159":[2,128],"160":[2,128],"161":[2,128],"162":[2,128],"163":[2,128],"164":[2,128],"165":[2,128],"166":[2,128],"167":[2,128]},{"4":[1,161],"6":305,"29":[1,6]},{"31":306,"32":[1,88]},{"1":[2,146],"4":[2,146],"29":[2,146],"30":[2,146],"51":[2,146],"59":[2,146],"62":[2,146],"80":[2,146],"85":[2,146],"95":[2,146],"100":[2,146],"108":[2,146],"110":[2,146],"111":[2,146],"112":[2,146],"117":[2,146],"121":[2,146],"122":[2,146],"123":[2,146],"130":[2,146],"131":[2,146],"132":[2,146],"134":[2,146],"135":[2,146],"137":[2,146],"138":[2,146],"141":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"146":[2,146],"147":[2,146],"148":[2,146],"149":[2,146],"150":[2,146],"151":[2,146],"152":[2,146],"153":[2,146],"154":[2,146],"155":[2,146],"156":[2,146],"157":[2,146],"158":[2,146],"159":[2,146],"160":[2,146],"161":[2,146],"162":[2,146],"163":[2,146],"164":[2,146],"165":[2,146],"166":[2,146],"167":[2,146]},{"1":[2,154],"4":[2,154],"29":[2,154],"30":[2,154],"51":[1,133],"59":[2,154],"62":[1,132],"80":[2,154],"85":[2,154],"95":[2,154],"100":[2,154],"108":[2,154],"109":130,"110":[2,154],"111":[1,307],"112":[2,154],"115":131,"117":[2,154],"121":[1,125],"122":[1,126],"123":[1,308],"130":[2,154],"131":[2,154],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,155],"4":[2,155],"29":[2,155],"30":[2,155],"51":[1,133],"59":[2,155],"62":[1,132],"80":[2,155],"85":[2,155],"95":[2,155],"100":[2,155],"108":[2,155],"109":130,"110":[2,155],"111":[1,309],"112":[2,155],"115":131,"117":[2,155],"121":[1,125],"122":[1,126],"123":[2,155],"130":[2,155],"131":[2,155],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"125":310,"127":274,"128":[1,275]},{"30":[1,311],"126":[1,312],"127":313,"128":[1,275]},{"30":[2,165],"126":[2,165],"128":[2,165]},{"8":315,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"101":314,"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,107],"4":[2,107],"29":[2,107],"30":[2,107],"51":[2,107],"59":[2,107],"62":[2,107],"64":139,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,107],"81":[1,148],"82":[1,149],"85":[2,107],"92":138,"93":[1,140],"95":[2,107],"100":[2,107],"108":[2,107],"110":[2,107],"111":[2,107],"112":[2,107],"117":[2,107],"121":[2,107],"122":[2,107],"123":[2,107],"130":[2,107],"131":[2,107],"132":[2,107],"134":[2,107],"135":[2,107],"137":[2,107],"138":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107],"161":[2,107],"162":[2,107],"163":[2,107],"164":[2,107],"165":[2,107],"166":[2,107],"167":[2,107]},{"14":316,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":155,"63":156,"65":183,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"97":[1,72],"98":[1,73],"99":[1,71],"107":[1,70]},{"4":[2,100],"28":208,"30":[2,100],"31":206,"32":[1,88],"33":207,"34":[1,86],"35":[1,87],"47":319,"50":[1,56],"66":320,"88":317,"89":318,"98":[1,321]},{"1":[2,133],"4":[2,133],"29":[2,133],"30":[2,133],"51":[2,133],"59":[2,133],"62":[2,133],"73":[2,133],"74":[2,133],"75":[2,133],"76":[2,133],"79":[2,133],"80":[2,133],"81":[2,133],"82":[2,133],"85":[2,133],"93":[2,133],"95":[2,133],"100":[2,133],"108":[2,133],"110":[2,133],"111":[2,133],"112":[2,133],"117":[2,133],"121":[2,133],"122":[2,133],"123":[2,133],"130":[2,133],"131":[2,133],"132":[2,133],"134":[2,133],"135":[2,133],"137":[2,133],"138":[2,133],"141":[2,133],"142":[2,133],"143":[2,133],"144":[2,133],"145":[2,133],"146":[2,133],"147":[2,133],"148":[2,133],"149":[2,133],"150":[2,133],"151":[2,133],"152":[2,133],"153":[2,133],"154":[2,133],"155":[2,133],"156":[2,133],"157":[2,133],"158":[2,133],"159":[2,133],"160":[2,133],"161":[2,133],"162":[2,133],"163":[2,133],"164":[2,133],"165":[2,133],"166":[2,133],"167":[2,133]},{"62":[1,322]},{"4":[1,324],"29":[1,325],"100":[1,323]},{"4":[2,59],"8":326,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,59],"30":[2,59],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"95":[2,59],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"100":[2,59],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,169],"4":[2,169],"29":[2,169],"30":[2,169],"51":[2,169],"59":[2,169],"62":[2,169],"80":[2,169],"85":[2,169],"95":[2,169],"100":[2,169],"108":[2,169],"110":[2,169],"111":[2,169],"112":[2,169],"117":[2,169],"121":[2,169],"122":[2,169],"123":[2,169],"126":[2,169],"130":[2,169],"131":[2,169],"132":[2,169],"134":[2,169],"135":[2,169],"137":[2,169],"138":[2,169],"141":[2,169],"142":[2,169],"143":[2,169],"144":[2,169],"145":[2,169],"146":[2,169],"147":[2,169],"148":[2,169],"149":[2,169],"150":[2,169],"151":[2,169],"152":[2,169],"153":[2,169],"154":[2,169],"155":[2,169],"156":[2,169],"157":[2,169],"158":[2,169],"159":[2,169],"160":[2,169],"161":[2,169],"162":[2,169],"163":[2,169],"164":[2,169],"165":[2,169],"166":[2,169],"167":[2,169]},{"1":[2,170],"4":[2,170],"29":[2,170],"30":[2,170],"51":[2,170],"59":[2,170],"62":[2,170],"80":[2,170],"85":[2,170],"95":[2,170],"100":[2,170],"108":[2,170],"110":[2,170],"111":[2,170],"112":[2,170],"117":[2,170],"121":[2,170],"122":[2,170],"123":[2,170],"126":[2,170],"130":[2,170],"131":[2,170],"132":[2,170],"134":[2,170],"135":[2,170],"137":[2,170],"138":[2,170],"141":[2,170],"142":[2,170],"143":[2,170],"144":[2,170],"145":[2,170],"146":[2,170],"147":[2,170],"148":[2,170],"149":[2,170],"150":[2,170],"151":[2,170],"152":[2,170],"153":[2,170],"154":[2,170],"155":[2,170],"156":[2,170],"157":[2,170],"158":[2,170],"159":[2,170],"160":[2,170],"161":[2,170],"162":[2,170],"163":[2,170],"164":[2,170],"165":[2,170],"166":[2,170],"167":[2,170]},{"8":327,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":328,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"121":[2,148],"122":[2,148]},{"31":200,"32":[1,88],"67":201,"68":202,"83":[1,85],"99":[1,203],"120":329},{"4":[1,331],"29":[1,332],"85":[1,330]},{"4":[2,59],"28":208,"29":[2,59],"30":[2,59],"31":206,"32":[1,88],"33":207,"34":[1,86],"35":[1,87],"47":333,"50":[1,56],"85":[2,59]},{"8":334,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":335,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,220],"4":[2,220],"29":[2,220],"30":[2,220],"51":[1,133],"59":[2,220],"62":[2,220],"80":[2,220],"85":[2,220],"95":[2,220],"100":[2,220],"108":[2,220],"109":130,"110":[2,220],"111":[2,220],"112":[2,220],"115":131,"117":[2,220],"121":[2,220],"122":[2,220],"123":[2,220],"130":[2,220],"131":[2,220],"134":[2,220],"135":[2,220],"141":[2,220],"142":[2,220],"143":[2,220],"144":[2,220],"145":[2,220],"146":[2,220],"147":[2,220],"148":[2,220],"149":[2,220],"150":[2,220],"151":[2,220],"152":[2,220],"153":[2,220],"154":[2,220],"155":[2,220],"156":[2,220],"157":[2,220],"158":[2,220],"159":[2,220],"160":[2,220],"161":[2,220],"162":[2,220],"163":[2,220],"164":[2,220],"165":[2,220],"166":[2,220],"167":[2,220]},{"1":[2,221],"4":[2,221],"29":[2,221],"30":[2,221],"51":[1,133],"59":[2,221],"62":[2,221],"80":[2,221],"85":[2,221],"95":[2,221],"100":[2,221],"108":[2,221],"109":130,"110":[2,221],"111":[2,221],"112":[2,221],"115":131,"117":[2,221],"121":[2,221],"122":[2,221],"123":[2,221],"130":[2,221],"131":[2,221],"134":[2,221],"135":[2,221],"141":[2,221],"142":[2,221],"143":[2,221],"144":[2,221],"145":[2,221],"146":[2,221],"147":[2,221],"148":[2,221],"149":[2,221],"150":[2,221],"151":[2,221],"152":[2,221],"153":[2,221],"154":[2,221],"155":[2,221],"156":[2,221],"157":[2,221],"158":[2,221],"159":[2,221],"160":[2,221],"161":[2,221],"162":[2,221],"163":[2,221],"164":[2,221],"165":[2,221],"166":[2,221],"167":[2,221]},{"1":[2,65],"4":[2,65],"29":[2,65],"30":[2,65],"51":[2,65],"59":[2,65],"62":[2,65],"80":[2,65],"85":[2,65],"95":[2,65],"100":[2,65],"108":[2,65],"110":[2,65],"111":[2,65],"112":[2,65],"117":[2,65],"121":[2,65],"122":[2,65],"123":[2,65],"130":[2,65],"131":[2,65],"132":[2,65],"134":[2,65],"135":[2,65],"137":[2,65],"138":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65],"164":[2,65],"165":[2,65],"166":[2,65],"167":[2,65]},{"4":[1,324],"29":[1,325],"95":[1,336]},{"1":[2,85],"4":[2,85],"29":[2,85],"30":[2,85],"46":[2,85],"51":[2,85],"59":[2,85],"62":[2,85],"73":[2,85],"74":[2,85],"75":[2,85],"76":[2,85],"79":[2,85],"80":[2,85],"81":[2,85],"82":[2,85],"85":[2,85],"87":[2,85],"93":[2,85],"95":[2,85],"100":[2,85],"108":[2,85],"110":[2,85],"111":[2,85],"112":[2,85],"117":[2,85],"121":[2,85],"122":[2,85],"123":[2,85],"130":[2,85],"131":[2,85],"132":[2,85],"134":[2,85],"135":[2,85],"137":[2,85],"138":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"148":[2,85],"149":[2,85],"150":[2,85],"151":[2,85],"152":[2,85],"153":[2,85],"154":[2,85],"155":[2,85],"156":[2,85],"157":[2,85],"158":[2,85],"159":[2,85],"160":[2,85],"161":[2,85],"162":[2,85],"163":[2,85],"164":[2,85],"165":[2,85],"166":[2,85],"167":[2,85]},{"62":[1,337]},{"51":[1,133],"62":[1,132],"80":[1,297],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[1,161],"6":338,"29":[1,6]},{"54":[2,62],"59":[2,62],"62":[1,263]},{"62":[1,339]},{"4":[1,161],"6":340,"29":[1,6],"51":[1,133],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[1,161],"6":341,"29":[1,6]},{"1":[2,129],"4":[2,129],"29":[2,129],"30":[2,129],"51":[2,129],"59":[2,129],"62":[2,129],"80":[2,129],"85":[2,129],"95":[2,129],"100":[2,129],"108":[2,129],"110":[2,129],"111":[2,129],"112":[2,129],"117":[2,129],"121":[2,129],"122":[2,129],"123":[2,129],"130":[2,129],"131":[2,129],"132":[2,129],"134":[2,129],"135":[2,129],"137":[2,129],"138":[2,129],"141":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129],"149":[2,129],"150":[2,129],"151":[2,129],"152":[2,129],"153":[2,129],"154":[2,129],"155":[2,129],"156":[2,129],"157":[2,129],"158":[2,129],"159":[2,129],"160":[2,129],"161":[2,129],"162":[2,129],"163":[2,129],"164":[2,129],"165":[2,129],"166":[2,129],"167":[2,129]},{"4":[1,161],"6":342,"29":[1,6]},{"8":343,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":344,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":345,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"30":[1,346],"126":[1,347],"127":313,"128":[1,275]},{"1":[2,163],"4":[2,163],"29":[2,163],"30":[2,163],"51":[2,163],"59":[2,163],"62":[2,163],"80":[2,163],"85":[2,163],"95":[2,163],"100":[2,163],"108":[2,163],"110":[2,163],"111":[2,163],"112":[2,163],"117":[2,163],"121":[2,163],"122":[2,163],"123":[2,163],"130":[2,163],"131":[2,163],"132":[2,163],"134":[2,163],"135":[2,163],"137":[2,163],"138":[2,163],"141":[2,163],"142":[2,163],"143":[2,163],"144":[2,163],"145":[2,163],"146":[2,163],"147":[2,163],"148":[2,163],"149":[2,163],"150":[2,163],"151":[2,163],"152":[2,163],"153":[2,163],"154":[2,163],"155":[2,163],"156":[2,163],"157":[2,163],"158":[2,163],"159":[2,163],"160":[2,163],"161":[2,163],"162":[2,163],"163":[2,163],"164":[2,163],"165":[2,163],"166":[2,163],"167":[2,163]},{"4":[1,161],"6":348,"29":[1,6]},{"30":[2,166],"126":[2,166],"128":[2,166]},{"4":[1,161],"6":349,"29":[1,6],"59":[1,350]},{"4":[2,126],"29":[2,126],"51":[1,133],"59":[2,126],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,95],"4":[2,95],"29":[1,351],"30":[2,95],"51":[2,95],"59":[2,95],"62":[2,95],"64":139,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,95],"81":[1,148],"82":[1,149],"85":[2,95],"92":138,"93":[1,140],"95":[2,95],"100":[2,95],"108":[2,95],"110":[2,95],"111":[2,95],"112":[2,95],"117":[2,95],"121":[2,95],"122":[2,95],"123":[2,95],"130":[2,95],"131":[2,95],"132":[2,95],"134":[2,95],"135":[2,95],"137":[2,95],"138":[2,95],"141":[2,95],"142":[2,95],"143":[2,95],"144":[2,95],"145":[2,95],"146":[2,95],"147":[2,95],"148":[2,95],"149":[2,95],"150":[2,95],"151":[2,95],"152":[2,95],"153":[2,95],"154":[2,95],"155":[2,95],"156":[2,95],"157":[2,95],"158":[2,95],"159":[2,95],"160":[2,95],"161":[2,95],"162":[2,95],"163":[2,95],"164":[2,95],"165":[2,95],"166":[2,95],"167":[2,95]},{"4":[1,353],"30":[1,352]},{"4":[2,101],"30":[2,101]},{"4":[2,98],"30":[2,98]},{"48":[1,354]},{"31":189,"32":[1,88]},{"8":355,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"62":[1,356],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,120],"4":[2,120],"29":[2,120],"30":[2,120],"46":[2,120],"51":[2,120],"59":[2,120],"62":[2,120],"73":[2,120],"74":[2,120],"75":[2,120],"76":[2,120],"79":[2,120],"80":[2,120],"81":[2,120],"82":[2,120],"85":[2,120],"93":[2,120],"95":[2,120],"100":[2,120],"108":[2,120],"110":[2,120],"111":[2,120],"112":[2,120],"117":[2,120],"121":[2,120],"122":[2,120],"123":[2,120],"130":[2,120],"131":[2,120],"132":[2,120],"134":[2,120],"135":[2,120],"137":[2,120],"138":[2,120],"141":[2,120],"142":[2,120],"143":[2,120],"144":[2,120],"145":[2,120],"146":[2,120],"147":[2,120],"148":[2,120],"149":[2,120],"150":[2,120],"151":[2,120],"152":[2,120],"153":[2,120],"154":[2,120],"155":[2,120],"156":[2,120],"157":[2,120],"158":[2,120],"159":[2,120],"160":[2,120],"161":[2,120],"162":[2,120],"163":[2,120],"164":[2,120],"165":[2,120],"166":[2,120],"167":[2,120]},{"8":357,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[2,121],"8":252,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,121],"30":[2,121],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,121],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"94":358,"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[2,123],"29":[2,123],"30":[2,123],"51":[1,133],"59":[2,123],"62":[1,132],"95":[2,123],"100":[2,123],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,135],"4":[2,135],"29":[2,135],"30":[2,135],"51":[1,133],"59":[2,135],"62":[1,132],"80":[2,135],"85":[2,135],"95":[2,135],"100":[2,135],"108":[2,135],"109":130,"110":[1,79],"111":[2,135],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,135],"130":[2,135],"131":[2,135],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,137],"4":[2,137],"29":[2,137],"30":[2,137],"51":[1,133],"59":[2,137],"62":[1,132],"80":[2,137],"85":[2,137],"95":[2,137],"100":[2,137],"108":[2,137],"109":130,"110":[1,79],"111":[2,137],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,137],"130":[2,137],"131":[2,137],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"121":[2,153],"122":[2,153]},{"1":[2,88],"4":[2,88],"29":[2,88],"30":[2,88],"46":[2,88],"51":[2,88],"59":[2,88],"62":[2,88],"73":[2,88],"74":[2,88],"75":[2,88],"76":[2,88],"79":[2,88],"80":[2,88],"81":[2,88],"82":[2,88],"85":[2,88],"93":[2,88],"95":[2,88],"100":[2,88],"108":[2,88],"110":[2,88],"111":[2,88],"112":[2,88],"117":[2,88],"121":[2,88],"122":[2,88],"123":[2,88],"130":[2,88],"131":[2,88],"132":[2,88],"134":[2,88],"135":[2,88],"137":[2,88],"138":[2,88],"141":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88],"148":[2,88],"149":[2,88],"150":[2,88],"151":[2,88],"152":[2,88],"153":[2,88],"154":[2,88],"155":[2,88],"156":[2,88],"157":[2,88],"158":[2,88],"159":[2,88],"160":[2,88],"161":[2,88],"162":[2,88],"163":[2,88],"164":[2,88],"165":[2,88],"166":[2,88],"167":[2,88]},{"28":208,"31":206,"32":[1,88],"33":207,"34":[1,86],"35":[1,87],"47":359,"50":[1,56]},{"4":[2,89],"28":208,"29":[2,89],"30":[2,89],"31":206,"32":[1,88],"33":207,"34":[1,86],"35":[1,87],"47":205,"50":[1,56],"59":[2,89],"84":360},{"4":[2,91],"29":[2,91],"30":[2,91],"59":[2,91],"85":[2,91]},{"4":[2,47],"29":[2,47],"30":[2,47],"51":[1,133],"59":[2,47],"62":[1,132],"85":[2,47],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[2,48],"29":[2,48],"30":[2,48],"51":[1,133],"59":[2,48],"62":[1,132],"85":[2,48],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,110],"4":[2,110],"29":[2,110],"30":[2,110],"51":[2,110],"59":[2,110],"62":[2,110],"73":[2,110],"74":[2,110],"75":[2,110],"76":[2,110],"79":[2,110],"80":[2,110],"81":[2,110],"82":[2,110],"85":[2,110],"93":[2,110],"95":[2,110],"100":[2,110],"108":[2,110],"110":[2,110],"111":[2,110],"112":[2,110],"117":[2,110],"121":[2,110],"122":[2,110],"123":[2,110],"130":[2,110],"131":[2,110],"132":[2,110],"134":[2,110],"135":[2,110],"137":[2,110],"138":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110],"162":[2,110],"163":[2,110],"164":[2,110],"165":[2,110],"166":[2,110],"167":[2,110]},{"8":361,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"62":[1,362],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,54],"4":[2,54],"29":[2,54],"30":[2,54],"51":[2,54],"59":[2,54],"62":[2,54],"80":[2,54],"85":[2,54],"95":[2,54],"100":[2,54],"108":[2,54],"110":[2,54],"111":[2,54],"112":[2,54],"117":[2,54],"121":[2,54],"122":[2,54],"123":[2,54],"130":[2,54],"131":[2,54],"132":[2,54],"134":[2,54],"135":[2,54],"137":[2,54],"138":[2,54],"141":[2,54],"142":[2,54],"143":[2,54],"144":[2,54],"145":[2,54],"146":[2,54],"147":[2,54],"148":[2,54],"149":[2,54],"150":[2,54],"151":[2,54],"152":[2,54],"153":[2,54],"154":[2,54],"155":[2,54],"156":[2,54],"157":[2,54],"158":[2,54],"159":[2,54],"160":[2,54],"161":[2,54],"162":[2,54],"163":[2,54],"164":[2,54],"165":[2,54],"166":[2,54],"167":[2,54]},{"54":[2,64],"59":[2,64],"62":[2,64]},{"1":[2,171],"4":[2,171],"29":[2,171],"30":[2,171],"51":[2,171],"59":[2,171],"62":[2,171],"80":[2,171],"85":[2,171],"95":[2,171],"100":[2,171],"108":[2,171],"110":[2,171],"111":[2,171],"112":[2,171],"117":[2,171],"121":[2,171],"122":[2,171],"123":[2,171],"126":[2,171],"130":[2,171],"131":[2,171],"132":[2,171],"134":[2,171],"135":[2,171],"137":[2,171],"138":[2,171],"141":[2,171],"142":[2,171],"143":[2,171],"144":[2,171],"145":[2,171],"146":[2,171],"147":[2,171],"148":[2,171],"149":[2,171],"150":[2,171],"151":[2,171],"152":[2,171],"153":[2,171],"154":[2,171],"155":[2,171],"156":[2,171],"157":[2,171],"158":[2,171],"159":[2,171],"160":[2,171],"161":[2,171],"162":[2,171],"163":[2,171],"164":[2,171],"165":[2,171],"166":[2,171],"167":[2,171]},{"1":[2,130],"4":[2,130],"29":[2,130],"30":[2,130],"51":[2,130],"59":[2,130],"62":[2,130],"80":[2,130],"85":[2,130],"95":[2,130],"100":[2,130],"108":[2,130],"110":[2,130],"111":[2,130],"112":[2,130],"117":[2,130],"121":[2,130],"122":[2,130],"123":[2,130],"130":[2,130],"131":[2,130],"132":[2,130],"134":[2,130],"135":[2,130],"137":[2,130],"138":[2,130],"141":[2,130],"142":[2,130],"143":[2,130],"144":[2,130],"145":[2,130],"146":[2,130],"147":[2,130],"148":[2,130],"149":[2,130],"150":[2,130],"151":[2,130],"152":[2,130],"153":[2,130],"154":[2,130],"155":[2,130],"156":[2,130],"157":[2,130],"158":[2,130],"159":[2,130],"160":[2,130],"161":[2,130],"162":[2,130],"163":[2,130],"164":[2,130],"165":[2,130],"166":[2,130],"167":[2,130]},{"1":[2,131],"4":[2,131],"29":[2,131],"30":[2,131],"51":[2,131],"59":[2,131],"62":[2,131],"80":[2,131],"85":[2,131],"95":[2,131],"100":[2,131],"104":[2,131],"108":[2,131],"110":[2,131],"111":[2,131],"112":[2,131],"117":[2,131],"121":[2,131],"122":[2,131],"123":[2,131],"130":[2,131],"131":[2,131],"132":[2,131],"134":[2,131],"135":[2,131],"137":[2,131],"138":[2,131],"141":[2,131],"142":[2,131],"143":[2,131],"144":[2,131],"145":[2,131],"146":[2,131],"147":[2,131],"148":[2,131],"149":[2,131],"150":[2,131],"151":[2,131],"152":[2,131],"153":[2,131],"154":[2,131],"155":[2,131],"156":[2,131],"157":[2,131],"158":[2,131],"159":[2,131],"160":[2,131],"161":[2,131],"162":[2,131],"163":[2,131],"164":[2,131],"165":[2,131],"166":[2,131],"167":[2,131]},{"1":[2,156],"4":[2,156],"29":[2,156],"30":[2,156],"51":[1,133],"59":[2,156],"62":[1,132],"80":[2,156],"85":[2,156],"95":[2,156],"100":[2,156],"108":[2,156],"109":130,"110":[2,156],"111":[2,156],"112":[2,156],"115":131,"117":[2,156],"121":[1,125],"122":[1,126],"123":[1,363],"130":[2,156],"131":[2,156],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,158],"4":[2,158],"29":[2,158],"30":[2,158],"51":[1,133],"59":[2,158],"62":[1,132],"80":[2,158],"85":[2,158],"95":[2,158],"100":[2,158],"108":[2,158],"109":130,"110":[2,158],"111":[1,364],"112":[2,158],"115":131,"117":[2,158],"121":[1,125],"122":[1,126],"123":[2,158],"130":[2,158],"131":[2,158],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,157],"4":[2,157],"29":[2,157],"30":[2,157],"51":[1,133],"59":[2,157],"62":[1,132],"80":[2,157],"85":[2,157],"95":[2,157],"100":[2,157],"108":[2,157],"109":130,"110":[2,157],"111":[2,157],"112":[2,157],"115":131,"117":[2,157],"121":[1,125],"122":[1,126],"123":[2,157],"130":[2,157],"131":[2,157],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,161],"4":[2,161],"29":[2,161],"30":[2,161],"51":[2,161],"59":[2,161],"62":[2,161],"80":[2,161],"85":[2,161],"95":[2,161],"100":[2,161],"108":[2,161],"110":[2,161],"111":[2,161],"112":[2,161],"117":[2,161],"121":[2,161],"122":[2,161],"123":[2,161],"130":[2,161],"131":[2,161],"132":[2,161],"134":[2,161],"135":[2,161],"137":[2,161],"138":[2,161],"141":[2,161],"142":[2,161],"143":[2,161],"144":[2,161],"145":[2,161],"146":[2,161],"147":[2,161],"148":[2,161],"149":[2,161],"150":[2,161],"151":[2,161],"152":[2,161],"153":[2,161],"154":[2,161],"155":[2,161],"156":[2,161],"157":[2,161],"158":[2,161],"159":[2,161],"160":[2,161],"161":[2,161],"162":[2,161],"163":[2,161],"164":[2,161],"165":[2,161],"166":[2,161],"167":[2,161]},{"4":[1,161],"6":365,"29":[1,6]},{"30":[1,366]},{"4":[1,367],"30":[2,167],"126":[2,167],"128":[2,167]},{"8":368,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[2,100],"28":208,"30":[2,100],"31":206,"32":[1,88],"33":207,"34":[1,86],"35":[1,87],"47":319,"50":[1,56],"66":320,"88":369,"89":318,"98":[1,321]},{"1":[2,96],"4":[2,96],"29":[2,96],"30":[2,96],"51":[2,96],"59":[2,96],"62":[2,96],"80":[2,96],"85":[2,96],"95":[2,96],"100":[2,96],"108":[2,96],"110":[2,96],"111":[2,96],"112":[2,96],"117":[2,96],"121":[2,96],"122":[2,96],"123":[2,96],"130":[2,96],"131":[2,96],"132":[2,96],"134":[2,96],"135":[2,96],"137":[2,96],"138":[2,96],"141":[2,96],"142":[2,96],"143":[2,96],"144":[2,96],"145":[2,96],"146":[2,96],"147":[2,96],"148":[2,96],"149":[2,96],"150":[2,96],"151":[2,96],"152":[2,96],"153":[2,96],"154":[2,96],"155":[2,96],"156":[2,96],"157":[2,96],"158":[2,96],"159":[2,96],"160":[2,96],"161":[2,96],"162":[2,96],"163":[2,96],"164":[2,96],"165":[2,96],"166":[2,96],"167":[2,96]},{"28":208,"31":206,"32":[1,88],"33":207,"34":[1,86],"35":[1,87],"47":319,"50":[1,56],"66":320,"89":370,"98":[1,321]},{"8":371,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"51":[1,133],"62":[1,132],"100":[1,372],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[2,65],"8":373,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,65],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"51":[2,65],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,65],"62":[2,65],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"100":[2,65],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[2,65],"112":[2,65],"113":51,"114":[1,81],"115":52,"117":[2,65],"121":[2,65],"122":[2,65],"124":[1,53],"129":48,"130":[2,65],"131":[2,65],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65],"164":[2,65],"165":[2,65],"166":[2,65],"167":[2,65]},{"4":[2,124],"29":[2,124],"30":[2,124],"51":[1,133],"59":[2,124],"62":[1,132],"95":[2,124],"100":[2,124],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[2,58],"29":[2,58],"30":[2,58],"58":374,"59":[1,282]},{"4":[2,92],"29":[2,92],"30":[2,92],"59":[2,92],"85":[2,92]},{"4":[2,58],"29":[2,58],"30":[2,58],"58":375,"59":[1,290]},{"51":[1,133],"62":[1,132],"80":[1,376],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"8":377,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"51":[2,65],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"62":[2,65],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"80":[2,65],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[2,65],"112":[2,65],"113":51,"114":[1,81],"115":52,"117":[2,65],"121":[2,65],"122":[2,65],"124":[1,53],"129":48,"130":[2,65],"131":[2,65],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65],"164":[2,65],"165":[2,65],"166":[2,65],"167":[2,65]},{"8":378,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":379,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"30":[1,380]},{"1":[2,164],"4":[2,164],"29":[2,164],"30":[2,164],"51":[2,164],"59":[2,164],"62":[2,164],"80":[2,164],"85":[2,164],"95":[2,164],"100":[2,164],"108":[2,164],"110":[2,164],"111":[2,164],"112":[2,164],"117":[2,164],"121":[2,164],"122":[2,164],"123":[2,164],"130":[2,164],"131":[2,164],"132":[2,164],"134":[2,164],"135":[2,164],"137":[2,164],"138":[2,164],"141":[2,164],"142":[2,164],"143":[2,164],"144":[2,164],"145":[2,164],"146":[2,164],"147":[2,164],"148":[2,164],"149":[2,164],"150":[2,164],"151":[2,164],"152":[2,164],"153":[2,164],"154":[2,164],"155":[2,164],"156":[2,164],"157":[2,164],"158":[2,164],"159":[2,164],"160":[2,164],"161":[2,164],"162":[2,164],"163":[2,164],"164":[2,164],"165":[2,164],"166":[2,164],"167":[2,164]},{"30":[2,168],"126":[2,168],"128":[2,168]},{"4":[2,127],"29":[2,127],"51":[1,133],"59":[2,127],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[1,353],"30":[1,381]},{"4":[2,102],"30":[2,102]},{"4":[2,99],"30":[2,99],"51":[1,133],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,116],"4":[2,116],"29":[2,116],"30":[2,116],"51":[2,116],"59":[2,116],"62":[2,116],"73":[2,116],"74":[2,116],"75":[2,116],"76":[2,116],"79":[2,116],"80":[2,116],"81":[2,116],"82":[2,116],"85":[2,116],"93":[2,116],"95":[2,116],"100":[2,116],"108":[2,116],"110":[2,116],"111":[2,116],"112":[2,116],"117":[2,116],"121":[2,116],"122":[2,116],"123":[2,116],"130":[2,116],"131":[2,116],"132":[2,116],"134":[2,116],"135":[2,116],"137":[2,116],"138":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"146":[2,116],"147":[2,116],"148":[2,116],"149":[2,116],"150":[2,116],"151":[2,116],"152":[2,116],"153":[2,116],"154":[2,116],"155":[2,116],"156":[2,116],"157":[2,116],"158":[2,116],"159":[2,116],"160":[2,116],"161":[2,116],"162":[2,116],"163":[2,116],"164":[2,116],"165":[2,116],"166":[2,116],"167":[2,116]},{"51":[1,133],"62":[1,132],"100":[1,382],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[1,324],"29":[1,325],"30":[1,383]},{"4":[1,331],"29":[1,332],"30":[1,384]},{"1":[2,118],"4":[2,118],"29":[2,118],"30":[2,118],"46":[2,118],"51":[2,118],"59":[2,118],"62":[2,118],"73":[2,118],"74":[2,118],"75":[2,118],"76":[2,118],"79":[2,118],"80":[2,118],"81":[2,118],"82":[2,118],"85":[2,118],"87":[2,118],"93":[2,118],"95":[2,118],"100":[2,118],"108":[2,118],"110":[2,118],"111":[2,118],"112":[2,118],"117":[2,118],"121":[2,118],"122":[2,118],"123":[2,118],"130":[2,118],"131":[2,118],"132":[2,118],"134":[2,118],"135":[2,118],"137":[2,118],"138":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"146":[2,118],"147":[2,118],"148":[2,118],"149":[2,118],"150":[2,118],"151":[2,118],"152":[2,118],"153":[2,118],"154":[2,118],"155":[2,118],"156":[2,118],"157":[2,118],"158":[2,118],"159":[2,118],"160":[2,118],"161":[2,118],"162":[2,118],"163":[2,118],"164":[2,118],"165":[2,118],"166":[2,118],"167":[2,118]},{"51":[1,133],"62":[1,132],"80":[1,385],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,159],"4":[2,159],"29":[2,159],"30":[2,159],"51":[1,133],"59":[2,159],"62":[1,132],"80":[2,159],"85":[2,159],"95":[2,159],"100":[2,159],"108":[2,159],"109":130,"110":[2,159],"111":[2,159],"112":[2,159],"115":131,"117":[2,159],"121":[1,125],"122":[1,126],"123":[2,159],"130":[2,159],"131":[2,159],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,160],"4":[2,160],"29":[2,160],"30":[2,160],"51":[1,133],"59":[2,160],"62":[1,132],"80":[2,160],"85":[2,160],"95":[2,160],"100":[2,160],"108":[2,160],"109":130,"110":[2,160],"111":[2,160],"112":[2,160],"115":131,"117":[2,160],"121":[1,125],"122":[1,126],"123":[2,160],"130":[2,160],"131":[2,160],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,162],"4":[2,162],"29":[2,162],"30":[2,162],"51":[2,162],"59":[2,162],"62":[2,162],"80":[2,162],"85":[2,162],"95":[2,162],"100":[2,162],"108":[2,162],"110":[2,162],"111":[2,162],"112":[2,162],"117":[2,162],"121":[2,162],"122":[2,162],"123":[2,162],"130":[2,162],"131":[2,162],"132":[2,162],"134":[2,162],"135":[2,162],"137":[2,162],"138":[2,162],"141":[2,162],"142":[2,162],"143":[2,162],"144":[2,162],"145":[2,162],"146":[2,162],"147":[2,162],"148":[2,162],"149":[2,162],"150":[2,162],"151":[2,162],"152":[2,162],"153":[2,162],"154":[2,162],"155":[2,162],"156":[2,162],"157":[2,162],"158":[2,162],"159":[2,162],"160":[2,162],"161":[2,162],"162":[2,162],"163":[2,162],"164":[2,162],"165":[2,162],"166":[2,162],"167":[2,162]},{"1":[2,97],"4":[2,97],"29":[2,97],"30":[2,97],"51":[2,97],"59":[2,97],"62":[2,97],"80":[2,97],"85":[2,97],"95":[2,97],"100":[2,97],"108":[2,97],"110":[2,97],"111":[2,97],"112":[2,97],"117":[2,97],"121":[2,97],"122":[2,97],"123":[2,97],"130":[2,97],"131":[2,97],"132":[2,97],"134":[2,97],"135":[2,97],"137":[2,97],"138":[2,97],"141":[2,97],"142":[2,97],"143":[2,97],"144":[2,97],"145":[2,97],"146":[2,97],"147":[2,97],"148":[2,97],"149":[2,97],"150":[2,97],"151":[2,97],"152":[2,97],"153":[2,97],"154":[2,97],"155":[2,97],"156":[2,97],"157":[2,97],"158":[2,97],"159":[2,97],"160":[2,97],"161":[2,97],"162":[2,97],"163":[2,97],"164":[2,97],"165":[2,97],"166":[2,97],"167":[2,97]},{"1":[2,117],"4":[2,117],"29":[2,117],"30":[2,117],"51":[2,117],"59":[2,117],"62":[2,117],"73":[2,117],"74":[2,117],"75":[2,117],"76":[2,117],"79":[2,117],"80":[2,117],"81":[2,117],"82":[2,117],"85":[2,117],"93":[2,117],"95":[2,117],"100":[2,117],"108":[2,117],"110":[2,117],"111":[2,117],"112":[2,117],"117":[2,117],"121":[2,117],"122":[2,117],"123":[2,117],"130":[2,117],"131":[2,117],"132":[2,117],"134":[2,117],"135":[2,117],"137":[2,117],"138":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"146":[2,117],"147":[2,117],"148":[2,117],"149":[2,117],"150":[2,117],"151":[2,117],"152":[2,117],"153":[2,117],"154":[2,117],"155":[2,117],"156":[2,117],"157":[2,117],"158":[2,117],"159":[2,117],"160":[2,117],"161":[2,117],"162":[2,117],"163":[2,117],"164":[2,117],"165":[2,117],"166":[2,117],"167":[2,117]},{"4":[2,125],"29":[2,125],"30":[2,125],"59":[2,125],"95":[2,125],"100":[2,125]},{"4":[2,93],"29":[2,93],"30":[2,93],"59":[2,93],"85":[2,93]},{"1":[2,119],"4":[2,119],"29":[2,119],"30":[2,119],"46":[2,119],"51":[2,119],"59":[2,119],"62":[2,119],"73":[2,119],"74":[2,119],"75":[2,119],"76":[2,119],"79":[2,119],"80":[2,119],"81":[2,119],"82":[2,119],"85":[2,119],"87":[2,119],"93":[2,119],"95":[2,119],"100":[2,119],"108":[2,119],"110":[2,119],"111":[2,119],"112":[2,119],"117":[2,119],"121":[2,119],"122":[2,119],"123":[2,119],"130":[2,119],"131":[2,119],"132":[2,119],"134":[2,119],"135":[2,119],"137":[2,119],"138":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"146":[2,119],"147":[2,119],"148":[2,119],"149":[2,119],"150":[2,119],"151":[2,119],"152":[2,119],"153":[2,119],"154":[2,119],"155":[2,119],"156":[2,119],"157":[2,119],"158":[2,119],"159":[2,119],"160":[2,119],"161":[2,119],"162":[2,119],"163":[2,119],"164":[2,119],"165":[2,119],"166":[2,119],"167":[2,119]}], ++table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[3]},{"1":[2,2],"28":89,"50":[1,56]},{"1":[2,3],"4":[1,90]},{"4":[1,91]},{"1":[2,5],"4":[2,5],"30":[2,5]},{"5":92,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[1,93],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,8],"4":[2,8],"30":[2,8],"51":[1,133],"62":[1,132],"108":[2,8],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,9],"4":[2,9],"30":[2,9],"108":[2,9],"109":136,"110":[1,79],"112":[1,80],"115":137,"117":[1,82],"130":[1,134],"131":[1,135]},{"1":[2,14],"4":[2,14],"29":[2,14],"30":[2,14],"51":[2,14],"59":[2,14],"62":[2,14],"64":139,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,14],"81":[1,148],"82":[1,149],"85":[2,14],"92":138,"93":[1,140],"95":[2,14],"100":[2,14],"108":[2,14],"110":[2,14],"111":[2,14],"112":[2,14],"117":[2,14],"121":[2,14],"122":[2,14],"123":[2,14],"130":[2,14],"131":[2,14],"132":[2,14],"134":[2,14],"135":[2,14],"137":[2,14],"138":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14],"162":[2,14],"163":[2,14],"164":[2,14],"165":[2,14],"166":[2,14],"167":[2,14]},{"1":[2,15],"4":[2,15],"29":[2,15],"30":[2,15],"51":[2,15],"59":[2,15],"62":[2,15],"80":[2,15],"85":[2,15],"95":[2,15],"100":[2,15],"108":[2,15],"110":[2,15],"111":[2,15],"112":[2,15],"117":[2,15],"121":[2,15],"122":[2,15],"123":[2,15],"130":[2,15],"131":[2,15],"132":[2,15],"134":[2,15],"135":[2,15],"137":[2,15],"138":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15],"162":[2,15],"163":[2,15],"164":[2,15],"165":[2,15],"166":[2,15],"167":[2,15]},{"1":[2,16],"4":[2,16],"29":[2,16],"30":[2,16],"51":[2,16],"59":[2,16],"62":[2,16],"80":[2,16],"85":[2,16],"95":[2,16],"100":[2,16],"108":[2,16],"110":[2,16],"111":[2,16],"112":[2,16],"117":[2,16],"121":[2,16],"122":[2,16],"123":[2,16],"130":[2,16],"131":[2,16],"132":[2,16],"134":[2,16],"135":[2,16],"137":[2,16],"138":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16],"162":[2,16],"163":[2,16],"164":[2,16],"165":[2,16],"166":[2,16],"167":[2,16]},{"1":[2,17],"4":[2,17],"29":[2,17],"30":[2,17],"51":[2,17],"59":[2,17],"62":[2,17],"80":[2,17],"85":[2,17],"95":[2,17],"100":[2,17],"108":[2,17],"110":[2,17],"111":[2,17],"112":[2,17],"117":[2,17],"121":[2,17],"122":[2,17],"123":[2,17],"130":[2,17],"131":[2,17],"132":[2,17],"134":[2,17],"135":[2,17],"137":[2,17],"138":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17],"162":[2,17],"163":[2,17],"164":[2,17],"165":[2,17],"166":[2,17],"167":[2,17]},{"1":[2,18],"4":[2,18],"29":[2,18],"30":[2,18],"51":[2,18],"59":[2,18],"62":[2,18],"80":[2,18],"85":[2,18],"95":[2,18],"100":[2,18],"108":[2,18],"110":[2,18],"111":[2,18],"112":[2,18],"117":[2,18],"121":[2,18],"122":[2,18],"123":[2,18],"130":[2,18],"131":[2,18],"132":[2,18],"134":[2,18],"135":[2,18],"137":[2,18],"138":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18],"162":[2,18],"163":[2,18],"164":[2,18],"165":[2,18],"166":[2,18],"167":[2,18]},{"1":[2,19],"4":[2,19],"29":[2,19],"30":[2,19],"51":[2,19],"59":[2,19],"62":[2,19],"80":[2,19],"85":[2,19],"95":[2,19],"100":[2,19],"108":[2,19],"110":[2,19],"111":[2,19],"112":[2,19],"117":[2,19],"121":[2,19],"122":[2,19],"123":[2,19],"130":[2,19],"131":[2,19],"132":[2,19],"134":[2,19],"135":[2,19],"137":[2,19],"138":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19],"162":[2,19],"163":[2,19],"164":[2,19],"165":[2,19],"166":[2,19],"167":[2,19]},{"1":[2,20],"4":[2,20],"29":[2,20],"30":[2,20],"51":[2,20],"59":[2,20],"62":[2,20],"80":[2,20],"85":[2,20],"95":[2,20],"100":[2,20],"108":[2,20],"110":[2,20],"111":[2,20],"112":[2,20],"117":[2,20],"121":[2,20],"122":[2,20],"123":[2,20],"130":[2,20],"131":[2,20],"132":[2,20],"134":[2,20],"135":[2,20],"137":[2,20],"138":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20],"162":[2,20],"163":[2,20],"164":[2,20],"165":[2,20],"166":[2,20],"167":[2,20]},{"1":[2,21],"4":[2,21],"29":[2,21],"30":[2,21],"51":[2,21],"59":[2,21],"62":[2,21],"80":[2,21],"85":[2,21],"95":[2,21],"100":[2,21],"108":[2,21],"110":[2,21],"111":[2,21],"112":[2,21],"117":[2,21],"121":[2,21],"122":[2,21],"123":[2,21],"130":[2,21],"131":[2,21],"132":[2,21],"134":[2,21],"135":[2,21],"137":[2,21],"138":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21],"162":[2,21],"163":[2,21],"164":[2,21],"165":[2,21],"166":[2,21],"167":[2,21]},{"1":[2,22],"4":[2,22],"29":[2,22],"30":[2,22],"51":[2,22],"59":[2,22],"62":[2,22],"80":[2,22],"85":[2,22],"95":[2,22],"100":[2,22],"108":[2,22],"110":[2,22],"111":[2,22],"112":[2,22],"117":[2,22],"121":[2,22],"122":[2,22],"123":[2,22],"130":[2,22],"131":[2,22],"132":[2,22],"134":[2,22],"135":[2,22],"137":[2,22],"138":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22],"162":[2,22],"163":[2,22],"164":[2,22],"165":[2,22],"166":[2,22],"167":[2,22]},{"1":[2,23],"4":[2,23],"29":[2,23],"30":[2,23],"51":[2,23],"59":[2,23],"62":[2,23],"80":[2,23],"85":[2,23],"95":[2,23],"100":[2,23],"108":[2,23],"110":[2,23],"111":[2,23],"112":[2,23],"117":[2,23],"121":[2,23],"122":[2,23],"123":[2,23],"130":[2,23],"131":[2,23],"132":[2,23],"134":[2,23],"135":[2,23],"137":[2,23],"138":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23],"162":[2,23],"163":[2,23],"164":[2,23],"165":[2,23],"166":[2,23],"167":[2,23]},{"1":[2,24],"4":[2,24],"29":[2,24],"30":[2,24],"51":[2,24],"59":[2,24],"62":[2,24],"80":[2,24],"85":[2,24],"95":[2,24],"100":[2,24],"108":[2,24],"110":[2,24],"111":[2,24],"112":[2,24],"117":[2,24],"121":[2,24],"122":[2,24],"123":[2,24],"130":[2,24],"131":[2,24],"132":[2,24],"134":[2,24],"135":[2,24],"137":[2,24],"138":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24],"162":[2,24],"163":[2,24],"164":[2,24],"165":[2,24],"166":[2,24],"167":[2,24]},{"1":[2,25],"4":[2,25],"29":[2,25],"30":[2,25],"51":[2,25],"59":[2,25],"62":[2,25],"80":[2,25],"85":[2,25],"95":[2,25],"100":[2,25],"108":[2,25],"110":[2,25],"111":[2,25],"112":[2,25],"117":[2,25],"121":[2,25],"122":[2,25],"123":[2,25],"130":[2,25],"131":[2,25],"132":[2,25],"134":[2,25],"135":[2,25],"137":[2,25],"138":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25],"162":[2,25],"163":[2,25],"164":[2,25],"165":[2,25],"166":[2,25],"167":[2,25]},{"1":[2,26],"4":[2,26],"29":[2,26],"30":[2,26],"51":[2,26],"59":[2,26],"62":[2,26],"80":[2,26],"85":[2,26],"95":[2,26],"100":[2,26],"108":[2,26],"110":[2,26],"111":[2,26],"112":[2,26],"117":[2,26],"121":[2,26],"122":[2,26],"123":[2,26],"130":[2,26],"131":[2,26],"132":[2,26],"134":[2,26],"135":[2,26],"137":[2,26],"138":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26],"162":[2,26],"163":[2,26],"164":[2,26],"165":[2,26],"166":[2,26],"167":[2,26]},{"1":[2,27],"4":[2,27],"29":[2,27],"30":[2,27],"51":[2,27],"59":[2,27],"62":[2,27],"80":[2,27],"85":[2,27],"95":[2,27],"100":[2,27],"108":[2,27],"110":[2,27],"111":[2,27],"112":[2,27],"117":[2,27],"121":[2,27],"122":[2,27],"123":[2,27],"130":[2,27],"131":[2,27],"132":[2,27],"134":[2,27],"135":[2,27],"137":[2,27],"138":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27],"162":[2,27],"163":[2,27],"164":[2,27],"165":[2,27],"166":[2,27],"167":[2,27]},{"1":[2,28],"4":[2,28],"29":[2,28],"30":[2,28],"51":[2,28],"59":[2,28],"62":[2,28],"80":[2,28],"85":[2,28],"95":[2,28],"100":[2,28],"108":[2,28],"110":[2,28],"111":[2,28],"112":[2,28],"117":[2,28],"121":[2,28],"122":[2,28],"123":[2,28],"130":[2,28],"131":[2,28],"132":[2,28],"134":[2,28],"135":[2,28],"137":[2,28],"138":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28],"162":[2,28],"163":[2,28],"164":[2,28],"165":[2,28],"166":[2,28],"167":[2,28]},{"1":[2,10],"4":[2,10],"30":[2,10],"108":[2,10],"110":[2,10],"112":[2,10],"117":[2,10],"130":[2,10],"131":[2,10]},{"1":[2,11],"4":[2,11],"30":[2,11],"108":[2,11],"110":[2,11],"112":[2,11],"117":[2,11],"130":[2,11],"131":[2,11]},{"1":[2,12],"4":[2,12],"30":[2,12],"108":[2,12],"110":[2,12],"112":[2,12],"117":[2,12],"130":[2,12],"131":[2,12]},{"1":[2,13],"4":[2,13],"30":[2,13],"108":[2,13],"110":[2,13],"112":[2,13],"117":[2,13],"130":[2,13],"131":[2,13]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"46":[1,150],"51":[2,73],"59":[2,73],"62":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"76":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"82":[2,73],"85":[2,73],"93":[2,73],"95":[2,73],"100":[2,73],"108":[2,73],"110":[2,73],"111":[2,73],"112":[2,73],"117":[2,73],"121":[2,73],"122":[2,73],"123":[2,73],"130":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"137":[2,73],"138":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73],"164":[2,73],"165":[2,73],"166":[2,73],"167":[2,73]},{"1":[2,74],"4":[2,74],"29":[2,74],"30":[2,74],"51":[2,74],"59":[2,74],"62":[2,74],"73":[2,74],"74":[2,74],"75":[2,74],"76":[2,74],"79":[2,74],"80":[2,74],"81":[2,74],"82":[2,74],"85":[2,74],"93":[2,74],"95":[2,74],"100":[2,74],"108":[2,74],"110":[2,74],"111":[2,74],"112":[2,74],"117":[2,74],"121":[2,74],"122":[2,74],"123":[2,74],"130":[2,74],"131":[2,74],"132":[2,74],"134":[2,74],"135":[2,74],"137":[2,74],"138":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74],"162":[2,74],"163":[2,74],"164":[2,74],"165":[2,74],"166":[2,74],"167":[2,74]},{"1":[2,75],"4":[2,75],"29":[2,75],"30":[2,75],"51":[2,75],"59":[2,75],"62":[2,75],"73":[2,75],"74":[2,75],"75":[2,75],"76":[2,75],"79":[2,75],"80":[2,75],"81":[2,75],"82":[2,75],"85":[2,75],"93":[2,75],"95":[2,75],"100":[2,75],"108":[2,75],"110":[2,75],"111":[2,75],"112":[2,75],"117":[2,75],"121":[2,75],"122":[2,75],"123":[2,75],"130":[2,75],"131":[2,75],"132":[2,75],"134":[2,75],"135":[2,75],"137":[2,75],"138":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75],"162":[2,75],"163":[2,75],"164":[2,75],"165":[2,75],"166":[2,75],"167":[2,75]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"51":[2,76],"59":[2,76],"62":[2,76],"73":[2,76],"74":[2,76],"75":[2,76],"76":[2,76],"79":[2,76],"80":[2,76],"81":[2,76],"82":[2,76],"85":[2,76],"93":[2,76],"95":[2,76],"100":[2,76],"108":[2,76],"110":[2,76],"111":[2,76],"112":[2,76],"117":[2,76],"121":[2,76],"122":[2,76],"123":[2,76],"130":[2,76],"131":[2,76],"132":[2,76],"134":[2,76],"135":[2,76],"137":[2,76],"138":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76],"162":[2,76],"163":[2,76],"164":[2,76],"165":[2,76],"166":[2,76],"167":[2,76]},{"1":[2,77],"4":[2,77],"29":[2,77],"30":[2,77],"51":[2,77],"59":[2,77],"62":[2,77],"73":[2,77],"74":[2,77],"75":[2,77],"76":[2,77],"79":[2,77],"80":[2,77],"81":[2,77],"82":[2,77],"85":[2,77],"93":[2,77],"95":[2,77],"100":[2,77],"108":[2,77],"110":[2,77],"111":[2,77],"112":[2,77],"117":[2,77],"121":[2,77],"122":[2,77],"123":[2,77],"130":[2,77],"131":[2,77],"132":[2,77],"134":[2,77],"135":[2,77],"137":[2,77],"138":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77],"162":[2,77],"163":[2,77],"164":[2,77],"165":[2,77],"166":[2,77],"167":[2,77]},{"1":[2,78],"4":[2,78],"29":[2,78],"30":[2,78],"51":[2,78],"59":[2,78],"62":[2,78],"73":[2,78],"74":[2,78],"75":[2,78],"76":[2,78],"79":[2,78],"80":[2,78],"81":[2,78],"82":[2,78],"85":[2,78],"93":[2,78],"95":[2,78],"100":[2,78],"108":[2,78],"110":[2,78],"111":[2,78],"112":[2,78],"117":[2,78],"121":[2,78],"122":[2,78],"123":[2,78],"130":[2,78],"131":[2,78],"132":[2,78],"134":[2,78],"135":[2,78],"137":[2,78],"138":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78],"162":[2,78],"163":[2,78],"164":[2,78],"165":[2,78],"166":[2,78],"167":[2,78]},{"1":[2,104],"4":[2,104],"29":[2,104],"30":[2,104],"51":[2,104],"59":[2,104],"62":[2,104],"64":152,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,104],"81":[1,148],"82":[1,149],"85":[2,104],"92":151,"93":[1,140],"95":[2,104],"100":[2,104],"108":[2,104],"110":[2,104],"111":[2,104],"112":[2,104],"117":[2,104],"121":[2,104],"122":[2,104],"123":[2,104],"130":[2,104],"131":[2,104],"132":[2,104],"134":[2,104],"135":[2,104],"137":[2,104],"138":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"148":[2,104],"149":[2,104],"150":[2,104],"151":[2,104],"152":[2,104],"153":[2,104],"154":[2,104],"155":[2,104],"156":[2,104],"157":[2,104],"158":[2,104],"159":[2,104],"160":[2,104],"161":[2,104],"162":[2,104],"163":[2,104],"164":[2,104],"165":[2,104],"166":[2,104],"167":[2,104]},{"1":[2,105],"4":[2,105],"29":[2,105],"30":[2,105],"51":[2,105],"59":[2,105],"62":[2,105],"80":[2,105],"85":[2,105],"95":[2,105],"100":[2,105],"108":[2,105],"110":[2,105],"111":[2,105],"112":[2,105],"117":[2,105],"121":[2,105],"122":[2,105],"123":[2,105],"130":[2,105],"131":[2,105],"132":[2,105],"134":[2,105],"135":[2,105],"137":[2,105],"138":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105],"161":[2,105],"162":[2,105],"163":[2,105],"164":[2,105],"165":[2,105],"166":[2,105],"167":[2,105]},{"14":154,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":155,"63":156,"65":153,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"97":[1,72],"98":[1,73],"99":[1,71],"107":[1,70]},{"53":157,"54":[2,60],"59":[2,60],"60":158,"61":[1,159]},{"4":[1,161],"6":160,"29":[1,6]},{"8":162,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":164,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":165,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":166,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":167,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":168,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":169,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":170,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":171,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,174],"4":[2,174],"29":[2,174],"30":[2,174],"51":[2,174],"59":[2,174],"62":[2,174],"80":[2,174],"85":[2,174],"95":[2,174],"100":[2,174],"108":[2,174],"110":[2,174],"111":[2,174],"112":[2,174],"117":[2,174],"121":[2,174],"122":[2,174],"123":[2,174],"126":[1,172],"130":[2,174],"131":[2,174],"132":[2,174],"134":[2,174],"135":[2,174],"137":[2,174],"138":[2,174],"141":[2,174],"142":[2,174],"143":[2,174],"144":[2,174],"145":[2,174],"146":[2,174],"147":[2,174],"148":[2,174],"149":[2,174],"150":[2,174],"151":[2,174],"152":[2,174],"153":[2,174],"154":[2,174],"155":[2,174],"156":[2,174],"157":[2,174],"158":[2,174],"159":[2,174],"160":[2,174],"161":[2,174],"162":[2,174],"163":[2,174],"164":[2,174],"165":[2,174],"166":[2,174],"167":[2,174]},{"4":[1,161],"6":173,"29":[1,6]},{"4":[1,161],"6":174,"29":[1,6]},{"1":[2,142],"4":[2,142],"29":[2,142],"30":[2,142],"51":[2,142],"59":[2,142],"62":[2,142],"80":[2,142],"85":[2,142],"95":[2,142],"100":[2,142],"108":[2,142],"110":[2,142],"111":[2,142],"112":[2,142],"117":[2,142],"121":[2,142],"122":[2,142],"123":[2,142],"130":[2,142],"131":[2,142],"132":[2,142],"134":[2,142],"135":[2,142],"137":[2,142],"138":[2,142],"141":[2,142],"142":[2,142],"143":[2,142],"144":[2,142],"145":[2,142],"146":[2,142],"147":[2,142],"148":[2,142],"149":[2,142],"150":[2,142],"151":[2,142],"152":[2,142],"153":[2,142],"154":[2,142],"155":[2,142],"156":[2,142],"157":[2,142],"158":[2,142],"159":[2,142],"160":[2,142],"161":[2,142],"162":[2,142],"163":[2,142],"164":[2,142],"165":[2,142],"166":[2,142],"167":[2,142]},{"116":175,"121":[1,176],"122":[1,177]},{"8":178,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,179],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"46":[2,70],"51":[2,70],"59":[2,70],"62":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"76":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"82":[2,70],"85":[2,70],"87":[1,180],"93":[2,70],"95":[2,70],"100":[2,70],"108":[2,70],"110":[2,70],"111":[2,70],"112":[2,70],"117":[2,70],"121":[2,70],"122":[2,70],"123":[2,70],"130":[2,70],"131":[2,70],"132":[2,70],"134":[2,70],"135":[2,70],"137":[2,70],"138":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70],"164":[2,70],"165":[2,70],"166":[2,70],"167":[2,70]},{"14":182,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":155,"63":181,"65":183,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"97":[1,72],"98":[1,73],"99":[1,71],"107":[1,70]},{"1":[2,52],"4":[2,52],"29":[2,52],"30":[2,52],"51":[2,52],"59":[2,52],"62":[2,52],"80":[2,52],"85":[2,52],"95":[2,52],"100":[2,52],"104":[2,52],"105":[2,52],"108":[2,52],"110":[2,52],"111":[2,52],"112":[2,52],"117":[2,52],"121":[2,52],"122":[2,52],"123":[2,52],"126":[2,52],"128":[2,52],"130":[2,52],"131":[2,52],"132":[2,52],"134":[2,52],"135":[2,52],"137":[2,52],"138":[2,52],"141":[2,52],"142":[2,52],"143":[2,52],"144":[2,52],"145":[2,52],"146":[2,52],"147":[2,52],"148":[2,52],"149":[2,52],"150":[2,52],"151":[2,52],"152":[2,52],"153":[2,52],"154":[2,52],"155":[2,52],"156":[2,52],"157":[2,52],"158":[2,52],"159":[2,52],"160":[2,52],"161":[2,52],"162":[2,52],"163":[2,52],"164":[2,52],"165":[2,52],"166":[2,52],"167":[2,52]},{"1":[2,51],"4":[2,51],"8":184,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,51],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"108":[2,51],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[2,51],"131":[2,51],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":185,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,71],"4":[2,71],"29":[2,71],"30":[2,71],"46":[2,71],"51":[2,71],"59":[2,71],"62":[2,71],"73":[2,71],"74":[2,71],"75":[2,71],"76":[2,71],"79":[2,71],"80":[2,71],"81":[2,71],"82":[2,71],"85":[2,71],"93":[2,71],"95":[2,71],"100":[2,71],"108":[2,71],"110":[2,71],"111":[2,71],"112":[2,71],"117":[2,71],"121":[2,71],"122":[2,71],"123":[2,71],"130":[2,71],"131":[2,71],"132":[2,71],"134":[2,71],"135":[2,71],"137":[2,71],"138":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71],"162":[2,71],"163":[2,71],"164":[2,71],"165":[2,71],"166":[2,71],"167":[2,71]},{"1":[2,72],"4":[2,72],"29":[2,72],"30":[2,72],"46":[2,72],"51":[2,72],"59":[2,72],"62":[2,72],"73":[2,72],"74":[2,72],"75":[2,72],"76":[2,72],"79":[2,72],"80":[2,72],"81":[2,72],"82":[2,72],"85":[2,72],"93":[2,72],"95":[2,72],"100":[2,72],"108":[2,72],"110":[2,72],"111":[2,72],"112":[2,72],"117":[2,72],"121":[2,72],"122":[2,72],"123":[2,72],"130":[2,72],"131":[2,72],"132":[2,72],"134":[2,72],"135":[2,72],"137":[2,72],"138":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72],"162":[2,72],"163":[2,72],"164":[2,72],"165":[2,72],"166":[2,72],"167":[2,72]},{"1":[2,35],"4":[2,35],"29":[2,35],"30":[2,35],"51":[2,35],"59":[2,35],"62":[2,35],"73":[2,35],"74":[2,35],"75":[2,35],"76":[2,35],"79":[2,35],"80":[2,35],"81":[2,35],"82":[2,35],"85":[2,35],"93":[2,35],"95":[2,35],"100":[2,35],"108":[2,35],"110":[2,35],"111":[2,35],"112":[2,35],"117":[2,35],"121":[2,35],"122":[2,35],"123":[2,35],"130":[2,35],"131":[2,35],"132":[2,35],"134":[2,35],"135":[2,35],"137":[2,35],"138":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35],"162":[2,35],"163":[2,35],"164":[2,35],"165":[2,35],"166":[2,35],"167":[2,35]},{"1":[2,36],"4":[2,36],"29":[2,36],"30":[2,36],"51":[2,36],"59":[2,36],"62":[2,36],"73":[2,36],"74":[2,36],"75":[2,36],"76":[2,36],"79":[2,36],"80":[2,36],"81":[2,36],"82":[2,36],"85":[2,36],"93":[2,36],"95":[2,36],"100":[2,36],"108":[2,36],"110":[2,36],"111":[2,36],"112":[2,36],"117":[2,36],"121":[2,36],"122":[2,36],"123":[2,36],"130":[2,36],"131":[2,36],"132":[2,36],"134":[2,36],"135":[2,36],"137":[2,36],"138":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36],"162":[2,36],"163":[2,36],"164":[2,36],"165":[2,36],"166":[2,36],"167":[2,36]},{"1":[2,37],"4":[2,37],"29":[2,37],"30":[2,37],"51":[2,37],"59":[2,37],"62":[2,37],"73":[2,37],"74":[2,37],"75":[2,37],"76":[2,37],"79":[2,37],"80":[2,37],"81":[2,37],"82":[2,37],"85":[2,37],"93":[2,37],"95":[2,37],"100":[2,37],"108":[2,37],"110":[2,37],"111":[2,37],"112":[2,37],"117":[2,37],"121":[2,37],"122":[2,37],"123":[2,37],"130":[2,37],"131":[2,37],"132":[2,37],"134":[2,37],"135":[2,37],"137":[2,37],"138":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37],"162":[2,37],"163":[2,37],"164":[2,37],"165":[2,37],"166":[2,37],"167":[2,37]},{"1":[2,38],"4":[2,38],"29":[2,38],"30":[2,38],"51":[2,38],"59":[2,38],"62":[2,38],"73":[2,38],"74":[2,38],"75":[2,38],"76":[2,38],"79":[2,38],"80":[2,38],"81":[2,38],"82":[2,38],"85":[2,38],"93":[2,38],"95":[2,38],"100":[2,38],"108":[2,38],"110":[2,38],"111":[2,38],"112":[2,38],"117":[2,38],"121":[2,38],"122":[2,38],"123":[2,38],"130":[2,38],"131":[2,38],"132":[2,38],"134":[2,38],"135":[2,38],"137":[2,38],"138":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38],"162":[2,38],"163":[2,38],"164":[2,38],"165":[2,38],"166":[2,38],"167":[2,38]},{"1":[2,39],"4":[2,39],"29":[2,39],"30":[2,39],"51":[2,39],"59":[2,39],"62":[2,39],"73":[2,39],"74":[2,39],"75":[2,39],"76":[2,39],"79":[2,39],"80":[2,39],"81":[2,39],"82":[2,39],"85":[2,39],"93":[2,39],"95":[2,39],"100":[2,39],"108":[2,39],"110":[2,39],"111":[2,39],"112":[2,39],"117":[2,39],"121":[2,39],"122":[2,39],"123":[2,39],"130":[2,39],"131":[2,39],"132":[2,39],"134":[2,39],"135":[2,39],"137":[2,39],"138":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39],"162":[2,39],"163":[2,39],"164":[2,39],"165":[2,39],"166":[2,39],"167":[2,39]},{"1":[2,40],"4":[2,40],"29":[2,40],"30":[2,40],"51":[2,40],"59":[2,40],"62":[2,40],"73":[2,40],"74":[2,40],"75":[2,40],"76":[2,40],"79":[2,40],"80":[2,40],"81":[2,40],"82":[2,40],"85":[2,40],"93":[2,40],"95":[2,40],"100":[2,40],"108":[2,40],"110":[2,40],"111":[2,40],"112":[2,40],"117":[2,40],"121":[2,40],"122":[2,40],"123":[2,40],"130":[2,40],"131":[2,40],"132":[2,40],"134":[2,40],"135":[2,40],"137":[2,40],"138":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40],"162":[2,40],"163":[2,40],"164":[2,40],"165":[2,40],"166":[2,40],"167":[2,40]},{"1":[2,41],"4":[2,41],"29":[2,41],"30":[2,41],"51":[2,41],"59":[2,41],"62":[2,41],"73":[2,41],"74":[2,41],"75":[2,41],"76":[2,41],"79":[2,41],"80":[2,41],"81":[2,41],"82":[2,41],"85":[2,41],"93":[2,41],"95":[2,41],"100":[2,41],"108":[2,41],"110":[2,41],"111":[2,41],"112":[2,41],"117":[2,41],"121":[2,41],"122":[2,41],"123":[2,41],"130":[2,41],"131":[2,41],"132":[2,41],"134":[2,41],"135":[2,41],"137":[2,41],"138":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41],"162":[2,41],"163":[2,41],"164":[2,41],"165":[2,41],"166":[2,41],"167":[2,41]},{"1":[2,42],"4":[2,42],"29":[2,42],"30":[2,42],"51":[2,42],"59":[2,42],"62":[2,42],"73":[2,42],"74":[2,42],"75":[2,42],"76":[2,42],"79":[2,42],"80":[2,42],"81":[2,42],"82":[2,42],"85":[2,42],"93":[2,42],"95":[2,42],"100":[2,42],"108":[2,42],"110":[2,42],"111":[2,42],"112":[2,42],"117":[2,42],"121":[2,42],"122":[2,42],"123":[2,42],"130":[2,42],"131":[2,42],"132":[2,42],"134":[2,42],"135":[2,42],"137":[2,42],"138":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"148":[2,42],"149":[2,42],"150":[2,42],"151":[2,42],"152":[2,42],"153":[2,42],"154":[2,42],"155":[2,42],"156":[2,42],"157":[2,42],"158":[2,42],"159":[2,42],"160":[2,42],"161":[2,42],"162":[2,42],"163":[2,42],"164":[2,42],"165":[2,42],"166":[2,42],"167":[2,42]},{"1":[2,43],"4":[2,43],"29":[2,43],"30":[2,43],"51":[2,43],"59":[2,43],"62":[2,43],"73":[2,43],"74":[2,43],"75":[2,43],"76":[2,43],"79":[2,43],"80":[2,43],"81":[2,43],"82":[2,43],"85":[2,43],"93":[2,43],"95":[2,43],"100":[2,43],"108":[2,43],"110":[2,43],"111":[2,43],"112":[2,43],"117":[2,43],"121":[2,43],"122":[2,43],"123":[2,43],"130":[2,43],"131":[2,43],"132":[2,43],"134":[2,43],"135":[2,43],"137":[2,43],"138":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"148":[2,43],"149":[2,43],"150":[2,43],"151":[2,43],"152":[2,43],"153":[2,43],"154":[2,43],"155":[2,43],"156":[2,43],"157":[2,43],"158":[2,43],"159":[2,43],"160":[2,43],"161":[2,43],"162":[2,43],"163":[2,43],"164":[2,43],"165":[2,43],"166":[2,43],"167":[2,43]},{"7":186,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[2,122],"8":187,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,122],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,122],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"94":188,"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"100":[2,122],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,114],"4":[2,114],"29":[2,114],"30":[2,114],"51":[2,114],"59":[2,114],"62":[2,114],"73":[2,114],"74":[2,114],"75":[2,114],"76":[2,114],"79":[2,114],"80":[2,114],"81":[2,114],"82":[2,114],"85":[2,114],"93":[2,114],"95":[2,114],"100":[2,114],"108":[2,114],"110":[2,114],"111":[2,114],"112":[2,114],"117":[2,114],"121":[2,114],"122":[2,114],"123":[2,114],"130":[2,114],"131":[2,114],"132":[2,114],"134":[2,114],"135":[2,114],"137":[2,114],"138":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114],"162":[2,114],"163":[2,114],"164":[2,114],"165":[2,114],"166":[2,114],"167":[2,114]},{"1":[2,115],"4":[2,115],"29":[2,115],"30":[2,115],"31":189,"32":[1,88],"51":[2,115],"59":[2,115],"62":[2,115],"73":[2,115],"74":[2,115],"75":[2,115],"76":[2,115],"79":[2,115],"80":[2,115],"81":[2,115],"82":[2,115],"85":[2,115],"93":[2,115],"95":[2,115],"100":[2,115],"108":[2,115],"110":[2,115],"111":[2,115],"112":[2,115],"117":[2,115],"121":[2,115],"122":[2,115],"123":[2,115],"130":[2,115],"131":[2,115],"132":[2,115],"134":[2,115],"135":[2,115],"137":[2,115],"138":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"148":[2,115],"149":[2,115],"150":[2,115],"151":[2,115],"152":[2,115],"153":[2,115],"154":[2,115],"155":[2,115],"156":[2,115],"157":[2,115],"158":[2,115],"159":[2,115],"160":[2,115],"161":[2,115],"162":[2,115],"163":[2,115],"164":[2,115],"165":[2,115],"166":[2,115],"167":[2,115]},{"1":[2,112],"4":[2,112],"29":[2,112],"30":[2,112],"51":[2,112],"59":[2,112],"62":[2,112],"80":[2,112],"85":[2,112],"92":190,"93":[1,140],"95":[2,112],"100":[2,112],"108":[2,112],"110":[2,112],"111":[2,112],"112":[2,112],"117":[2,112],"121":[2,112],"122":[2,112],"123":[2,112],"130":[2,112],"131":[2,112],"132":[2,112],"134":[2,112],"135":[2,112],"137":[2,112],"138":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112],"162":[2,112],"163":[2,112],"164":[2,112],"165":[2,112],"166":[2,112],"167":[2,112]},{"4":[2,56],"29":[2,56]},{"4":[2,57],"29":[2,57]},{"8":191,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":192,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":193,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":194,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[1,161],"6":195,"8":196,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"31":200,"32":[1,88],"67":201,"68":202,"83":[1,85],"99":[1,203],"118":197,"119":[1,198],"120":199},{"1":[2,66],"4":[2,66],"29":[2,66],"30":[2,66],"46":[2,66],"51":[2,66],"59":[2,66],"62":[2,66],"73":[2,66],"74":[2,66],"75":[2,66],"76":[2,66],"79":[2,66],"80":[2,66],"81":[2,66],"82":[2,66],"85":[2,66],"87":[2,66],"93":[2,66],"95":[2,66],"100":[2,66],"108":[2,66],"110":[2,66],"111":[2,66],"112":[2,66],"117":[2,66],"121":[2,66],"122":[2,66],"123":[2,66],"130":[2,66],"131":[2,66],"132":[2,66],"134":[2,66],"135":[2,66],"137":[2,66],"138":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66],"162":[2,66],"163":[2,66],"164":[2,66],"165":[2,66],"166":[2,66],"167":[2,66]},{"1":[2,69],"4":[2,69],"29":[2,69],"30":[2,69],"46":[2,69],"51":[2,69],"59":[2,69],"62":[2,69],"73":[2,69],"74":[2,69],"75":[2,69],"76":[2,69],"79":[2,69],"80":[2,69],"81":[2,69],"82":[2,69],"85":[2,69],"87":[2,69],"93":[2,69],"95":[2,69],"100":[2,69],"108":[2,69],"110":[2,69],"111":[2,69],"112":[2,69],"117":[2,69],"121":[2,69],"122":[2,69],"123":[2,69],"130":[2,69],"131":[2,69],"132":[2,69],"134":[2,69],"135":[2,69],"137":[2,69],"138":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69],"162":[2,69],"163":[2,69],"164":[2,69],"165":[2,69],"166":[2,69],"167":[2,69]},{"4":[2,89],"28":208,"29":[2,89],"31":206,"32":[1,88],"33":207,"34":[1,86],"35":[1,87],"47":205,"50":[1,56],"59":[2,89],"84":204,"85":[2,89]},{"1":[2,33],"4":[2,33],"29":[2,33],"30":[2,33],"48":[2,33],"51":[2,33],"59":[2,33],"62":[2,33],"73":[2,33],"74":[2,33],"75":[2,33],"76":[2,33],"79":[2,33],"80":[2,33],"81":[2,33],"82":[2,33],"85":[2,33],"93":[2,33],"95":[2,33],"100":[2,33],"108":[2,33],"110":[2,33],"111":[2,33],"112":[2,33],"117":[2,33],"121":[2,33],"122":[2,33],"123":[2,33],"130":[2,33],"131":[2,33],"132":[2,33],"134":[2,33],"135":[2,33],"137":[2,33],"138":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33],"162":[2,33],"163":[2,33],"164":[2,33],"165":[2,33],"166":[2,33],"167":[2,33]},{"1":[2,34],"4":[2,34],"29":[2,34],"30":[2,34],"48":[2,34],"51":[2,34],"59":[2,34],"62":[2,34],"73":[2,34],"74":[2,34],"75":[2,34],"76":[2,34],"79":[2,34],"80":[2,34],"81":[2,34],"82":[2,34],"85":[2,34],"93":[2,34],"95":[2,34],"100":[2,34],"108":[2,34],"110":[2,34],"111":[2,34],"112":[2,34],"117":[2,34],"121":[2,34],"122":[2,34],"123":[2,34],"130":[2,34],"131":[2,34],"132":[2,34],"134":[2,34],"135":[2,34],"137":[2,34],"138":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34],"162":[2,34],"163":[2,34],"164":[2,34],"165":[2,34],"166":[2,34],"167":[2,34]},{"1":[2,32],"4":[2,32],"29":[2,32],"30":[2,32],"46":[2,32],"48":[2,32],"51":[2,32],"59":[2,32],"62":[2,32],"73":[2,32],"74":[2,32],"75":[2,32],"76":[2,32],"79":[2,32],"80":[2,32],"81":[2,32],"82":[2,32],"85":[2,32],"87":[2,32],"93":[2,32],"95":[2,32],"100":[2,32],"108":[2,32],"110":[2,32],"111":[2,32],"112":[2,32],"117":[2,32],"121":[2,32],"122":[2,32],"123":[2,32],"130":[2,32],"131":[2,32],"132":[2,32],"134":[2,32],"135":[2,32],"137":[2,32],"138":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32],"162":[2,32],"163":[2,32],"164":[2,32],"165":[2,32],"166":[2,32],"167":[2,32]},{"1":[2,31],"4":[2,31],"29":[2,31],"30":[2,31],"51":[2,31],"59":[2,31],"62":[2,31],"80":[2,31],"85":[2,31],"95":[2,31],"100":[2,31],"104":[2,31],"105":[2,31],"108":[2,31],"110":[2,31],"111":[2,31],"112":[2,31],"117":[2,31],"121":[2,31],"122":[2,31],"123":[2,31],"126":[2,31],"128":[2,31],"130":[2,31],"131":[2,31],"132":[2,31],"134":[2,31],"135":[2,31],"137":[2,31],"138":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31],"162":[2,31],"163":[2,31],"164":[2,31],"165":[2,31],"166":[2,31],"167":[2,31]},{"1":[2,7],"4":[2,7],"7":209,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,7],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,4]},{"4":[1,90],"30":[1,210]},{"1":[2,30],"4":[2,30],"29":[2,30],"30":[2,30],"51":[2,30],"59":[2,30],"62":[2,30],"80":[2,30],"85":[2,30],"95":[2,30],"100":[2,30],"104":[2,30],"105":[2,30],"108":[2,30],"110":[2,30],"111":[2,30],"112":[2,30],"117":[2,30],"121":[2,30],"122":[2,30],"123":[2,30],"126":[2,30],"128":[2,30],"130":[2,30],"131":[2,30],"132":[2,30],"134":[2,30],"135":[2,30],"137":[2,30],"138":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30],"162":[2,30],"163":[2,30],"164":[2,30],"165":[2,30],"166":[2,30],"167":[2,30]},{"1":[2,188],"4":[2,188],"29":[2,188],"30":[2,188],"51":[2,188],"59":[2,188],"62":[2,188],"80":[2,188],"85":[2,188],"95":[2,188],"100":[2,188],"108":[2,188],"110":[2,188],"111":[2,188],"112":[2,188],"117":[2,188],"121":[2,188],"122":[2,188],"123":[2,188],"130":[2,188],"131":[2,188],"132":[2,188],"134":[2,188],"135":[2,188],"137":[2,188],"138":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188],"162":[2,188],"163":[2,188],"164":[2,188],"165":[2,188],"166":[2,188],"167":[2,188]},{"1":[2,189],"4":[2,189],"29":[2,189],"30":[2,189],"51":[2,189],"59":[2,189],"62":[2,189],"80":[2,189],"85":[2,189],"95":[2,189],"100":[2,189],"108":[2,189],"110":[2,189],"111":[2,189],"112":[2,189],"117":[2,189],"121":[2,189],"122":[2,189],"123":[2,189],"130":[2,189],"131":[2,189],"132":[2,189],"134":[2,189],"135":[2,189],"137":[2,189],"138":[2,189],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189],"162":[2,189],"163":[2,189],"164":[2,189],"165":[2,189],"166":[2,189],"167":[2,189]},{"8":211,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":212,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":213,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":214,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":215,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":216,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":217,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":218,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":219,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":220,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":221,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":222,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":223,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":224,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":225,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":226,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":227,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":228,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":229,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":230,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":231,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":232,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":233,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":234,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":235,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":236,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":237,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":238,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":239,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":240,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":241,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"121":[1,242],"122":[1,243]},{"8":244,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":245,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,141],"4":[2,141],"29":[2,141],"30":[2,141],"51":[2,141],"59":[2,141],"62":[2,141],"80":[2,141],"85":[2,141],"95":[2,141],"100":[2,141],"108":[2,141],"110":[2,141],"111":[2,141],"112":[2,141],"117":[2,141],"121":[2,141],"122":[2,141],"123":[2,141],"130":[2,141],"131":[2,141],"132":[2,141],"134":[2,141],"135":[2,141],"137":[2,141],"138":[2,141],"141":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"147":[2,141],"148":[2,141],"149":[2,141],"150":[2,141],"151":[2,141],"152":[2,141],"153":[2,141],"154":[2,141],"155":[2,141],"156":[2,141],"157":[2,141],"158":[2,141],"159":[2,141],"160":[2,141],"161":[2,141],"162":[2,141],"163":[2,141],"164":[2,141],"165":[2,141],"166":[2,141],"167":[2,141]},{"116":246,"121":[1,176],"122":[1,177]},{"62":[1,247]},{"1":[2,53],"4":[2,53],"29":[2,53],"30":[2,53],"51":[2,53],"59":[2,53],"62":[2,53],"80":[2,53],"85":[2,53],"95":[2,53],"100":[2,53],"108":[2,53],"110":[2,53],"111":[2,53],"112":[2,53],"117":[2,53],"121":[2,53],"122":[2,53],"123":[2,53],"130":[2,53],"131":[2,53],"132":[2,53],"134":[2,53],"135":[2,53],"137":[2,53],"138":[2,53],"141":[2,53],"142":[2,53],"143":[2,53],"144":[2,53],"145":[2,53],"146":[2,53],"147":[2,53],"148":[2,53],"149":[2,53],"150":[2,53],"151":[2,53],"152":[2,53],"153":[2,53],"154":[2,53],"155":[2,53],"156":[2,53],"157":[2,53],"158":[2,53],"159":[2,53],"160":[2,53],"161":[2,53],"162":[2,53],"163":[2,53],"164":[2,53],"165":[2,53],"166":[2,53],"167":[2,53]},{"8":248,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":249,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,140],"4":[2,140],"29":[2,140],"30":[2,140],"51":[2,140],"59":[2,140],"62":[2,140],"80":[2,140],"85":[2,140],"95":[2,140],"100":[2,140],"108":[2,140],"110":[2,140],"111":[2,140],"112":[2,140],"117":[2,140],"121":[2,140],"122":[2,140],"123":[2,140],"130":[2,140],"131":[2,140],"132":[2,140],"134":[2,140],"135":[2,140],"137":[2,140],"138":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140],"161":[2,140],"162":[2,140],"163":[2,140],"164":[2,140],"165":[2,140],"166":[2,140],"167":[2,140]},{"116":250,"121":[1,176],"122":[1,177]},{"1":[2,109],"4":[2,109],"29":[2,109],"30":[2,109],"51":[2,109],"59":[2,109],"62":[2,109],"73":[2,109],"74":[2,109],"75":[2,109],"76":[2,109],"79":[2,109],"80":[2,109],"81":[2,109],"82":[2,109],"85":[2,109],"93":[2,109],"95":[2,109],"100":[2,109],"108":[2,109],"110":[2,109],"111":[2,109],"112":[2,109],"117":[2,109],"121":[2,109],"122":[2,109],"123":[2,109],"130":[2,109],"131":[2,109],"132":[2,109],"134":[2,109],"135":[2,109],"137":[2,109],"138":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109],"162":[2,109],"163":[2,109],"164":[2,109],"165":[2,109],"166":[2,109],"167":[2,109]},{"1":[2,67],"4":[2,67],"29":[2,67],"30":[2,67],"46":[2,67],"51":[2,67],"59":[2,67],"62":[2,67],"73":[2,67],"74":[2,67],"75":[2,67],"76":[2,67],"79":[2,67],"80":[2,67],"81":[2,67],"82":[2,67],"85":[2,67],"87":[2,67],"93":[2,67],"95":[2,67],"100":[2,67],"108":[2,67],"110":[2,67],"111":[2,67],"112":[2,67],"117":[2,67],"121":[2,67],"122":[2,67],"123":[2,67],"130":[2,67],"131":[2,67],"132":[2,67],"134":[2,67],"135":[2,67],"137":[2,67],"138":[2,67],"141":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67],"162":[2,67],"163":[2,67],"164":[2,67],"165":[2,67],"166":[2,67],"167":[2,67]},{"4":[2,122],"8":252,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,122],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,122],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"94":251,"95":[2,122],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"31":253,"32":[1,88]},{"31":254,"32":[1,88]},{"1":[2,81],"4":[2,81],"29":[2,81],"30":[2,81],"46":[2,81],"51":[2,81],"59":[2,81],"62":[2,81],"73":[2,81],"74":[2,81],"75":[2,81],"76":[2,81],"79":[2,81],"80":[2,81],"81":[2,81],"82":[2,81],"85":[2,81],"87":[2,81],"93":[2,81],"95":[2,81],"100":[2,81],"108":[2,81],"110":[2,81],"111":[2,81],"112":[2,81],"117":[2,81],"121":[2,81],"122":[2,81],"123":[2,81],"130":[2,81],"131":[2,81],"132":[2,81],"134":[2,81],"135":[2,81],"137":[2,81],"138":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81],"162":[2,81],"163":[2,81],"164":[2,81],"165":[2,81],"166":[2,81],"167":[2,81]},{"31":255,"32":[1,88]},{"1":[2,83],"4":[2,83],"29":[2,83],"30":[2,83],"46":[2,83],"51":[2,83],"59":[2,83],"62":[2,83],"73":[2,83],"74":[2,83],"75":[2,83],"76":[2,83],"79":[2,83],"80":[2,83],"81":[2,83],"82":[2,83],"85":[2,83],"87":[2,83],"93":[2,83],"95":[2,83],"100":[2,83],"108":[2,83],"110":[2,83],"111":[2,83],"112":[2,83],"117":[2,83],"121":[2,83],"122":[2,83],"123":[2,83],"130":[2,83],"131":[2,83],"132":[2,83],"134":[2,83],"135":[2,83],"137":[2,83],"138":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83],"162":[2,83],"163":[2,83],"164":[2,83],"165":[2,83],"166":[2,83],"167":[2,83]},{"1":[2,84],"4":[2,84],"29":[2,84],"30":[2,84],"46":[2,84],"51":[2,84],"59":[2,84],"62":[2,84],"73":[2,84],"74":[2,84],"75":[2,84],"76":[2,84],"79":[2,84],"80":[2,84],"81":[2,84],"82":[2,84],"85":[2,84],"87":[2,84],"93":[2,84],"95":[2,84],"100":[2,84],"108":[2,84],"110":[2,84],"111":[2,84],"112":[2,84],"117":[2,84],"121":[2,84],"122":[2,84],"123":[2,84],"130":[2,84],"131":[2,84],"132":[2,84],"134":[2,84],"135":[2,84],"137":[2,84],"138":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84],"162":[2,84],"163":[2,84],"164":[2,84],"165":[2,84],"166":[2,84],"167":[2,84]},{"8":256,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"77":257,"79":[1,258],"81":[1,148],"82":[1,149]},{"77":259,"79":[1,258],"81":[1,148],"82":[1,149]},{"8":260,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,110],"4":[2,110],"29":[2,110],"30":[2,110],"51":[2,110],"59":[2,110],"62":[2,110],"73":[2,110],"74":[2,110],"75":[2,110],"76":[2,110],"79":[2,110],"80":[2,110],"81":[2,110],"82":[2,110],"85":[2,110],"93":[2,110],"95":[2,110],"100":[2,110],"108":[2,110],"110":[2,110],"111":[2,110],"112":[2,110],"117":[2,110],"121":[2,110],"122":[2,110],"123":[2,110],"130":[2,110],"131":[2,110],"132":[2,110],"134":[2,110],"135":[2,110],"137":[2,110],"138":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110],"162":[2,110],"163":[2,110],"164":[2,110],"165":[2,110],"166":[2,110],"167":[2,110]},{"1":[2,68],"4":[2,68],"29":[2,68],"30":[2,68],"46":[2,68],"51":[2,68],"59":[2,68],"62":[2,68],"73":[2,68],"74":[2,68],"75":[2,68],"76":[2,68],"79":[2,68],"80":[2,68],"81":[2,68],"82":[2,68],"85":[2,68],"87":[2,68],"93":[2,68],"95":[2,68],"100":[2,68],"108":[2,68],"110":[2,68],"111":[2,68],"112":[2,68],"117":[2,68],"121":[2,68],"122":[2,68],"123":[2,68],"130":[2,68],"131":[2,68],"132":[2,68],"134":[2,68],"135":[2,68],"137":[2,68],"138":[2,68],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68],"164":[2,68],"165":[2,68],"166":[2,68],"167":[2,68]},{"1":[2,106],"4":[2,106],"29":[2,106],"30":[2,106],"51":[2,106],"59":[2,106],"62":[2,106],"64":152,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,106],"81":[1,148],"82":[1,149],"85":[2,106],"92":151,"93":[1,140],"95":[2,106],"100":[2,106],"108":[2,106],"110":[2,106],"111":[2,106],"112":[2,106],"117":[2,106],"121":[2,106],"122":[2,106],"123":[2,106],"130":[2,106],"131":[2,106],"132":[2,106],"134":[2,106],"135":[2,106],"137":[2,106],"138":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106],"161":[2,106],"162":[2,106],"163":[2,106],"164":[2,106],"165":[2,106],"166":[2,106],"167":[2,106]},{"1":[2,107],"4":[2,107],"29":[2,107],"30":[2,107],"51":[2,107],"59":[2,107],"62":[2,107],"64":139,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,107],"81":[1,148],"82":[1,149],"85":[2,107],"92":138,"93":[1,140],"95":[2,107],"100":[2,107],"108":[2,107],"110":[2,107],"111":[2,107],"112":[2,107],"117":[2,107],"121":[2,107],"122":[2,107],"123":[2,107],"130":[2,107],"131":[2,107],"132":[2,107],"134":[2,107],"135":[2,107],"137":[2,107],"138":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107],"161":[2,107],"162":[2,107],"163":[2,107],"164":[2,107],"165":[2,107],"166":[2,107],"167":[2,107]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"51":[2,73],"59":[2,73],"62":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"76":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"82":[2,73],"85":[2,73],"93":[2,73],"95":[2,73],"100":[2,73],"108":[2,73],"110":[2,73],"111":[2,73],"112":[2,73],"117":[2,73],"121":[2,73],"122":[2,73],"123":[2,73],"130":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"137":[2,73],"138":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73],"164":[2,73],"165":[2,73],"166":[2,73],"167":[2,73]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"51":[2,70],"59":[2,70],"62":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"76":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"82":[2,70],"85":[2,70],"93":[2,70],"95":[2,70],"100":[2,70],"108":[2,70],"110":[2,70],"111":[2,70],"112":[2,70],"117":[2,70],"121":[2,70],"122":[2,70],"123":[2,70],"130":[2,70],"131":[2,70],"132":[2,70],"134":[2,70],"135":[2,70],"137":[2,70],"138":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70],"164":[2,70],"165":[2,70],"166":[2,70],"167":[2,70]},{"54":[1,261],"59":[1,262]},{"54":[2,61],"59":[2,61],"62":[1,263]},{"54":[2,63],"59":[2,63],"62":[2,63]},{"1":[2,55],"4":[2,55],"29":[2,55],"30":[2,55],"51":[2,55],"59":[2,55],"62":[2,55],"80":[2,55],"85":[2,55],"95":[2,55],"100":[2,55],"108":[2,55],"110":[2,55],"111":[2,55],"112":[2,55],"117":[2,55],"121":[2,55],"122":[2,55],"123":[2,55],"130":[2,55],"131":[2,55],"132":[2,55],"134":[2,55],"135":[2,55],"137":[2,55],"138":[2,55],"141":[2,55],"142":[2,55],"143":[2,55],"144":[2,55],"145":[2,55],"146":[2,55],"147":[2,55],"148":[2,55],"149":[2,55],"150":[2,55],"151":[2,55],"152":[2,55],"153":[2,55],"154":[2,55],"155":[2,55],"156":[2,55],"157":[2,55],"158":[2,55],"159":[2,55],"160":[2,55],"161":[2,55],"162":[2,55],"163":[2,55],"164":[2,55],"165":[2,55],"166":[2,55],"167":[2,55]},{"28":89,"50":[1,56]},{"1":[2,179],"4":[2,179],"29":[2,179],"30":[2,179],"51":[1,133],"59":[2,179],"62":[2,179],"80":[2,179],"85":[2,179],"95":[2,179],"100":[2,179],"108":[2,179],"109":130,"110":[2,179],"111":[2,179],"112":[2,179],"115":131,"117":[2,179],"121":[2,179],"122":[2,179],"123":[2,179],"130":[2,179],"131":[2,179],"134":[2,179],"135":[2,179],"141":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"146":[2,179],"147":[2,179],"148":[2,179],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[2,179],"162":[2,179],"163":[2,179],"164":[2,179],"165":[2,179],"166":[2,179],"167":[2,179]},{"109":136,"110":[1,79],"112":[1,80],"115":137,"117":[1,82],"130":[1,134],"131":[1,135]},{"1":[2,180],"4":[2,180],"29":[2,180],"30":[2,180],"51":[1,133],"59":[2,180],"62":[2,180],"80":[2,180],"85":[2,180],"95":[2,180],"100":[2,180],"108":[2,180],"109":130,"110":[2,180],"111":[2,180],"112":[2,180],"115":131,"117":[2,180],"121":[2,180],"122":[2,180],"123":[2,180],"130":[2,180],"131":[2,180],"134":[2,180],"135":[2,180],"141":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"146":[2,180],"147":[2,180],"148":[2,180],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[2,180],"162":[2,180],"163":[2,180],"164":[2,180],"165":[2,180],"166":[2,180],"167":[2,180]},{"1":[2,181],"4":[2,181],"29":[2,181],"30":[2,181],"51":[1,133],"59":[2,181],"62":[2,181],"80":[2,181],"85":[2,181],"95":[2,181],"100":[2,181],"108":[2,181],"109":130,"110":[2,181],"111":[2,181],"112":[2,181],"115":131,"117":[2,181],"121":[2,181],"122":[2,181],"123":[2,181],"130":[2,181],"131":[2,181],"134":[2,181],"135":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181],"161":[2,181],"162":[2,181],"163":[2,181],"164":[2,181],"165":[2,181],"166":[2,181],"167":[2,181]},{"1":[2,182],"4":[2,182],"29":[2,182],"30":[2,182],"51":[1,133],"59":[2,182],"62":[2,182],"80":[2,182],"85":[2,182],"95":[2,182],"100":[2,182],"108":[2,182],"109":130,"110":[2,182],"111":[2,182],"112":[2,182],"115":131,"117":[2,182],"121":[2,182],"122":[2,182],"123":[2,182],"130":[2,182],"131":[2,182],"134":[2,182],"135":[2,182],"141":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"146":[2,182],"147":[2,182],"148":[2,182],"149":[2,182],"150":[2,182],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182],"161":[2,182],"162":[2,182],"163":[2,182],"164":[2,182],"165":[2,182],"166":[2,182],"167":[2,182]},{"1":[2,183],"4":[2,183],"29":[2,183],"30":[2,183],"51":[1,133],"59":[2,183],"62":[2,183],"80":[2,183],"85":[2,183],"95":[2,183],"100":[2,183],"108":[2,183],"109":130,"110":[2,183],"111":[2,183],"112":[2,183],"115":131,"117":[2,183],"121":[2,183],"122":[2,183],"123":[2,183],"130":[2,183],"131":[2,183],"134":[2,183],"135":[2,183],"141":[2,183],"142":[2,183],"143":[2,183],"144":[2,183],"145":[2,183],"146":[2,183],"147":[2,183],"148":[2,183],"149":[2,183],"150":[2,183],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183],"162":[2,183],"163":[2,183],"164":[2,183],"165":[2,183],"166":[2,183],"167":[2,183]},{"1":[2,184],"4":[2,184],"29":[2,184],"30":[2,184],"51":[1,133],"59":[2,184],"62":[2,184],"80":[2,184],"85":[2,184],"95":[2,184],"100":[2,184],"108":[2,184],"109":130,"110":[2,184],"111":[2,184],"112":[2,184],"115":131,"117":[2,184],"121":[2,184],"122":[2,184],"123":[2,184],"130":[2,184],"131":[2,184],"134":[2,184],"135":[2,184],"141":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"147":[2,184],"148":[2,184],"149":[2,184],"150":[2,184],"151":[2,184],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184],"162":[2,184],"163":[2,184],"164":[2,184],"165":[2,184],"166":[2,184],"167":[2,184]},{"1":[2,185],"4":[2,185],"29":[2,185],"30":[2,185],"51":[1,133],"59":[2,185],"62":[2,185],"80":[2,185],"85":[2,185],"95":[2,185],"100":[2,185],"108":[2,185],"109":130,"110":[2,185],"111":[2,185],"112":[2,185],"115":131,"117":[2,185],"121":[2,185],"122":[2,185],"123":[2,185],"130":[2,185],"131":[2,185],"134":[2,185],"135":[2,185],"141":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"147":[2,185],"148":[2,185],"149":[2,185],"150":[2,185],"151":[2,185],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185],"162":[2,185],"163":[2,185],"164":[2,185],"165":[2,185],"166":[2,185],"167":[2,185]},{"1":[2,186],"4":[2,186],"29":[2,186],"30":[2,186],"51":[1,133],"59":[2,186],"62":[2,186],"80":[2,186],"85":[2,186],"95":[2,186],"100":[2,186],"108":[2,186],"109":130,"110":[2,186],"111":[2,186],"112":[2,186],"115":131,"117":[2,186],"121":[2,186],"122":[2,186],"123":[2,186],"130":[2,186],"131":[2,186],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[2,186],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186],"162":[2,186],"163":[2,186],"164":[2,186],"165":[2,186],"166":[2,186],"167":[1,124]},{"1":[2,187],"4":[2,187],"29":[2,187],"30":[2,187],"51":[1,133],"59":[2,187],"62":[2,187],"80":[2,187],"85":[2,187],"95":[2,187],"100":[2,187],"108":[2,187],"109":130,"110":[2,187],"111":[2,187],"112":[2,187],"115":131,"117":[2,187],"121":[2,187],"122":[2,187],"123":[2,187],"130":[2,187],"131":[2,187],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[2,187],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187],"162":[2,187],"163":[2,187],"164":[2,187],"165":[2,187],"166":[2,187],"167":[1,124]},{"4":[1,161],"6":265,"29":[1,6],"130":[1,264]},{"103":266,"104":[1,267],"105":[1,268]},{"1":[2,139],"4":[2,139],"29":[2,139],"30":[2,139],"51":[2,139],"59":[2,139],"62":[2,139],"80":[2,139],"85":[2,139],"95":[2,139],"100":[2,139],"108":[2,139],"110":[2,139],"111":[2,139],"112":[2,139],"117":[2,139],"121":[2,139],"122":[2,139],"123":[2,139],"130":[2,139],"131":[2,139],"132":[2,139],"134":[2,139],"135":[2,139],"137":[2,139],"138":[2,139],"141":[2,139],"142":[2,139],"143":[2,139],"144":[2,139],"145":[2,139],"146":[2,139],"147":[2,139],"148":[2,139],"149":[2,139],"150":[2,139],"151":[2,139],"152":[2,139],"153":[2,139],"154":[2,139],"155":[2,139],"156":[2,139],"157":[2,139],"158":[2,139],"159":[2,139],"160":[2,139],"161":[2,139],"162":[2,139],"163":[2,139],"164":[2,139],"165":[2,139],"166":[2,139],"167":[2,139]},{"4":[1,161],"6":269,"29":[1,6]},{"8":270,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":271,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"29":[1,272],"51":[1,133],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"125":273,"127":274,"128":[1,275]},{"14":276,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":155,"63":156,"65":183,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"97":[1,72],"98":[1,73],"99":[1,71],"107":[1,70]},{"1":[2,94],"4":[2,94],"29":[1,278],"30":[2,94],"51":[2,94],"59":[2,94],"62":[2,94],"73":[2,70],"74":[2,70],"75":[2,70],"76":[2,70],"79":[2,70],"80":[2,94],"81":[2,70],"82":[2,70],"85":[2,94],"87":[1,277],"93":[2,70],"95":[2,94],"100":[2,94],"108":[2,94],"110":[2,94],"111":[2,94],"112":[2,94],"117":[2,94],"121":[2,94],"122":[2,94],"123":[2,94],"130":[2,94],"131":[2,94],"132":[2,94],"134":[2,94],"135":[2,94],"137":[2,94],"138":[2,94],"141":[2,94],"142":[2,94],"143":[2,94],"144":[2,94],"145":[2,94],"146":[2,94],"147":[2,94],"148":[2,94],"149":[2,94],"150":[2,94],"151":[2,94],"152":[2,94],"153":[2,94],"154":[2,94],"155":[2,94],"156":[2,94],"157":[2,94],"158":[2,94],"159":[2,94],"160":[2,94],"161":[2,94],"162":[2,94],"163":[2,94],"164":[2,94],"165":[2,94],"166":[2,94],"167":[2,94]},{"64":139,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"81":[1,148],"82":[1,149],"92":138,"93":[1,140]},{"64":152,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"81":[1,148],"82":[1,149],"92":151,"93":[1,140]},{"1":[2,50],"4":[2,50],"30":[2,50],"51":[1,133],"62":[1,132],"108":[2,50],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[2,50],"131":[2,50],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,133],"4":[2,133],"30":[2,133],"51":[1,133],"62":[1,132],"108":[2,133],"109":130,"110":[2,133],"112":[2,133],"115":131,"117":[2,133],"121":[1,125],"122":[1,126],"130":[2,133],"131":[2,133],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"108":[1,279]},{"4":[2,123],"29":[2,123],"51":[1,133],"59":[2,123],"62":[1,280],"100":[2,123],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[2,58],"29":[2,58],"58":281,"59":[1,282],"100":[2,58]},{"1":[2,116],"4":[2,116],"29":[2,116],"30":[2,116],"46":[2,116],"48":[2,116],"51":[2,116],"59":[2,116],"62":[2,116],"73":[2,116],"74":[2,116],"75":[2,116],"76":[2,116],"79":[2,116],"80":[2,116],"81":[2,116],"82":[2,116],"85":[2,116],"87":[2,116],"93":[2,116],"95":[2,116],"100":[2,116],"108":[2,116],"110":[2,116],"111":[2,116],"112":[2,116],"117":[2,116],"121":[2,116],"122":[2,116],"123":[2,116],"130":[2,116],"131":[2,116],"132":[2,116],"134":[2,116],"135":[2,116],"137":[2,116],"138":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"146":[2,116],"147":[2,116],"148":[2,116],"149":[2,116],"150":[2,116],"151":[2,116],"152":[2,116],"153":[2,116],"154":[2,116],"155":[2,116],"156":[2,116],"157":[2,116],"158":[2,116],"159":[2,116],"160":[2,116],"161":[2,116],"162":[2,116],"163":[2,116],"164":[2,116],"165":[2,116],"166":[2,116],"167":[2,116]},{"1":[2,113],"4":[2,113],"29":[2,113],"30":[2,113],"51":[2,113],"59":[2,113],"62":[2,113],"80":[2,113],"85":[2,113],"95":[2,113],"100":[2,113],"108":[2,113],"110":[2,113],"111":[2,113],"112":[2,113],"117":[2,113],"121":[2,113],"122":[2,113],"123":[2,113],"130":[2,113],"131":[2,113],"132":[2,113],"134":[2,113],"135":[2,113],"137":[2,113],"138":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113],"162":[2,113],"163":[2,113],"164":[2,113],"165":[2,113],"166":[2,113],"167":[2,113]},{"4":[1,161],"6":283,"29":[1,6],"51":[1,133],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[1,161],"6":284,"29":[1,6],"51":[1,133],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,135],"4":[2,135],"29":[2,135],"30":[2,135],"51":[1,133],"59":[2,135],"62":[1,132],"80":[2,135],"85":[2,135],"95":[2,135],"100":[2,135],"108":[2,135],"109":130,"110":[1,79],"111":[1,285],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,135],"130":[2,135],"131":[2,135],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,137],"4":[2,137],"29":[2,137],"30":[2,137],"51":[1,133],"59":[2,137],"62":[1,132],"80":[2,137],"85":[2,137],"95":[2,137],"100":[2,137],"108":[2,137],"109":130,"110":[1,79],"111":[1,286],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,137],"130":[2,137],"131":[2,137],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,143],"4":[2,143],"29":[2,143],"30":[2,143],"51":[2,143],"59":[2,143],"62":[2,143],"80":[2,143],"85":[2,143],"95":[2,143],"100":[2,143],"108":[2,143],"110":[2,143],"111":[2,143],"112":[2,143],"117":[2,143],"121":[2,143],"122":[2,143],"123":[2,143],"130":[2,143],"131":[2,143],"132":[2,143],"134":[2,143],"135":[2,143],"137":[2,143],"138":[2,143],"141":[2,143],"142":[2,143],"143":[2,143],"144":[2,143],"145":[2,143],"146":[2,143],"147":[2,143],"148":[2,143],"149":[2,143],"150":[2,143],"151":[2,143],"152":[2,143],"153":[2,143],"154":[2,143],"155":[2,143],"156":[2,143],"157":[2,143],"158":[2,143],"159":[2,143],"160":[2,143],"161":[2,143],"162":[2,143],"163":[2,143],"164":[2,143],"165":[2,143],"166":[2,143],"167":[2,143]},{"1":[2,144],"4":[2,144],"29":[2,144],"30":[2,144],"51":[1,133],"59":[2,144],"62":[1,132],"80":[2,144],"85":[2,144],"95":[2,144],"100":[2,144],"108":[2,144],"109":130,"110":[1,79],"111":[2,144],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,144],"130":[2,144],"131":[2,144],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"121":[2,148],"122":[2,148]},{"31":200,"32":[1,88],"67":201,"68":202,"83":[1,85],"99":[1,203],"118":287,"120":199},{"59":[1,288],"121":[2,153],"122":[2,153]},{"59":[2,150],"121":[2,150],"122":[2,150]},{"59":[2,151],"121":[2,151],"122":[2,151]},{"59":[2,152],"121":[2,152],"122":[2,152]},{"4":[2,122],"8":252,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,122],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,122],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"94":188,"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"100":[2,122],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[2,58],"29":[2,58],"58":289,"59":[1,290],"85":[2,58]},{"4":[2,90],"29":[2,90],"30":[2,90],"59":[2,90],"85":[2,90]},{"4":[2,45],"29":[2,45],"30":[2,45],"48":[1,291],"59":[2,45],"85":[2,45]},{"4":[2,46],"29":[2,46],"30":[2,46],"48":[1,292],"59":[2,46],"85":[2,46]},{"4":[2,49],"29":[2,49],"30":[2,49],"59":[2,49],"85":[2,49]},{"1":[2,6],"4":[2,6],"30":[2,6]},{"1":[2,29],"4":[2,29],"29":[2,29],"30":[2,29],"51":[2,29],"59":[2,29],"62":[2,29],"80":[2,29],"85":[2,29],"95":[2,29],"100":[2,29],"104":[2,29],"105":[2,29],"108":[2,29],"110":[2,29],"111":[2,29],"112":[2,29],"117":[2,29],"121":[2,29],"122":[2,29],"123":[2,29],"126":[2,29],"128":[2,29],"130":[2,29],"131":[2,29],"132":[2,29],"134":[2,29],"135":[2,29],"137":[2,29],"138":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29],"162":[2,29],"163":[2,29],"164":[2,29],"165":[2,29],"166":[2,29],"167":[2,29]},{"1":[2,190],"4":[2,190],"29":[2,190],"30":[2,190],"51":[1,133],"59":[2,190],"62":[2,190],"80":[2,190],"85":[2,190],"95":[2,190],"100":[2,190],"108":[2,190],"109":130,"110":[2,190],"111":[2,190],"112":[2,190],"115":131,"117":[2,190],"121":[2,190],"122":[2,190],"123":[2,190],"130":[2,190],"131":[2,190],"132":[1,127],"134":[2,190],"135":[2,190],"137":[1,94],"138":[1,95],"141":[2,190],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190],"162":[2,190],"163":[2,190],"164":[2,190],"165":[2,190],"166":[2,190],"167":[2,190]},{"1":[2,191],"4":[2,191],"29":[2,191],"30":[2,191],"51":[1,133],"59":[2,191],"62":[2,191],"80":[2,191],"85":[2,191],"95":[2,191],"100":[2,191],"108":[2,191],"109":130,"110":[2,191],"111":[2,191],"112":[2,191],"115":131,"117":[2,191],"121":[2,191],"122":[2,191],"123":[2,191],"130":[2,191],"131":[2,191],"132":[1,127],"134":[2,191],"135":[2,191],"137":[1,94],"138":[1,95],"141":[2,191],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191],"162":[2,191],"163":[2,191],"164":[2,191],"165":[2,191],"166":[2,191],"167":[2,191]},{"1":[2,192],"4":[2,192],"29":[2,192],"30":[2,192],"51":[1,133],"59":[2,192],"62":[2,192],"80":[2,192],"85":[2,192],"95":[2,192],"100":[2,192],"108":[2,192],"109":130,"110":[2,192],"111":[2,192],"112":[2,192],"115":131,"117":[2,192],"121":[2,192],"122":[2,192],"123":[2,192],"130":[2,192],"131":[2,192],"132":[1,127],"134":[2,192],"135":[2,192],"137":[1,94],"138":[1,95],"141":[2,192],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192],"162":[2,192],"163":[2,192],"164":[2,192],"165":[2,192],"166":[2,192],"167":[2,192]},{"1":[2,193],"4":[2,193],"29":[2,193],"30":[2,193],"51":[1,133],"59":[2,193],"62":[2,193],"80":[2,193],"85":[2,193],"95":[2,193],"100":[2,193],"108":[2,193],"109":130,"110":[2,193],"111":[2,193],"112":[2,193],"115":131,"117":[2,193],"121":[2,193],"122":[2,193],"123":[2,193],"130":[2,193],"131":[2,193],"132":[1,127],"134":[2,193],"135":[2,193],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[2,193],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193],"162":[2,193],"163":[2,193],"164":[2,193],"165":[2,193],"166":[2,193],"167":[2,193]},{"1":[2,194],"4":[2,194],"29":[2,194],"30":[2,194],"51":[1,133],"59":[2,194],"62":[2,194],"80":[2,194],"85":[2,194],"95":[2,194],"100":[2,194],"108":[2,194],"109":130,"110":[2,194],"111":[2,194],"112":[2,194],"115":131,"117":[2,194],"121":[2,194],"122":[2,194],"123":[2,194],"130":[2,194],"131":[2,194],"132":[1,127],"134":[2,194],"135":[2,194],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[2,194],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194],"162":[2,194],"163":[2,194],"164":[2,194],"165":[2,194],"166":[2,194],"167":[2,194]},{"1":[2,195],"4":[2,195],"29":[2,195],"30":[2,195],"51":[1,133],"59":[2,195],"62":[2,195],"80":[2,195],"85":[2,195],"95":[2,195],"100":[2,195],"108":[2,195],"109":130,"110":[2,195],"111":[2,195],"112":[2,195],"115":131,"117":[2,195],"121":[2,195],"122":[2,195],"123":[2,195],"130":[2,195],"131":[2,195],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[2,195],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195],"162":[2,195],"163":[2,195],"164":[2,195],"165":[2,195],"166":[2,195],"167":[2,195]},{"1":[2,196],"4":[2,196],"29":[2,196],"30":[2,196],"51":[1,133],"59":[2,196],"62":[2,196],"80":[2,196],"85":[2,196],"95":[2,196],"100":[2,196],"108":[2,196],"109":130,"110":[2,196],"111":[2,196],"112":[2,196],"115":131,"117":[2,196],"121":[2,196],"122":[2,196],"123":[2,196],"130":[2,196],"131":[2,196],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[2,196],"145":[2,196],"146":[2,196],"147":[2,196],"148":[2,196],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[2,196],"162":[2,196],"163":[2,196],"164":[2,196],"165":[2,196],"166":[2,196],"167":[2,196]},{"1":[2,197],"4":[2,197],"29":[2,197],"30":[2,197],"51":[1,133],"59":[2,197],"62":[2,197],"80":[2,197],"85":[2,197],"95":[2,197],"100":[2,197],"108":[2,197],"109":130,"110":[2,197],"111":[2,197],"112":[2,197],"115":131,"117":[2,197],"121":[2,197],"122":[2,197],"123":[2,197],"130":[2,197],"131":[2,197],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[2,197],"145":[2,197],"146":[2,197],"147":[2,197],"148":[2,197],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[2,197],"162":[2,197],"163":[2,197],"164":[2,197],"165":[2,197],"166":[2,197],"167":[2,197]},{"1":[2,198],"4":[2,198],"29":[2,198],"30":[2,198],"51":[1,133],"59":[2,198],"62":[2,198],"80":[2,198],"85":[2,198],"95":[2,198],"100":[2,198],"108":[2,198],"109":130,"110":[2,198],"111":[2,198],"112":[2,198],"115":131,"117":[2,198],"121":[2,198],"122":[2,198],"123":[2,198],"130":[2,198],"131":[2,198],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[2,198],"148":[2,198],"149":[2,198],"150":[2,198],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[2,198],"162":[2,198],"163":[2,198],"164":[2,198],"165":[2,198],"166":[2,198],"167":[2,198]},{"1":[2,199],"4":[2,199],"29":[2,199],"30":[2,199],"51":[1,133],"59":[2,199],"62":[2,199],"80":[2,199],"85":[2,199],"95":[2,199],"100":[2,199],"108":[2,199],"109":130,"110":[2,199],"111":[2,199],"112":[2,199],"115":131,"117":[2,199],"121":[2,199],"122":[2,199],"123":[2,199],"130":[2,199],"131":[2,199],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[2,199],"148":[2,199],"149":[2,199],"150":[2,199],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[2,199],"162":[2,199],"163":[2,199],"164":[2,199],"165":[2,199],"166":[2,199],"167":[2,199]},{"1":[2,200],"4":[2,200],"29":[2,200],"30":[2,200],"51":[1,133],"59":[2,200],"62":[2,200],"80":[2,200],"85":[2,200],"95":[2,200],"100":[2,200],"108":[2,200],"109":130,"110":[2,200],"111":[2,200],"112":[2,200],"115":131,"117":[2,200],"121":[2,200],"122":[2,200],"123":[2,200],"130":[2,200],"131":[2,200],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[2,200],"148":[2,200],"149":[2,200],"150":[2,200],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[2,200],"162":[2,200],"163":[2,200],"164":[2,200],"165":[2,200],"166":[2,200],"167":[2,200]},{"1":[2,201],"4":[2,201],"29":[2,201],"30":[2,201],"51":[1,133],"59":[2,201],"62":[2,201],"80":[2,201],"85":[2,201],"95":[2,201],"100":[2,201],"108":[2,201],"109":130,"110":[2,201],"111":[2,201],"112":[2,201],"115":131,"117":[2,201],"121":[2,201],"122":[2,201],"123":[2,201],"130":[2,201],"131":[2,201],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[2,201],"151":[2,201],"152":[2,201],"153":[2,201],"154":[2,201],"155":[2,201],"156":[2,201],"157":[2,201],"158":[2,201],"159":[2,201],"160":[2,201],"161":[2,201],"162":[2,201],"163":[2,201],"164":[2,201],"165":[2,201],"166":[2,201],"167":[2,201]},{"1":[2,202],"4":[2,202],"29":[2,202],"30":[2,202],"51":[1,133],"59":[2,202],"62":[2,202],"80":[2,202],"85":[2,202],"95":[2,202],"100":[2,202],"108":[2,202],"109":130,"110":[2,202],"111":[2,202],"112":[2,202],"115":131,"117":[2,202],"121":[2,202],"122":[2,202],"123":[2,202],"130":[2,202],"131":[2,202],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[2,202],"151":[2,202],"152":[2,202],"153":[2,202],"154":[2,202],"155":[2,202],"156":[2,202],"157":[2,202],"158":[2,202],"159":[2,202],"160":[2,202],"161":[2,202],"162":[2,202],"163":[2,202],"164":[2,202],"165":[2,202],"166":[2,202],"167":[2,202]},{"1":[2,203],"4":[2,203],"29":[2,203],"30":[2,203],"51":[1,133],"59":[2,203],"62":[2,203],"80":[2,203],"85":[2,203],"95":[2,203],"100":[2,203],"108":[2,203],"109":130,"110":[2,203],"111":[2,203],"112":[2,203],"115":131,"117":[2,203],"121":[2,203],"122":[2,203],"123":[2,203],"130":[2,203],"131":[2,203],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[2,203],"151":[2,203],"152":[2,203],"153":[2,203],"154":[2,203],"155":[2,203],"156":[2,203],"157":[2,203],"158":[2,203],"159":[2,203],"160":[2,203],"161":[2,203],"162":[2,203],"163":[2,203],"164":[2,203],"165":[2,203],"166":[2,203],"167":[2,203]},{"1":[2,204],"4":[2,204],"29":[2,204],"30":[2,204],"51":[1,133],"59":[2,204],"62":[2,204],"80":[2,204],"85":[2,204],"95":[2,204],"100":[2,204],"108":[2,204],"109":130,"110":[2,204],"111":[2,204],"112":[2,204],"115":131,"117":[2,204],"121":[2,204],"122":[2,204],"123":[2,204],"130":[2,204],"131":[2,204],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[2,204],"151":[2,204],"152":[2,204],"153":[2,204],"154":[2,204],"155":[2,204],"156":[2,204],"157":[2,204],"158":[2,204],"159":[2,204],"160":[2,204],"161":[2,204],"162":[2,204],"163":[2,204],"164":[2,204],"165":[2,204],"166":[2,204],"167":[2,204]},{"1":[2,205],"4":[2,205],"29":[2,205],"30":[2,205],"51":[1,133],"59":[2,205],"62":[2,205],"80":[2,205],"85":[2,205],"95":[2,205],"100":[2,205],"108":[2,205],"109":130,"110":[2,205],"111":[2,205],"112":[2,205],"115":131,"117":[2,205],"121":[2,205],"122":[2,205],"123":[2,205],"130":[2,205],"131":[2,205],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[2,205],"155":[2,205],"156":[2,205],"157":[2,205],"158":[2,205],"159":[2,205],"160":[2,205],"161":[2,205],"162":[2,205],"163":[2,205],"164":[2,205],"165":[2,205],"166":[2,205],"167":[1,124]},{"1":[2,206],"4":[2,206],"29":[2,206],"30":[2,206],"51":[1,133],"59":[2,206],"62":[2,206],"80":[2,206],"85":[2,206],"95":[2,206],"100":[2,206],"108":[2,206],"109":130,"110":[2,206],"111":[2,206],"112":[2,206],"115":131,"117":[2,206],"121":[2,206],"122":[2,206],"123":[2,206],"130":[2,206],"131":[2,206],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[2,206],"155":[2,206],"156":[2,206],"157":[2,206],"158":[2,206],"159":[2,206],"160":[2,206],"161":[2,206],"162":[2,206],"163":[2,206],"164":[2,206],"165":[2,206],"166":[2,206],"167":[1,124]},{"1":[2,207],"4":[2,207],"29":[2,207],"30":[2,207],"51":[1,133],"59":[2,207],"62":[2,207],"80":[2,207],"85":[2,207],"95":[2,207],"100":[2,207],"108":[2,207],"109":130,"110":[2,207],"111":[2,207],"112":[2,207],"115":131,"117":[2,207],"121":[2,207],"122":[2,207],"123":[2,207],"130":[2,207],"131":[2,207],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[2,207],"157":[2,207],"158":[2,207],"159":[2,207],"160":[2,207],"161":[2,207],"162":[2,207],"163":[2,207],"164":[2,207],"165":[2,207],"166":[2,207],"167":[1,124]},{"1":[2,208],"4":[2,208],"29":[2,208],"30":[2,208],"51":[1,133],"59":[2,208],"62":[2,208],"80":[2,208],"85":[2,208],"95":[2,208],"100":[2,208],"108":[2,208],"109":130,"110":[2,208],"111":[2,208],"112":[2,208],"115":131,"117":[2,208],"121":[2,208],"122":[2,208],"123":[2,208],"130":[2,208],"131":[2,208],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[2,208],"157":[2,208],"158":[2,208],"159":[2,208],"160":[2,208],"161":[2,208],"162":[2,208],"163":[2,208],"164":[2,208],"165":[2,208],"166":[2,208],"167":[1,124]},{"1":[2,209],"4":[2,209],"29":[2,209],"30":[2,209],"51":[1,133],"59":[2,209],"62":[2,209],"80":[2,209],"85":[2,209],"95":[2,209],"100":[2,209],"108":[2,209],"109":130,"110":[2,209],"111":[2,209],"112":[2,209],"115":131,"117":[2,209],"121":[2,209],"122":[2,209],"123":[2,209],"130":[2,209],"131":[2,209],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[2,209],"157":[2,209],"158":[2,209],"159":[2,209],"160":[2,209],"161":[2,209],"162":[2,209],"163":[2,209],"164":[2,209],"165":[2,209],"166":[2,209],"167":[1,124]},{"1":[2,210],"4":[2,210],"29":[2,210],"30":[2,210],"51":[1,133],"59":[2,210],"62":[2,210],"80":[2,210],"85":[2,210],"95":[2,210],"100":[2,210],"108":[2,210],"109":130,"110":[2,210],"111":[2,210],"112":[2,210],"115":131,"117":[2,210],"121":[2,210],"122":[2,210],"123":[2,210],"130":[2,210],"131":[2,210],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,211],"4":[2,211],"29":[2,211],"30":[2,211],"51":[1,133],"59":[2,211],"62":[2,211],"80":[2,211],"85":[2,211],"95":[2,211],"100":[2,211],"108":[2,211],"109":130,"110":[2,211],"111":[2,211],"112":[2,211],"115":131,"117":[2,211],"121":[2,211],"122":[2,211],"123":[2,211],"130":[2,211],"131":[2,211],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,212],"4":[2,212],"29":[2,212],"30":[2,212],"51":[1,133],"59":[2,212],"62":[2,212],"80":[2,212],"85":[2,212],"95":[2,212],"100":[2,212],"108":[2,212],"109":130,"110":[2,212],"111":[2,212],"112":[2,212],"115":131,"117":[2,212],"121":[2,212],"122":[2,212],"123":[2,212],"130":[2,212],"131":[2,212],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,213],"4":[2,213],"29":[2,213],"30":[2,213],"51":[1,133],"59":[2,213],"62":[2,213],"80":[2,213],"85":[2,213],"95":[2,213],"100":[2,213],"108":[2,213],"109":130,"110":[2,213],"111":[2,213],"112":[2,213],"115":131,"117":[2,213],"121":[2,213],"122":[2,213],"123":[2,213],"130":[2,213],"131":[2,213],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,214],"4":[2,214],"29":[2,214],"30":[2,214],"51":[1,133],"59":[2,214],"62":[2,214],"80":[2,214],"85":[2,214],"95":[2,214],"100":[2,214],"108":[2,214],"109":130,"110":[2,214],"111":[2,214],"112":[2,214],"115":131,"117":[2,214],"121":[2,214],"122":[2,214],"123":[2,214],"130":[2,214],"131":[2,214],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,215],"4":[2,215],"29":[2,215],"30":[2,215],"51":[1,133],"59":[2,215],"62":[2,215],"80":[2,215],"85":[2,215],"95":[2,215],"100":[2,215],"108":[2,215],"109":130,"110":[2,215],"111":[2,215],"112":[2,215],"115":131,"117":[2,215],"121":[2,215],"122":[2,215],"123":[2,215],"130":[2,215],"131":[2,215],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,216],"4":[2,216],"29":[2,216],"30":[2,216],"51":[1,133],"59":[2,216],"62":[2,216],"80":[2,216],"85":[2,216],"95":[2,216],"100":[2,216],"108":[2,216],"109":130,"110":[2,216],"111":[2,216],"112":[2,216],"115":131,"117":[2,216],"121":[2,216],"122":[2,216],"123":[2,216],"130":[2,216],"131":[2,216],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,217],"4":[2,217],"29":[2,217],"30":[2,217],"51":[1,133],"59":[2,217],"62":[2,217],"80":[2,217],"85":[2,217],"95":[2,217],"100":[2,217],"108":[2,217],"109":130,"110":[2,217],"111":[2,217],"112":[2,217],"115":131,"117":[2,217],"121":[2,217],"122":[2,217],"123":[2,217],"130":[2,217],"131":[2,217],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,218],"4":[2,218],"29":[2,218],"30":[2,218],"51":[1,133],"59":[2,218],"62":[2,218],"80":[2,218],"85":[2,218],"95":[2,218],"100":[2,218],"108":[2,218],"109":130,"110":[2,218],"111":[2,218],"112":[2,218],"115":131,"117":[2,218],"121":[2,218],"122":[2,218],"123":[2,218],"130":[2,218],"131":[2,218],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[2,218],"155":[2,218],"156":[2,218],"157":[2,218],"158":[2,218],"159":[2,218],"160":[2,218],"161":[2,218],"162":[2,218],"163":[2,218],"164":[2,218],"165":[2,218],"166":[2,218],"167":[1,124]},{"1":[2,219],"4":[2,219],"29":[2,219],"30":[2,219],"51":[1,133],"59":[2,219],"62":[1,132],"80":[2,219],"85":[2,219],"95":[2,219],"100":[2,219],"108":[2,219],"109":130,"110":[2,219],"111":[2,219],"112":[2,219],"115":131,"117":[2,219],"121":[1,125],"122":[1,126],"123":[2,219],"130":[2,219],"131":[2,219],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,220],"4":[2,220],"29":[2,220],"30":[2,220],"51":[1,133],"59":[2,220],"62":[1,132],"80":[2,220],"85":[2,220],"95":[2,220],"100":[2,220],"108":[2,220],"109":130,"110":[2,220],"111":[2,220],"112":[2,220],"115":131,"117":[2,220],"121":[1,125],"122":[1,126],"123":[2,220],"130":[2,220],"131":[2,220],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"8":293,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":294,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,176],"4":[2,176],"29":[2,176],"30":[2,176],"51":[1,133],"59":[2,176],"62":[1,132],"80":[2,176],"85":[2,176],"95":[2,176],"100":[2,176],"108":[2,176],"109":130,"110":[1,79],"111":[2,176],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,176],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,178],"4":[2,178],"29":[2,178],"30":[2,178],"51":[1,133],"59":[2,178],"62":[1,132],"80":[2,178],"85":[2,178],"95":[2,178],"100":[2,178],"108":[2,178],"109":130,"110":[1,79],"111":[2,178],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,178],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,146],"4":[2,146],"29":[2,146],"30":[2,146],"51":[2,146],"59":[2,146],"62":[2,146],"80":[2,146],"85":[2,146],"95":[2,146],"100":[2,146],"108":[2,146],"110":[2,146],"111":[2,146],"112":[2,146],"117":[2,146],"121":[2,146],"122":[2,146],"123":[2,146],"130":[2,146],"131":[2,146],"132":[2,146],"134":[2,146],"135":[2,146],"137":[2,146],"138":[2,146],"141":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"146":[2,146],"147":[2,146],"148":[2,146],"149":[2,146],"150":[2,146],"151":[2,146],"152":[2,146],"153":[2,146],"154":[2,146],"155":[2,146],"156":[2,146],"157":[2,146],"158":[2,146],"159":[2,146],"160":[2,146],"161":[2,146],"162":[2,146],"163":[2,146],"164":[2,146],"165":[2,146],"166":[2,146],"167":[2,146]},{"62":[1,295]},{"1":[2,175],"4":[2,175],"29":[2,175],"30":[2,175],"51":[1,133],"59":[2,175],"62":[1,132],"80":[2,175],"85":[2,175],"95":[2,175],"100":[2,175],"108":[2,175],"109":130,"110":[1,79],"111":[2,175],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,175],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,177],"4":[2,177],"29":[2,177],"30":[2,177],"51":[1,133],"59":[2,177],"62":[1,132],"80":[2,177],"85":[2,177],"95":[2,177],"100":[2,177],"108":[2,177],"109":130,"110":[1,79],"111":[2,177],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,177],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,145],"4":[2,145],"29":[2,145],"30":[2,145],"51":[2,145],"59":[2,145],"62":[2,145],"80":[2,145],"85":[2,145],"95":[2,145],"100":[2,145],"108":[2,145],"110":[2,145],"111":[2,145],"112":[2,145],"117":[2,145],"121":[2,145],"122":[2,145],"123":[2,145],"130":[2,145],"131":[2,145],"132":[2,145],"134":[2,145],"135":[2,145],"137":[2,145],"138":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"146":[2,145],"147":[2,145],"148":[2,145],"149":[2,145],"150":[2,145],"151":[2,145],"152":[2,145],"153":[2,145],"154":[2,145],"155":[2,145],"156":[2,145],"157":[2,145],"158":[2,145],"159":[2,145],"160":[2,145],"161":[2,145],"162":[2,145],"163":[2,145],"164":[2,145],"165":[2,145],"166":[2,145],"167":[2,145]},{"4":[2,58],"29":[2,58],"58":296,"59":[1,282],"95":[2,58]},{"4":[2,123],"29":[2,123],"30":[2,123],"51":[1,133],"59":[2,123],"62":[1,132],"95":[2,123],"100":[2,123],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,79],"4":[2,79],"29":[2,79],"30":[2,79],"46":[2,79],"51":[2,79],"59":[2,79],"62":[2,79],"73":[2,79],"74":[2,79],"75":[2,79],"76":[2,79],"79":[2,79],"80":[2,79],"81":[2,79],"82":[2,79],"85":[2,79],"87":[2,79],"93":[2,79],"95":[2,79],"100":[2,79],"108":[2,79],"110":[2,79],"111":[2,79],"112":[2,79],"117":[2,79],"121":[2,79],"122":[2,79],"123":[2,79],"130":[2,79],"131":[2,79],"132":[2,79],"134":[2,79],"135":[2,79],"137":[2,79],"138":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79],"162":[2,79],"163":[2,79],"164":[2,79],"165":[2,79],"166":[2,79],"167":[2,79]},{"1":[2,80],"4":[2,80],"29":[2,80],"30":[2,80],"46":[2,80],"51":[2,80],"59":[2,80],"62":[2,80],"73":[2,80],"74":[2,80],"75":[2,80],"76":[2,80],"79":[2,80],"80":[2,80],"81":[2,80],"82":[2,80],"85":[2,80],"87":[2,80],"93":[2,80],"95":[2,80],"100":[2,80],"108":[2,80],"110":[2,80],"111":[2,80],"112":[2,80],"117":[2,80],"121":[2,80],"122":[2,80],"123":[2,80],"130":[2,80],"131":[2,80],"132":[2,80],"134":[2,80],"135":[2,80],"137":[2,80],"138":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80],"162":[2,80],"163":[2,80],"164":[2,80],"165":[2,80],"166":[2,80],"167":[2,80]},{"1":[2,82],"4":[2,82],"29":[2,82],"30":[2,82],"46":[2,82],"51":[2,82],"59":[2,82],"62":[2,82],"73":[2,82],"74":[2,82],"75":[2,82],"76":[2,82],"79":[2,82],"80":[2,82],"81":[2,82],"82":[2,82],"85":[2,82],"87":[2,82],"93":[2,82],"95":[2,82],"100":[2,82],"108":[2,82],"110":[2,82],"111":[2,82],"112":[2,82],"117":[2,82],"121":[2,82],"122":[2,82],"123":[2,82],"130":[2,82],"131":[2,82],"132":[2,82],"134":[2,82],"135":[2,82],"137":[2,82],"138":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82],"162":[2,82],"163":[2,82],"164":[2,82],"165":[2,82],"166":[2,82],"167":[2,82]},{"51":[1,133],"62":[1,298],"80":[1,297],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,86],"4":[2,86],"29":[2,86],"30":[2,86],"46":[2,86],"51":[2,86],"59":[2,86],"62":[2,86],"73":[2,86],"74":[2,86],"75":[2,86],"76":[2,86],"79":[2,86],"80":[2,86],"81":[2,86],"82":[2,86],"85":[2,86],"87":[2,86],"93":[2,86],"95":[2,86],"100":[2,86],"108":[2,86],"110":[2,86],"111":[2,86],"112":[2,86],"117":[2,86],"121":[2,86],"122":[2,86],"123":[2,86],"130":[2,86],"131":[2,86],"132":[2,86],"134":[2,86],"135":[2,86],"137":[2,86],"138":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"148":[2,86],"149":[2,86],"150":[2,86],"151":[2,86],"152":[2,86],"153":[2,86],"154":[2,86],"155":[2,86],"156":[2,86],"157":[2,86],"158":[2,86],"159":[2,86],"160":[2,86],"161":[2,86],"162":[2,86],"163":[2,86],"164":[2,86],"165":[2,86],"166":[2,86],"167":[2,86]},{"8":299,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,87],"4":[2,87],"29":[2,87],"30":[2,87],"46":[2,87],"51":[2,87],"59":[2,87],"62":[2,87],"73":[2,87],"74":[2,87],"75":[2,87],"76":[2,87],"79":[2,87],"80":[2,87],"81":[2,87],"82":[2,87],"85":[2,87],"87":[2,87],"93":[2,87],"95":[2,87],"100":[2,87],"108":[2,87],"110":[2,87],"111":[2,87],"112":[2,87],"117":[2,87],"121":[2,87],"122":[2,87],"123":[2,87],"130":[2,87],"131":[2,87],"132":[2,87],"134":[2,87],"135":[2,87],"137":[2,87],"138":[2,87],"141":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87],"148":[2,87],"149":[2,87],"150":[2,87],"151":[2,87],"152":[2,87],"153":[2,87],"154":[2,87],"155":[2,87],"156":[2,87],"157":[2,87],"158":[2,87],"159":[2,87],"160":[2,87],"161":[2,87],"162":[2,87],"163":[2,87],"164":[2,87],"165":[2,87],"166":[2,87],"167":[2,87]},{"1":[2,44],"4":[2,44],"29":[2,44],"30":[2,44],"51":[1,133],"59":[2,44],"62":[1,132],"80":[2,44],"85":[2,44],"95":[2,44],"100":[2,44],"108":[2,44],"109":130,"110":[1,79],"111":[2,44],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,44],"130":[2,44],"131":[2,44],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"55":300,"56":[1,75],"57":[1,76]},{"60":301,"61":[1,159]},{"62":[1,302]},{"8":303,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,173],"4":[2,173],"29":[2,173],"30":[2,173],"51":[2,173],"59":[2,173],"62":[2,173],"80":[2,173],"85":[2,173],"95":[2,173],"100":[2,173],"108":[2,173],"110":[2,173],"111":[2,173],"112":[2,173],"117":[2,173],"121":[2,173],"122":[2,173],"123":[2,173],"126":[2,173],"130":[2,173],"131":[2,173],"132":[2,173],"134":[2,173],"135":[2,173],"137":[2,173],"138":[2,173],"141":[2,173],"142":[2,173],"143":[2,173],"144":[2,173],"145":[2,173],"146":[2,173],"147":[2,173],"148":[2,173],"149":[2,173],"150":[2,173],"151":[2,173],"152":[2,173],"153":[2,173],"154":[2,173],"155":[2,173],"156":[2,173],"157":[2,173],"158":[2,173],"159":[2,173],"160":[2,173],"161":[2,173],"162":[2,173],"163":[2,173],"164":[2,173],"165":[2,173],"166":[2,173],"167":[2,173]},{"1":[2,129],"4":[2,129],"29":[2,129],"30":[2,129],"51":[2,129],"59":[2,129],"62":[2,129],"80":[2,129],"85":[2,129],"95":[2,129],"100":[2,129],"104":[1,304],"108":[2,129],"110":[2,129],"111":[2,129],"112":[2,129],"117":[2,129],"121":[2,129],"122":[2,129],"123":[2,129],"130":[2,129],"131":[2,129],"132":[2,129],"134":[2,129],"135":[2,129],"137":[2,129],"138":[2,129],"141":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129],"149":[2,129],"150":[2,129],"151":[2,129],"152":[2,129],"153":[2,129],"154":[2,129],"155":[2,129],"156":[2,129],"157":[2,129],"158":[2,129],"159":[2,129],"160":[2,129],"161":[2,129],"162":[2,129],"163":[2,129],"164":[2,129],"165":[2,129],"166":[2,129],"167":[2,129]},{"4":[1,161],"6":305,"29":[1,6]},{"31":306,"32":[1,88]},{"1":[2,147],"4":[2,147],"29":[2,147],"30":[2,147],"51":[2,147],"59":[2,147],"62":[2,147],"80":[2,147],"85":[2,147],"95":[2,147],"100":[2,147],"108":[2,147],"110":[2,147],"111":[2,147],"112":[2,147],"117":[2,147],"121":[2,147],"122":[2,147],"123":[2,147],"130":[2,147],"131":[2,147],"132":[2,147],"134":[2,147],"135":[2,147],"137":[2,147],"138":[2,147],"141":[2,147],"142":[2,147],"143":[2,147],"144":[2,147],"145":[2,147],"146":[2,147],"147":[2,147],"148":[2,147],"149":[2,147],"150":[2,147],"151":[2,147],"152":[2,147],"153":[2,147],"154":[2,147],"155":[2,147],"156":[2,147],"157":[2,147],"158":[2,147],"159":[2,147],"160":[2,147],"161":[2,147],"162":[2,147],"163":[2,147],"164":[2,147],"165":[2,147],"166":[2,147],"167":[2,147]},{"1":[2,155],"4":[2,155],"29":[2,155],"30":[2,155],"51":[1,133],"59":[2,155],"62":[1,132],"80":[2,155],"85":[2,155],"95":[2,155],"100":[2,155],"108":[2,155],"109":130,"110":[2,155],"111":[1,307],"112":[2,155],"115":131,"117":[2,155],"121":[1,125],"122":[1,126],"123":[1,308],"130":[2,155],"131":[2,155],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,156],"4":[2,156],"29":[2,156],"30":[2,156],"51":[1,133],"59":[2,156],"62":[1,132],"80":[2,156],"85":[2,156],"95":[2,156],"100":[2,156],"108":[2,156],"109":130,"110":[2,156],"111":[1,309],"112":[2,156],"115":131,"117":[2,156],"121":[1,125],"122":[1,126],"123":[2,156],"130":[2,156],"131":[2,156],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"125":310,"127":274,"128":[1,275]},{"30":[1,311],"126":[1,312],"127":313,"128":[1,275]},{"30":[2,166],"126":[2,166],"128":[2,166]},{"8":315,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"101":314,"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,108],"4":[2,108],"29":[2,108],"30":[2,108],"51":[2,108],"59":[2,108],"62":[2,108],"64":139,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,108],"81":[1,148],"82":[1,149],"85":[2,108],"92":138,"93":[1,140],"95":[2,108],"100":[2,108],"108":[2,108],"110":[2,108],"111":[2,108],"112":[2,108],"117":[2,108],"121":[2,108],"122":[2,108],"123":[2,108],"130":[2,108],"131":[2,108],"132":[2,108],"134":[2,108],"135":[2,108],"137":[2,108],"138":[2,108],"141":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108],"162":[2,108],"163":[2,108],"164":[2,108],"165":[2,108],"166":[2,108],"167":[2,108]},{"14":316,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":155,"63":156,"65":183,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"97":[1,72],"98":[1,73],"99":[1,71],"107":[1,70]},{"4":[2,100],"28":208,"30":[2,100],"31":206,"32":[1,88],"33":207,"34":[1,86],"35":[1,87],"47":320,"50":[1,56],"66":321,"83":[1,319],"88":317,"89":318,"98":[1,322]},{"1":[2,134],"4":[2,134],"29":[2,134],"30":[2,134],"51":[2,134],"59":[2,134],"62":[2,134],"73":[2,134],"74":[2,134],"75":[2,134],"76":[2,134],"79":[2,134],"80":[2,134],"81":[2,134],"82":[2,134],"85":[2,134],"93":[2,134],"95":[2,134],"100":[2,134],"108":[2,134],"110":[2,134],"111":[2,134],"112":[2,134],"117":[2,134],"121":[2,134],"122":[2,134],"123":[2,134],"130":[2,134],"131":[2,134],"132":[2,134],"134":[2,134],"135":[2,134],"137":[2,134],"138":[2,134],"141":[2,134],"142":[2,134],"143":[2,134],"144":[2,134],"145":[2,134],"146":[2,134],"147":[2,134],"148":[2,134],"149":[2,134],"150":[2,134],"151":[2,134],"152":[2,134],"153":[2,134],"154":[2,134],"155":[2,134],"156":[2,134],"157":[2,134],"158":[2,134],"159":[2,134],"160":[2,134],"161":[2,134],"162":[2,134],"163":[2,134],"164":[2,134],"165":[2,134],"166":[2,134],"167":[2,134]},{"62":[1,323]},{"4":[1,325],"29":[1,326],"100":[1,324]},{"4":[2,59],"8":327,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,59],"30":[2,59],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"95":[2,59],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"100":[2,59],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,170],"4":[2,170],"29":[2,170],"30":[2,170],"51":[2,170],"59":[2,170],"62":[2,170],"80":[2,170],"85":[2,170],"95":[2,170],"100":[2,170],"108":[2,170],"110":[2,170],"111":[2,170],"112":[2,170],"117":[2,170],"121":[2,170],"122":[2,170],"123":[2,170],"126":[2,170],"130":[2,170],"131":[2,170],"132":[2,170],"134":[2,170],"135":[2,170],"137":[2,170],"138":[2,170],"141":[2,170],"142":[2,170],"143":[2,170],"144":[2,170],"145":[2,170],"146":[2,170],"147":[2,170],"148":[2,170],"149":[2,170],"150":[2,170],"151":[2,170],"152":[2,170],"153":[2,170],"154":[2,170],"155":[2,170],"156":[2,170],"157":[2,170],"158":[2,170],"159":[2,170],"160":[2,170],"161":[2,170],"162":[2,170],"163":[2,170],"164":[2,170],"165":[2,170],"166":[2,170],"167":[2,170]},{"1":[2,171],"4":[2,171],"29":[2,171],"30":[2,171],"51":[2,171],"59":[2,171],"62":[2,171],"80":[2,171],"85":[2,171],"95":[2,171],"100":[2,171],"108":[2,171],"110":[2,171],"111":[2,171],"112":[2,171],"117":[2,171],"121":[2,171],"122":[2,171],"123":[2,171],"126":[2,171],"130":[2,171],"131":[2,171],"132":[2,171],"134":[2,171],"135":[2,171],"137":[2,171],"138":[2,171],"141":[2,171],"142":[2,171],"143":[2,171],"144":[2,171],"145":[2,171],"146":[2,171],"147":[2,171],"148":[2,171],"149":[2,171],"150":[2,171],"151":[2,171],"152":[2,171],"153":[2,171],"154":[2,171],"155":[2,171],"156":[2,171],"157":[2,171],"158":[2,171],"159":[2,171],"160":[2,171],"161":[2,171],"162":[2,171],"163":[2,171],"164":[2,171],"165":[2,171],"166":[2,171],"167":[2,171]},{"8":328,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":329,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"121":[2,149],"122":[2,149]},{"31":200,"32":[1,88],"67":201,"68":202,"83":[1,85],"99":[1,203],"120":330},{"4":[1,332],"29":[1,333],"85":[1,331]},{"4":[2,59],"28":208,"29":[2,59],"30":[2,59],"31":206,"32":[1,88],"33":207,"34":[1,86],"35":[1,87],"47":334,"50":[1,56],"85":[2,59]},{"8":335,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":336,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,221],"4":[2,221],"29":[2,221],"30":[2,221],"51":[1,133],"59":[2,221],"62":[2,221],"80":[2,221],"85":[2,221],"95":[2,221],"100":[2,221],"108":[2,221],"109":130,"110":[2,221],"111":[2,221],"112":[2,221],"115":131,"117":[2,221],"121":[2,221],"122":[2,221],"123":[2,221],"130":[2,221],"131":[2,221],"134":[2,221],"135":[2,221],"141":[2,221],"142":[2,221],"143":[2,221],"144":[2,221],"145":[2,221],"146":[2,221],"147":[2,221],"148":[2,221],"149":[2,221],"150":[2,221],"151":[2,221],"152":[2,221],"153":[2,221],"154":[2,221],"155":[2,221],"156":[2,221],"157":[2,221],"158":[2,221],"159":[2,221],"160":[2,221],"161":[2,221],"162":[2,221],"163":[2,221],"164":[2,221],"165":[2,221],"166":[2,221],"167":[2,221]},{"1":[2,222],"4":[2,222],"29":[2,222],"30":[2,222],"51":[1,133],"59":[2,222],"62":[2,222],"80":[2,222],"85":[2,222],"95":[2,222],"100":[2,222],"108":[2,222],"109":130,"110":[2,222],"111":[2,222],"112":[2,222],"115":131,"117":[2,222],"121":[2,222],"122":[2,222],"123":[2,222],"130":[2,222],"131":[2,222],"134":[2,222],"135":[2,222],"141":[2,222],"142":[2,222],"143":[2,222],"144":[2,222],"145":[2,222],"146":[2,222],"147":[2,222],"148":[2,222],"149":[2,222],"150":[2,222],"151":[2,222],"152":[2,222],"153":[2,222],"154":[2,222],"155":[2,222],"156":[2,222],"157":[2,222],"158":[2,222],"159":[2,222],"160":[2,222],"161":[2,222],"162":[2,222],"163":[2,222],"164":[2,222],"165":[2,222],"166":[2,222],"167":[2,222]},{"1":[2,65],"4":[2,65],"29":[2,65],"30":[2,65],"51":[2,65],"59":[2,65],"62":[2,65],"80":[2,65],"85":[2,65],"95":[2,65],"100":[2,65],"108":[2,65],"110":[2,65],"111":[2,65],"112":[2,65],"117":[2,65],"121":[2,65],"122":[2,65],"123":[2,65],"130":[2,65],"131":[2,65],"132":[2,65],"134":[2,65],"135":[2,65],"137":[2,65],"138":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65],"164":[2,65],"165":[2,65],"166":[2,65],"167":[2,65]},{"4":[1,325],"29":[1,326],"95":[1,337]},{"1":[2,85],"4":[2,85],"29":[2,85],"30":[2,85],"46":[2,85],"51":[2,85],"59":[2,85],"62":[2,85],"73":[2,85],"74":[2,85],"75":[2,85],"76":[2,85],"79":[2,85],"80":[2,85],"81":[2,85],"82":[2,85],"85":[2,85],"87":[2,85],"93":[2,85],"95":[2,85],"100":[2,85],"108":[2,85],"110":[2,85],"111":[2,85],"112":[2,85],"117":[2,85],"121":[2,85],"122":[2,85],"123":[2,85],"130":[2,85],"131":[2,85],"132":[2,85],"134":[2,85],"135":[2,85],"137":[2,85],"138":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"148":[2,85],"149":[2,85],"150":[2,85],"151":[2,85],"152":[2,85],"153":[2,85],"154":[2,85],"155":[2,85],"156":[2,85],"157":[2,85],"158":[2,85],"159":[2,85],"160":[2,85],"161":[2,85],"162":[2,85],"163":[2,85],"164":[2,85],"165":[2,85],"166":[2,85],"167":[2,85]},{"62":[1,338]},{"51":[1,133],"62":[1,132],"80":[1,297],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[1,161],"6":339,"29":[1,6]},{"54":[2,62],"59":[2,62],"62":[1,263]},{"62":[1,340]},{"4":[1,161],"6":341,"29":[1,6],"51":[1,133],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[1,161],"6":342,"29":[1,6]},{"1":[2,130],"4":[2,130],"29":[2,130],"30":[2,130],"51":[2,130],"59":[2,130],"62":[2,130],"80":[2,130],"85":[2,130],"95":[2,130],"100":[2,130],"108":[2,130],"110":[2,130],"111":[2,130],"112":[2,130],"117":[2,130],"121":[2,130],"122":[2,130],"123":[2,130],"130":[2,130],"131":[2,130],"132":[2,130],"134":[2,130],"135":[2,130],"137":[2,130],"138":[2,130],"141":[2,130],"142":[2,130],"143":[2,130],"144":[2,130],"145":[2,130],"146":[2,130],"147":[2,130],"148":[2,130],"149":[2,130],"150":[2,130],"151":[2,130],"152":[2,130],"153":[2,130],"154":[2,130],"155":[2,130],"156":[2,130],"157":[2,130],"158":[2,130],"159":[2,130],"160":[2,130],"161":[2,130],"162":[2,130],"163":[2,130],"164":[2,130],"165":[2,130],"166":[2,130],"167":[2,130]},{"4":[1,161],"6":343,"29":[1,6]},{"8":344,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":345,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":346,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"30":[1,347],"126":[1,348],"127":313,"128":[1,275]},{"1":[2,164],"4":[2,164],"29":[2,164],"30":[2,164],"51":[2,164],"59":[2,164],"62":[2,164],"80":[2,164],"85":[2,164],"95":[2,164],"100":[2,164],"108":[2,164],"110":[2,164],"111":[2,164],"112":[2,164],"117":[2,164],"121":[2,164],"122":[2,164],"123":[2,164],"130":[2,164],"131":[2,164],"132":[2,164],"134":[2,164],"135":[2,164],"137":[2,164],"138":[2,164],"141":[2,164],"142":[2,164],"143":[2,164],"144":[2,164],"145":[2,164],"146":[2,164],"147":[2,164],"148":[2,164],"149":[2,164],"150":[2,164],"151":[2,164],"152":[2,164],"153":[2,164],"154":[2,164],"155":[2,164],"156":[2,164],"157":[2,164],"158":[2,164],"159":[2,164],"160":[2,164],"161":[2,164],"162":[2,164],"163":[2,164],"164":[2,164],"165":[2,164],"166":[2,164],"167":[2,164]},{"4":[1,161],"6":349,"29":[1,6]},{"30":[2,167],"126":[2,167],"128":[2,167]},{"4":[1,161],"6":350,"29":[1,6],"59":[1,351]},{"4":[2,127],"29":[2,127],"51":[1,133],"59":[2,127],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,95],"4":[2,95],"29":[1,352],"30":[2,95],"51":[2,95],"59":[2,95],"62":[2,95],"64":139,"73":[1,141],"74":[1,142],"75":[1,143],"76":[1,144],"77":145,"78":146,"79":[1,147],"80":[2,95],"81":[1,148],"82":[1,149],"85":[2,95],"92":138,"93":[1,140],"95":[2,95],"100":[2,95],"108":[2,95],"110":[2,95],"111":[2,95],"112":[2,95],"117":[2,95],"121":[2,95],"122":[2,95],"123":[2,95],"130":[2,95],"131":[2,95],"132":[2,95],"134":[2,95],"135":[2,95],"137":[2,95],"138":[2,95],"141":[2,95],"142":[2,95],"143":[2,95],"144":[2,95],"145":[2,95],"146":[2,95],"147":[2,95],"148":[2,95],"149":[2,95],"150":[2,95],"151":[2,95],"152":[2,95],"153":[2,95],"154":[2,95],"155":[2,95],"156":[2,95],"157":[2,95],"158":[2,95],"159":[2,95],"160":[2,95],"161":[2,95],"162":[2,95],"163":[2,95],"164":[2,95],"165":[2,95],"166":[2,95],"167":[2,95]},{"4":[1,354],"30":[1,353]},{"4":[2,101],"30":[2,101],"85":[2,101]},{"4":[2,100],"28":208,"31":206,"32":[1,88],"33":207,"34":[1,86],"35":[1,87],"47":320,"50":[1,56],"66":321,"83":[1,319],"85":[2,100],"88":355,"89":318,"98":[1,322]},{"4":[2,98],"30":[2,98],"85":[2,98]},{"48":[1,356]},{"31":189,"32":[1,88]},{"8":357,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"62":[1,358],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,121],"4":[2,121],"29":[2,121],"30":[2,121],"46":[2,121],"51":[2,121],"59":[2,121],"62":[2,121],"73":[2,121],"74":[2,121],"75":[2,121],"76":[2,121],"79":[2,121],"80":[2,121],"81":[2,121],"82":[2,121],"85":[2,121],"93":[2,121],"95":[2,121],"100":[2,121],"108":[2,121],"110":[2,121],"111":[2,121],"112":[2,121],"117":[2,121],"121":[2,121],"122":[2,121],"123":[2,121],"130":[2,121],"131":[2,121],"132":[2,121],"134":[2,121],"135":[2,121],"137":[2,121],"138":[2,121],"141":[2,121],"142":[2,121],"143":[2,121],"144":[2,121],"145":[2,121],"146":[2,121],"147":[2,121],"148":[2,121],"149":[2,121],"150":[2,121],"151":[2,121],"152":[2,121],"153":[2,121],"154":[2,121],"155":[2,121],"156":[2,121],"157":[2,121],"158":[2,121],"159":[2,121],"160":[2,121],"161":[2,121],"162":[2,121],"163":[2,121],"164":[2,121],"165":[2,121],"166":[2,121],"167":[2,121]},{"8":359,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[2,122],"8":252,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,122],"30":[2,122],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,122],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"94":360,"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[2,124],"29":[2,124],"30":[2,124],"51":[1,133],"59":[2,124],"62":[1,132],"95":[2,124],"100":[2,124],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,136],"4":[2,136],"29":[2,136],"30":[2,136],"51":[1,133],"59":[2,136],"62":[1,132],"80":[2,136],"85":[2,136],"95":[2,136],"100":[2,136],"108":[2,136],"109":130,"110":[1,79],"111":[2,136],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,136],"130":[2,136],"131":[2,136],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,138],"4":[2,138],"29":[2,138],"30":[2,138],"51":[1,133],"59":[2,138],"62":[1,132],"80":[2,138],"85":[2,138],"95":[2,138],"100":[2,138],"108":[2,138],"109":130,"110":[1,79],"111":[2,138],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"123":[2,138],"130":[2,138],"131":[2,138],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"121":[2,154],"122":[2,154]},{"1":[2,88],"4":[2,88],"29":[2,88],"30":[2,88],"46":[2,88],"51":[2,88],"59":[2,88],"62":[2,88],"73":[2,88],"74":[2,88],"75":[2,88],"76":[2,88],"79":[2,88],"80":[2,88],"81":[2,88],"82":[2,88],"85":[2,88],"93":[2,88],"95":[2,88],"100":[2,88],"108":[2,88],"110":[2,88],"111":[2,88],"112":[2,88],"117":[2,88],"121":[2,88],"122":[2,88],"123":[2,88],"130":[2,88],"131":[2,88],"132":[2,88],"134":[2,88],"135":[2,88],"137":[2,88],"138":[2,88],"141":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88],"148":[2,88],"149":[2,88],"150":[2,88],"151":[2,88],"152":[2,88],"153":[2,88],"154":[2,88],"155":[2,88],"156":[2,88],"157":[2,88],"158":[2,88],"159":[2,88],"160":[2,88],"161":[2,88],"162":[2,88],"163":[2,88],"164":[2,88],"165":[2,88],"166":[2,88],"167":[2,88]},{"28":208,"31":206,"32":[1,88],"33":207,"34":[1,86],"35":[1,87],"47":361,"50":[1,56]},{"4":[2,89],"28":208,"29":[2,89],"30":[2,89],"31":206,"32":[1,88],"33":207,"34":[1,86],"35":[1,87],"47":205,"50":[1,56],"59":[2,89],"84":362},{"4":[2,91],"29":[2,91],"30":[2,91],"59":[2,91],"85":[2,91]},{"4":[2,47],"29":[2,47],"30":[2,47],"51":[1,133],"59":[2,47],"62":[1,132],"85":[2,47],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[2,48],"29":[2,48],"30":[2,48],"51":[1,133],"59":[2,48],"62":[1,132],"85":[2,48],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,111],"4":[2,111],"29":[2,111],"30":[2,111],"51":[2,111],"59":[2,111],"62":[2,111],"73":[2,111],"74":[2,111],"75":[2,111],"76":[2,111],"79":[2,111],"80":[2,111],"81":[2,111],"82":[2,111],"85":[2,111],"93":[2,111],"95":[2,111],"100":[2,111],"108":[2,111],"110":[2,111],"111":[2,111],"112":[2,111],"117":[2,111],"121":[2,111],"122":[2,111],"123":[2,111],"130":[2,111],"131":[2,111],"132":[2,111],"134":[2,111],"135":[2,111],"137":[2,111],"138":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111],"162":[2,111],"163":[2,111],"164":[2,111],"165":[2,111],"166":[2,111],"167":[2,111]},{"8":363,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"62":[1,364],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"1":[2,54],"4":[2,54],"29":[2,54],"30":[2,54],"51":[2,54],"59":[2,54],"62":[2,54],"80":[2,54],"85":[2,54],"95":[2,54],"100":[2,54],"108":[2,54],"110":[2,54],"111":[2,54],"112":[2,54],"117":[2,54],"121":[2,54],"122":[2,54],"123":[2,54],"130":[2,54],"131":[2,54],"132":[2,54],"134":[2,54],"135":[2,54],"137":[2,54],"138":[2,54],"141":[2,54],"142":[2,54],"143":[2,54],"144":[2,54],"145":[2,54],"146":[2,54],"147":[2,54],"148":[2,54],"149":[2,54],"150":[2,54],"151":[2,54],"152":[2,54],"153":[2,54],"154":[2,54],"155":[2,54],"156":[2,54],"157":[2,54],"158":[2,54],"159":[2,54],"160":[2,54],"161":[2,54],"162":[2,54],"163":[2,54],"164":[2,54],"165":[2,54],"166":[2,54],"167":[2,54]},{"54":[2,64],"59":[2,64],"62":[2,64]},{"1":[2,172],"4":[2,172],"29":[2,172],"30":[2,172],"51":[2,172],"59":[2,172],"62":[2,172],"80":[2,172],"85":[2,172],"95":[2,172],"100":[2,172],"108":[2,172],"110":[2,172],"111":[2,172],"112":[2,172],"117":[2,172],"121":[2,172],"122":[2,172],"123":[2,172],"126":[2,172],"130":[2,172],"131":[2,172],"132":[2,172],"134":[2,172],"135":[2,172],"137":[2,172],"138":[2,172],"141":[2,172],"142":[2,172],"143":[2,172],"144":[2,172],"145":[2,172],"146":[2,172],"147":[2,172],"148":[2,172],"149":[2,172],"150":[2,172],"151":[2,172],"152":[2,172],"153":[2,172],"154":[2,172],"155":[2,172],"156":[2,172],"157":[2,172],"158":[2,172],"159":[2,172],"160":[2,172],"161":[2,172],"162":[2,172],"163":[2,172],"164":[2,172],"165":[2,172],"166":[2,172],"167":[2,172]},{"1":[2,131],"4":[2,131],"29":[2,131],"30":[2,131],"51":[2,131],"59":[2,131],"62":[2,131],"80":[2,131],"85":[2,131],"95":[2,131],"100":[2,131],"108":[2,131],"110":[2,131],"111":[2,131],"112":[2,131],"117":[2,131],"121":[2,131],"122":[2,131],"123":[2,131],"130":[2,131],"131":[2,131],"132":[2,131],"134":[2,131],"135":[2,131],"137":[2,131],"138":[2,131],"141":[2,131],"142":[2,131],"143":[2,131],"144":[2,131],"145":[2,131],"146":[2,131],"147":[2,131],"148":[2,131],"149":[2,131],"150":[2,131],"151":[2,131],"152":[2,131],"153":[2,131],"154":[2,131],"155":[2,131],"156":[2,131],"157":[2,131],"158":[2,131],"159":[2,131],"160":[2,131],"161":[2,131],"162":[2,131],"163":[2,131],"164":[2,131],"165":[2,131],"166":[2,131],"167":[2,131]},{"1":[2,132],"4":[2,132],"29":[2,132],"30":[2,132],"51":[2,132],"59":[2,132],"62":[2,132],"80":[2,132],"85":[2,132],"95":[2,132],"100":[2,132],"104":[2,132],"108":[2,132],"110":[2,132],"111":[2,132],"112":[2,132],"117":[2,132],"121":[2,132],"122":[2,132],"123":[2,132],"130":[2,132],"131":[2,132],"132":[2,132],"134":[2,132],"135":[2,132],"137":[2,132],"138":[2,132],"141":[2,132],"142":[2,132],"143":[2,132],"144":[2,132],"145":[2,132],"146":[2,132],"147":[2,132],"148":[2,132],"149":[2,132],"150":[2,132],"151":[2,132],"152":[2,132],"153":[2,132],"154":[2,132],"155":[2,132],"156":[2,132],"157":[2,132],"158":[2,132],"159":[2,132],"160":[2,132],"161":[2,132],"162":[2,132],"163":[2,132],"164":[2,132],"165":[2,132],"166":[2,132],"167":[2,132]},{"1":[2,157],"4":[2,157],"29":[2,157],"30":[2,157],"51":[1,133],"59":[2,157],"62":[1,132],"80":[2,157],"85":[2,157],"95":[2,157],"100":[2,157],"108":[2,157],"109":130,"110":[2,157],"111":[2,157],"112":[2,157],"115":131,"117":[2,157],"121":[1,125],"122":[1,126],"123":[1,365],"130":[2,157],"131":[2,157],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,159],"4":[2,159],"29":[2,159],"30":[2,159],"51":[1,133],"59":[2,159],"62":[1,132],"80":[2,159],"85":[2,159],"95":[2,159],"100":[2,159],"108":[2,159],"109":130,"110":[2,159],"111":[1,366],"112":[2,159],"115":131,"117":[2,159],"121":[1,125],"122":[1,126],"123":[2,159],"130":[2,159],"131":[2,159],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,158],"4":[2,158],"29":[2,158],"30":[2,158],"51":[1,133],"59":[2,158],"62":[1,132],"80":[2,158],"85":[2,158],"95":[2,158],"100":[2,158],"108":[2,158],"109":130,"110":[2,158],"111":[2,158],"112":[2,158],"115":131,"117":[2,158],"121":[1,125],"122":[1,126],"123":[2,158],"130":[2,158],"131":[2,158],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,162],"4":[2,162],"29":[2,162],"30":[2,162],"51":[2,162],"59":[2,162],"62":[2,162],"80":[2,162],"85":[2,162],"95":[2,162],"100":[2,162],"108":[2,162],"110":[2,162],"111":[2,162],"112":[2,162],"117":[2,162],"121":[2,162],"122":[2,162],"123":[2,162],"130":[2,162],"131":[2,162],"132":[2,162],"134":[2,162],"135":[2,162],"137":[2,162],"138":[2,162],"141":[2,162],"142":[2,162],"143":[2,162],"144":[2,162],"145":[2,162],"146":[2,162],"147":[2,162],"148":[2,162],"149":[2,162],"150":[2,162],"151":[2,162],"152":[2,162],"153":[2,162],"154":[2,162],"155":[2,162],"156":[2,162],"157":[2,162],"158":[2,162],"159":[2,162],"160":[2,162],"161":[2,162],"162":[2,162],"163":[2,162],"164":[2,162],"165":[2,162],"166":[2,162],"167":[2,162]},{"4":[1,161],"6":367,"29":[1,6]},{"30":[1,368]},{"4":[1,369],"30":[2,168],"126":[2,168],"128":[2,168]},{"8":370,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"4":[2,100],"28":208,"30":[2,100],"31":206,"32":[1,88],"33":207,"34":[1,86],"35":[1,87],"47":320,"50":[1,56],"66":321,"83":[1,319],"88":371,"89":318,"98":[1,322]},{"1":[2,96],"4":[2,96],"29":[2,96],"30":[2,96],"51":[2,96],"59":[2,96],"62":[2,96],"80":[2,96],"85":[2,96],"95":[2,96],"100":[2,96],"108":[2,96],"110":[2,96],"111":[2,96],"112":[2,96],"117":[2,96],"121":[2,96],"122":[2,96],"123":[2,96],"130":[2,96],"131":[2,96],"132":[2,96],"134":[2,96],"135":[2,96],"137":[2,96],"138":[2,96],"141":[2,96],"142":[2,96],"143":[2,96],"144":[2,96],"145":[2,96],"146":[2,96],"147":[2,96],"148":[2,96],"149":[2,96],"150":[2,96],"151":[2,96],"152":[2,96],"153":[2,96],"154":[2,96],"155":[2,96],"156":[2,96],"157":[2,96],"158":[2,96],"159":[2,96],"160":[2,96],"161":[2,96],"162":[2,96],"163":[2,96],"164":[2,96],"165":[2,96],"166":[2,96],"167":[2,96]},{"28":208,"31":206,"32":[1,88],"33":207,"34":[1,86],"35":[1,87],"47":320,"50":[1,56],"66":321,"89":372,"98":[1,322]},{"4":[1,354],"85":[1,373]},{"8":374,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"51":[1,133],"62":[1,132],"100":[1,375],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[2,65],"8":376,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,65],"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"51":[2,65],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"59":[2,65],"62":[2,65],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"100":[2,65],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[2,65],"112":[2,65],"113":51,"114":[1,81],"115":52,"117":[2,65],"121":[2,65],"122":[2,65],"124":[1,53],"129":48,"130":[2,65],"131":[2,65],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65],"164":[2,65],"165":[2,65],"166":[2,65],"167":[2,65]},{"4":[2,125],"29":[2,125],"30":[2,125],"51":[1,133],"59":[2,125],"62":[1,132],"95":[2,125],"100":[2,125],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[2,58],"29":[2,58],"30":[2,58],"58":377,"59":[1,282]},{"4":[2,92],"29":[2,92],"30":[2,92],"59":[2,92],"85":[2,92]},{"4":[2,58],"29":[2,58],"30":[2,58],"58":378,"59":[1,290]},{"51":[1,133],"62":[1,132],"80":[1,379],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"8":380,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"51":[2,65],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"62":[2,65],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"80":[2,65],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[2,65],"112":[2,65],"113":51,"114":[1,81],"115":52,"117":[2,65],"121":[2,65],"122":[2,65],"124":[1,53],"129":48,"130":[2,65],"131":[2,65],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65],"164":[2,65],"165":[2,65],"166":[2,65],"167":[2,65]},{"8":381,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"8":382,"9":163,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":83,"32":[1,88],"33":61,"34":[1,86],"35":[1,87],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"49":[1,57],"50":[1,56],"52":[1,37],"55":38,"56":[1,75],"57":[1,76],"63":54,"65":34,"66":84,"67":59,"68":60,"69":30,"70":31,"71":32,"72":[1,33],"83":[1,85],"86":[1,55],"90":35,"91":[1,36],"96":[1,74],"97":[1,72],"98":[1,73],"99":[1,71],"102":[1,49],"106":[1,58],"107":[1,70],"109":50,"110":[1,79],"112":[1,80],"113":51,"114":[1,81],"115":52,"117":[1,82],"124":[1,53],"129":48,"130":[1,77],"131":[1,78],"132":[1,39],"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47]},{"30":[1,383]},{"1":[2,165],"4":[2,165],"29":[2,165],"30":[2,165],"51":[2,165],"59":[2,165],"62":[2,165],"80":[2,165],"85":[2,165],"95":[2,165],"100":[2,165],"108":[2,165],"110":[2,165],"111":[2,165],"112":[2,165],"117":[2,165],"121":[2,165],"122":[2,165],"123":[2,165],"130":[2,165],"131":[2,165],"132":[2,165],"134":[2,165],"135":[2,165],"137":[2,165],"138":[2,165],"141":[2,165],"142":[2,165],"143":[2,165],"144":[2,165],"145":[2,165],"146":[2,165],"147":[2,165],"148":[2,165],"149":[2,165],"150":[2,165],"151":[2,165],"152":[2,165],"153":[2,165],"154":[2,165],"155":[2,165],"156":[2,165],"157":[2,165],"158":[2,165],"159":[2,165],"160":[2,165],"161":[2,165],"162":[2,165],"163":[2,165],"164":[2,165],"165":[2,165],"166":[2,165],"167":[2,165]},{"30":[2,169],"126":[2,169],"128":[2,169]},{"4":[2,128],"29":[2,128],"51":[1,133],"59":[2,128],"62":[1,132],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[1,354],"30":[1,384]},{"4":[2,102],"30":[2,102],"85":[2,102]},{"4":[2,103],"30":[2,103],"85":[2,103]},{"4":[2,99],"30":[2,99],"51":[1,133],"62":[1,132],"85":[2,99],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,117],"4":[2,117],"29":[2,117],"30":[2,117],"51":[2,117],"59":[2,117],"62":[2,117],"73":[2,117],"74":[2,117],"75":[2,117],"76":[2,117],"79":[2,117],"80":[2,117],"81":[2,117],"82":[2,117],"85":[2,117],"93":[2,117],"95":[2,117],"100":[2,117],"108":[2,117],"110":[2,117],"111":[2,117],"112":[2,117],"117":[2,117],"121":[2,117],"122":[2,117],"123":[2,117],"130":[2,117],"131":[2,117],"132":[2,117],"134":[2,117],"135":[2,117],"137":[2,117],"138":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"146":[2,117],"147":[2,117],"148":[2,117],"149":[2,117],"150":[2,117],"151":[2,117],"152":[2,117],"153":[2,117],"154":[2,117],"155":[2,117],"156":[2,117],"157":[2,117],"158":[2,117],"159":[2,117],"160":[2,117],"161":[2,117],"162":[2,117],"163":[2,117],"164":[2,117],"165":[2,117],"166":[2,117],"167":[2,117]},{"51":[1,133],"62":[1,132],"100":[1,385],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"4":[1,325],"29":[1,326],"30":[1,386]},{"4":[1,332],"29":[1,333],"30":[1,387]},{"1":[2,119],"4":[2,119],"29":[2,119],"30":[2,119],"46":[2,119],"51":[2,119],"59":[2,119],"62":[2,119],"73":[2,119],"74":[2,119],"75":[2,119],"76":[2,119],"79":[2,119],"80":[2,119],"81":[2,119],"82":[2,119],"85":[2,119],"87":[2,119],"93":[2,119],"95":[2,119],"100":[2,119],"108":[2,119],"110":[2,119],"111":[2,119],"112":[2,119],"117":[2,119],"121":[2,119],"122":[2,119],"123":[2,119],"130":[2,119],"131":[2,119],"132":[2,119],"134":[2,119],"135":[2,119],"137":[2,119],"138":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"146":[2,119],"147":[2,119],"148":[2,119],"149":[2,119],"150":[2,119],"151":[2,119],"152":[2,119],"153":[2,119],"154":[2,119],"155":[2,119],"156":[2,119],"157":[2,119],"158":[2,119],"159":[2,119],"160":[2,119],"161":[2,119],"162":[2,119],"163":[2,119],"164":[2,119],"165":[2,119],"166":[2,119],"167":[2,119]},{"51":[1,133],"62":[1,132],"80":[1,388],"109":130,"110":[1,79],"112":[1,80],"115":131,"117":[1,82],"121":[1,125],"122":[1,126],"130":[1,128],"131":[1,129],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,160],"4":[2,160],"29":[2,160],"30":[2,160],"51":[1,133],"59":[2,160],"62":[1,132],"80":[2,160],"85":[2,160],"95":[2,160],"100":[2,160],"108":[2,160],"109":130,"110":[2,160],"111":[2,160],"112":[2,160],"115":131,"117":[2,160],"121":[1,125],"122":[1,126],"123":[2,160],"130":[2,160],"131":[2,160],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,161],"4":[2,161],"29":[2,161],"30":[2,161],"51":[1,133],"59":[2,161],"62":[1,132],"80":[2,161],"85":[2,161],"95":[2,161],"100":[2,161],"108":[2,161],"109":130,"110":[2,161],"111":[2,161],"112":[2,161],"115":131,"117":[2,161],"121":[1,125],"122":[1,126],"123":[2,161],"130":[2,161],"131":[2,161],"132":[1,127],"134":[1,100],"135":[1,99],"137":[1,94],"138":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,101],"145":[1,102],"146":[1,103],"147":[1,104],"148":[1,105],"149":[1,106],"150":[1,107],"151":[1,108],"152":[1,109],"153":[1,110],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119],"163":[1,120],"164":[1,121],"165":[1,122],"166":[1,123],"167":[1,124]},{"1":[2,163],"4":[2,163],"29":[2,163],"30":[2,163],"51":[2,163],"59":[2,163],"62":[2,163],"80":[2,163],"85":[2,163],"95":[2,163],"100":[2,163],"108":[2,163],"110":[2,163],"111":[2,163],"112":[2,163],"117":[2,163],"121":[2,163],"122":[2,163],"123":[2,163],"130":[2,163],"131":[2,163],"132":[2,163],"134":[2,163],"135":[2,163],"137":[2,163],"138":[2,163],"141":[2,163],"142":[2,163],"143":[2,163],"144":[2,163],"145":[2,163],"146":[2,163],"147":[2,163],"148":[2,163],"149":[2,163],"150":[2,163],"151":[2,163],"152":[2,163],"153":[2,163],"154":[2,163],"155":[2,163],"156":[2,163],"157":[2,163],"158":[2,163],"159":[2,163],"160":[2,163],"161":[2,163],"162":[2,163],"163":[2,163],"164":[2,163],"165":[2,163],"166":[2,163],"167":[2,163]},{"1":[2,97],"4":[2,97],"29":[2,97],"30":[2,97],"51":[2,97],"59":[2,97],"62":[2,97],"80":[2,97],"85":[2,97],"95":[2,97],"100":[2,97],"108":[2,97],"110":[2,97],"111":[2,97],"112":[2,97],"117":[2,97],"121":[2,97],"122":[2,97],"123":[2,97],"130":[2,97],"131":[2,97],"132":[2,97],"134":[2,97],"135":[2,97],"137":[2,97],"138":[2,97],"141":[2,97],"142":[2,97],"143":[2,97],"144":[2,97],"145":[2,97],"146":[2,97],"147":[2,97],"148":[2,97],"149":[2,97],"150":[2,97],"151":[2,97],"152":[2,97],"153":[2,97],"154":[2,97],"155":[2,97],"156":[2,97],"157":[2,97],"158":[2,97],"159":[2,97],"160":[2,97],"161":[2,97],"162":[2,97],"163":[2,97],"164":[2,97],"165":[2,97],"166":[2,97],"167":[2,97]},{"1":[2,118],"4":[2,118],"29":[2,118],"30":[2,118],"51":[2,118],"59":[2,118],"62":[2,118],"73":[2,118],"74":[2,118],"75":[2,118],"76":[2,118],"79":[2,118],"80":[2,118],"81":[2,118],"82":[2,118],"85":[2,118],"93":[2,118],"95":[2,118],"100":[2,118],"108":[2,118],"110":[2,118],"111":[2,118],"112":[2,118],"117":[2,118],"121":[2,118],"122":[2,118],"123":[2,118],"130":[2,118],"131":[2,118],"132":[2,118],"134":[2,118],"135":[2,118],"137":[2,118],"138":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"146":[2,118],"147":[2,118],"148":[2,118],"149":[2,118],"150":[2,118],"151":[2,118],"152":[2,118],"153":[2,118],"154":[2,118],"155":[2,118],"156":[2,118],"157":[2,118],"158":[2,118],"159":[2,118],"160":[2,118],"161":[2,118],"162":[2,118],"163":[2,118],"164":[2,118],"165":[2,118],"166":[2,118],"167":[2,118]},{"4":[2,126],"29":[2,126],"30":[2,126],"59":[2,126],"95":[2,126],"100":[2,126]},{"4":[2,93],"29":[2,93],"30":[2,93],"59":[2,93],"85":[2,93]},{"1":[2,120],"4":[2,120],"29":[2,120],"30":[2,120],"46":[2,120],"51":[2,120],"59":[2,120],"62":[2,120],"73":[2,120],"74":[2,120],"75":[2,120],"76":[2,120],"79":[2,120],"80":[2,120],"81":[2,120],"82":[2,120],"85":[2,120],"87":[2,120],"93":[2,120],"95":[2,120],"100":[2,120],"108":[2,120],"110":[2,120],"111":[2,120],"112":[2,120],"117":[2,120],"121":[2,120],"122":[2,120],"123":[2,120],"130":[2,120],"131":[2,120],"132":[2,120],"134":[2,120],"135":[2,120],"137":[2,120],"138":[2,120],"141":[2,120],"142":[2,120],"143":[2,120],"144":[2,120],"145":[2,120],"146":[2,120],"147":[2,120],"148":[2,120],"149":[2,120],"150":[2,120],"151":[2,120],"152":[2,120],"153":[2,120],"154":[2,120],"155":[2,120],"156":[2,120],"157":[2,120],"158":[2,120],"159":[2,120],"160":[2,120],"161":[2,120],"162":[2,120],"163":[2,120],"164":[2,120],"165":[2,120],"166":[2,120],"167":[2,120]}], + defaultActions: {"91":[2,4]}, + parseError: function parseError(str, hash) { + throw new Error(str); +diff --git a/src/grammar.coffee b/src/grammar.coffee +index 3d70f2b..42857d0 100644 +--- a/src/grammar.coffee ++++ b/src/grammar.coffee +@@ -287,6 +287,7 @@ grammar = { + o "", -> [] + o "ClassAssign", -> [$1] + o "ClassBody TERMINATOR ClassAssign", -> $1.concat $3 ++ o "{ ClassBody }", -> $2 + ] + + # The three flavors of function call: normal, object instantiation with `new`, +diff --git a/src/rewriter.coffee b/src/rewriter.coffee +index f3a0de6..94c6705 100644 +--- a/src/rewriter.coffee ++++ b/src/rewriter.coffee +@@ -31,6 +31,7 @@ exports.Rewriter = class Rewriter + @removeMidExpressionNewlines() + @closeOpenCallsAndIndexes() + @addImplicitIndentation() ++ @addImplicitBraces() + @addImplicitParentheses() + @ensureBalance BALANCED_PAIRS + @rewriteClosingParens() +@@ -110,6 +111,41 @@ exports.Rewriter = class Rewriter + brackets[brackets.length - 1] -= 1 + return 1 + ++ # Object literals may be written with implicit braces, for simple cases. ++ # Insert the missing braces here, so that the parser doesn't have to. ++ addImplicitBraces: -> ++ stack = [0] ++ closeBrackets = (i) => ++ len = stack.length - 1 ++ for tmp in [0...stack[len]] ++ @tokens.splice(i, 0, ['}', '}', @tokens[i][2]]) ++ size = stack[len] + 1 ++ stack[len] = 0 ++ size ++ @scanTokens (prev, token, post, i) => ++ tag = token[0] ++ len = stack.length - 1 ++ before = @tokens[i - 2] ++ after = @tokens[i + 2] ++ open = stack[len] > 0 ++ if include EXPRESSION_START, tag ++ stack.push(if tag is '{' then 1 else 0) ++ return 2 if tag is '{' and post and post[0] is 'INDENT' ++ else if include EXPRESSION_END, tag ++ return 1 if tag is 'OUTDENT' and post and post[0] is '}' ++ stack[len - 1] += stack.pop() ++ stack[len - 1] -= 1 if tag is '}' ++ else if tag is ':' and not open ++ idx = if before and before[0] is '@' then i - 2 else i - 1 ++ @tokens.splice idx, 0, ['{', '{', token[2]] ++ stack[stack.length - 1] += 1 ++ return 2 ++ else if tag is 'TERMINATOR' and ++ not ((after and after[0] is ':') or (post and post[0] is '@' and @tokens[i + 3] and @tokens[i + 3][0] is ':')) ++ size = closeBrackets(i) ++ return size ++ return 1 ++ + # Methods may be optionally called without parentheses, for simple cases. + # Insert the implicit parentheses here, so that the parser doesn't have to + # deal with them. +-- +2.9.3 + diff --git a/gnu/packages/patches/coffeescript-backport-prefixed-splats.patch b/gnu/packages/patches/coffeescript-backport-prefixed-splats.patch new file mode 100644 index 000000000..4da7d2683 --- /dev/null +++ b/gnu/packages/patches/coffeescript-backport-prefixed-splats.patch @@ -0,0 +1,65 @@ +From 3292aa06b7a7d3c5c2acf65ac589b3c5728e34ab Mon Sep 17 00:00:00 2001 +From: Jelle Licht +Date: Sat, 20 Aug 2016 19:24:23 +0200 +Subject: [PATCH] [BACKPORT] Support for @-prefixed splats. +To: guix-devel@gnu.org + +--- + src/nodes.coffee | 19 ++++++++++--------- + 1 file changed, 10 insertions(+), 9 deletions(-) + +diff --git a/src/nodes.coffee b/src/nodes.coffee +index 6755a91..cecb574 100644 +--- a/src/nodes.coffee ++++ b/src/nodes.coffee +@@ -876,22 +876,22 @@ exports.CodeNode = class CodeNode extends BaseNode + for param, i in @params + if splat? + if param.attach +- param.assign = new AssignNode new ValueNode literal('this'), [new AccessorNode param.name] ++ param.assign = new AssignNode new ValueNode literal('this'), [new AccessorNode param.value] + @body.expressions.splice splat.index + 1, 0, param.assign + splat.trailings.push param + else + if param.attach +- name = param.name +- param = literal o.scope.freeVariable() +- @body.unshift new AssignNode new ValueNode(literal('this'), [new AccessorNode name]), param ++ {value} = param ++ [param, param.splat] = [literal(o.scope.freeVariable()), param.splat] ++ @body.unshift new AssignNode new ValueNode(literal('this'), [new AccessorNode value]), param + if param.splat +- splat = new SplatNode param.name ++ splat = new SplatNode param.value + splat.index = i + splat.trailings = [] + splat.arglength = @params.length + @body.unshift(splat) + else +- params.push(param) ++ params.push param + params = (param.compile(o) for param in params) + @body.makeReturn() + (o.scope.parameter(param)) for param in params +@@ -923,14 +923,15 @@ exports.ParamNode = class ParamNode extends BaseNode + children: ['name'] + + constructor: (name, attach, splat) -> +- @name = literal name ++ @name = name ++ @value = literal @name + @attach = attach + @splat = splat + +- compileNode: (o) -> @name.compile o ++ compileNode: (o) -> @value.compile o + + toString: (idt) -> +- if @type is 'this' then (literal "@#name").toString idt else @name.toString idt ++ if @attach then (literal "@#@name").toString idt else @value.toString idt + + #### SplatNode + +-- +2.9.3 + diff --git a/gnu/packages/patches/coffeescript-backport-range-literals.patch b/gnu/packages/patches/coffeescript-backport-range-literals.patch new file mode 100644 index 000000000..14f09e7b7 --- /dev/null +++ b/gnu/packages/patches/coffeescript-backport-range-literals.patch @@ -0,0 +1,1017 @@ +From b3be8727151c24d991ee8be343b122362d3778fe Mon Sep 17 00:00:00 2001 +From: Jelle Licht +Date: Sun, 21 Aug 2016 09:10:54 +0200 +Subject: [PATCH] [BACKPORT] range literals +To: guix-devel@gnu.org + +--- + lib/parser.js | 330 +++++++++++++++++++++++------------------------ + src/coffee-script.coffee | 2 +- + src/grammar.coffee | 80 +++++++----- + src/lexer.coffee | 12 +- + src/nodes.coffee | 252 ++++++++++++++++++++++++------------ + 5 files changed, 379 insertions(+), 297 deletions(-) + +diff --git a/lib/parser.js b/lib/parser.js +index bc86674..012ad56 100755 +--- a/lib/parser.js ++++ b/lib/parser.js +@@ -2,9 +2,9 @@ + var parser = (function(){ + var parser = {trace: function trace() { }, + yy: {}, +-symbols_: {"error":2,"Root":3,"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,"This":61,".":62,"?.":63,"::":64,"Index":65,"INDEX_START":66,"INDEX_END":67,"INDEX_SOAK":68,"INDEX_PROTO":69,"{":70,"AssignList":71,"}":72,"CLASS":73,"EXTENDS":74,"OptFuncExist":75,"Arguments":76,"SUPER":77,"FUNC_EXIST":78,"CALL_START":79,"CALL_END":80,"ArgList":81,"THIS":82,"@":83,"[":84,"]":85,"Arg":86,"SimpleArgs":87,"TRY":88,"Catch":89,"FINALLY":90,"CATCH":91,"THROW":92,"(":93,")":94,"WhileSource":95,"WHILE":96,"WHEN":97,"UNTIL":98,"Loop":99,"LOOP":100,"ForBody":101,"ForValue":102,"ForIn":103,"FORIN":104,"BY":105,"ForOf":106,"FOROF":107,"ForTo":108,"TO":109,"FOR":110,"ALL":111,"FROM":112,"SWITCH":113,"Whens":114,"ELSE":115,"When":116,"LEADING_WHEN":117,"IfBlock":118,"IF":119,"UNLESS":120,"POST_IF":121,"POST_UNLESS":122,"UNARY":123,"-":124,"+":125,"--":126,"++":127,"?":128,"MATH":129,"SHIFT":130,"COMPARE":131,"LOGIC":132,"RELATION":133,"COMPOUND_ASSIGN":134,"$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":"...","62":".","63":"?.","64":"::","66":"INDEX_START","67":"INDEX_END","68":"INDEX_SOAK","69":"INDEX_PROTO","70":"{","72":"}","73":"CLASS","74":"EXTENDS","77":"SUPER","78":"FUNC_EXIST","79":"CALL_START","80":"CALL_END","82":"THIS","83":"@","84":"[","85":"]","88":"TRY","90":"FINALLY","91":"CATCH","92":"THROW","93":"(","94":")","96":"WHILE","97":"WHEN","98":"UNTIL","100":"LOOP","104":"FORIN","105":"BY","107":"FOROF","109":"TO","110":"FOR","111":"ALL","112":"FROM","113":"SWITCH","115":"ELSE","117":"LEADING_WHEN","119":"IF","120":"UNLESS","121":"POST_IF","122":"POST_UNLESS","123":"UNARY","124":"-","125":"+","126":"--","127":"++","128":"?","129":"MATH","130":"SHIFT","131":"COMPARE","132":"LOGIC","133":"RELATION","134":"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],[60,2],[60,2],[60,2],[60,1],[60,1],[65,3],[65,2],[65,2],[57,4],[71,0],[71,1],[71,3],[71,4],[71,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],[75,0],[75,1],[76,2],[76,4],[61,1],[61,1],[42,2],[56,2],[56,4],[81,1],[81,3],[81,4],[81,4],[81,6],[86,1],[86,1],[87,1],[87,3],[20,2],[20,3],[20,4],[20,5],[89,3],[11,2],[41,3],[95,2],[95,4],[95,2],[95,4],[21,2],[21,2],[21,2],[21,1],[99,2],[99,2],[22,2],[22,2],[22,2],[102,1],[102,1],[102,1],[103,2],[103,4],[103,4],[103,6],[106,2],[106,4],[108,2],[108,4],[108,4],[108,6],[101,3],[101,5],[101,3],[101,5],[101,4],[101,6],[101,5],[23,5],[23,7],[23,4],[23,6],[114,1],[114,2],[116,3],[116,4],[118,3],[118,3],[118,5],[118,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]], ++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,"INDEX_START":67,"INDEX_END":68,"INDEX_SOAK":69,"INDEX_PROTO":70,"{":71,"AssignList":72,"}":73,"CLASS":74,"EXTENDS":75,"OptFuncExist":76,"Arguments":77,"SUPER":78,"FUNC_EXIST":79,"CALL_START":80,"CALL_END":81,"ArgList":82,"THIS":83,"@":84,"[":85,"]":86,"RangeDots":87,"..":88,"Slice":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":"::","67":"INDEX_START","68":"INDEX_END","69":"INDEX_SOAK","70":"INDEX_PROTO","71":"{","73":"}","74":"CLASS","75":"EXTENDS","78":"SUPER","79":"FUNC_EXIST","80":"CALL_START","81":"CALL_END","83":"THIS","84":"@","85":"[","86":"]","88":"..","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],[66,3],[66,2],[66,2],[57,4],[72,0],[72,1],[72,3],[72,4],[72,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],[76,0],[76,1],[77,2],[77,4],[62,1],[62,1],[42,2],[56,2],[56,4],[87,1],[87,1],[61,5],[89,5],[89,4],[89,4],[82,1],[82,3],[82,4],[82,4],[82,6],[90,1],[90,1],[91,1],[91,3],[20,2],[20,3],[20,4],[20,5],[93,3],[11,2],[41,3],[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 anonymous(yytext,yyleng,yylineno,yy) { + + var $$ = arguments[5],$0=arguments[5].length; +@@ -153,313 +153,301 @@ case 71:this.$ = new yy.Value($$[$0-1+1-1]); + break; + case 72:this.$ = new yy.Value($$[$0-1+1-1]); + break; +-case 73:this.$ = $$[$0-1+1-1]; ++case 73:this.$ = new yy.Value($$[$0-1+1-1]); + break; +-case 74:this.$ = new yy.Accessor($$[$0-2+2-1]); ++case 74:this.$ = $$[$0-1+1-1]; + break; +-case 75:this.$ = new yy.Accessor($$[$0-2+2-1], 'soak'); ++case 75:this.$ = new yy.Accessor($$[$0-2+2-1]); + break; +-case 76:this.$ = new yy.Accessor($$[$0-2+2-1], 'proto'); ++case 76:this.$ = new yy.Accessor($$[$0-2+2-1], 'soak'); + break; +-case 77:this.$ = new yy.Accessor(new yy.Literal('prototype')); ++case 77:this.$ = new yy.Accessor($$[$0-2+2-1], 'proto'); + break; +-case 78:this.$ = $$[$0-1+1-1]; ++case 78:this.$ = new yy.Accessor(new yy.Literal('prototype')); + break; +-case 79:this.$ = new yy.Index($$[$0-3+2-1]); ++case 79:this.$ = $$[$0-1+1-1]; + break; +-case 80:this.$ = yy.extend($$[$0-2+2-1], { ++case 80:this.$ = new yy.Index($$[$0-3+2-1]); ++break; ++case 81:this.$ = yy.extend($$[$0-2+2-1], { + soak: true + }); + break; +-case 81:this.$ = yy.extend($$[$0-2+2-1], { ++case 82:this.$ = yy.extend($$[$0-2+2-1], { + proto: true + }); + break; +-case 82:this.$ = new yy.Obj($$[$0-4+2-1], $$[$0-4+1-1].generated); +-break; +-case 83:this.$ = []; ++case 83:this.$ = new yy.Obj($$[$0-4+2-1], $$[$0-4+1-1].generated); + break; +-case 84:this.$ = [$$[$0-1+1-1]]; ++case 84:this.$ = []; + break; +-case 85:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); ++case 85:this.$ = [$$[$0-1+1-1]]; + break; +-case 86:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); ++case 86:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); + break; +-case 87:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); ++case 87:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); + break; +-case 88:this.$ = new yy.Class; ++case 88:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); + break; +-case 89:this.$ = new yy.Class(null, null, $$[$0-2+2-1]); ++case 89:this.$ = new yy.Class; + break; +-case 90:this.$ = new yy.Class(null, $$[$0-3+3-1]); ++case 90:this.$ = new yy.Class(null, null, $$[$0-2+2-1]); + break; +-case 91:this.$ = new yy.Class(null, $$[$0-4+3-1], $$[$0-4+4-1]); ++case 91:this.$ = new yy.Class(null, $$[$0-3+3-1]); + break; +-case 92:this.$ = new yy.Class($$[$0-2+2-1]); ++case 92:this.$ = new yy.Class(null, $$[$0-4+3-1], $$[$0-4+4-1]); + break; +-case 93:this.$ = new yy.Class($$[$0-3+2-1], null, $$[$0-3+3-1]); ++case 93:this.$ = new yy.Class($$[$0-2+2-1]); + break; +-case 94:this.$ = new yy.Class($$[$0-4+2-1], $$[$0-4+4-1]); ++case 94:this.$ = new yy.Class($$[$0-3+2-1], null, $$[$0-3+3-1]); + break; +-case 95:this.$ = new yy.Class($$[$0-5+2-1], $$[$0-5+4-1], $$[$0-5+5-1]); ++case 95:this.$ = new yy.Class($$[$0-4+2-1], $$[$0-4+4-1]); + break; +-case 96:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); ++case 96:this.$ = new yy.Class($$[$0-5+2-1], $$[$0-5+4-1], $$[$0-5+5-1]); + break; + case 97:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); + break; +-case 98:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); ++case 98:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); + break; +-case 99:this.$ = new yy.Call('super', $$[$0-2+2-1]); ++case 99:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); + break; +-case 100:this.$ = false; ++case 100:this.$ = new yy.Call('super', $$[$0-2+2-1]); + break; +-case 101:this.$ = true; ++case 101:this.$ = false; + break; +-case 102:this.$ = []; ++case 102:this.$ = true; + break; +-case 103:this.$ = $$[$0-4+2-1]; ++case 103:this.$ = []; + break; +-case 104:this.$ = new yy.Value(new yy.Literal('this')); ++case 104:this.$ = $$[$0-4+2-1]; + break; + case 105:this.$ = new yy.Value(new yy.Literal('this')); + break; +-case 106:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Accessor($$[$0-2+2-1])], 'this'); ++case 106:this.$ = new yy.Value(new yy.Literal('this')); ++break; ++case 107:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Accessor($$[$0-2+2-1])], 'this'); ++break; ++case 108:this.$ = new yy.Arr([]); ++break; ++case 109:this.$ = new yy.Arr($$[$0-4+2-1]); ++break; ++case 110:this.$ = 'inclusive'; + break; +-case 107:this.$ = new yy.Arr([]); ++case 111:this.$ = 'exclusive'; + break; +-case 108:this.$ = new yy.Arr($$[$0-4+2-1]); ++case 112:this.$ = new yy.Range($$[$0-5+2-1], $$[$0-5+4-1], $$[$0-5+3-1]); + break; +-case 109:this.$ = [$$[$0-1+1-1]]; ++case 113:this.$ = new yy.Range($$[$0-5+2-1], $$[$0-5+4-1], $$[$0-5+3-1]); + break; +-case 110:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); ++case 114:this.$ = new yy.Range($$[$0-4+2-1], null, $$[$0-4+3-1]); + break; +-case 111:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); ++case 115:this.$ = new yy.Range(null, $$[$0-4+3-1], $$[$0-4+2-1]); + break; +-case 112:this.$ = $$[$0-4+2-1]; ++case 116:this.$ = [$$[$0-1+1-1]]; + break; +-case 113:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); ++case 117:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); + break; +-case 114:this.$ = $$[$0-1+1-1]; ++case 118:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); + break; +-case 115:this.$ = $$[$0-1+1-1]; ++case 119:this.$ = $$[$0-4+2-1]; + break; +-case 116:this.$ = $$[$0-1+1-1]; ++case 120:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); + break; +-case 117:this.$ = [].concat($$[$0-3+1-1], $$[$0-3+3-1]); ++case 121:this.$ = $$[$0-1+1-1]; + break; +-case 118:this.$ = new yy.Try($$[$0-2+2-1]); ++case 122:this.$ = $$[$0-1+1-1]; + break; +-case 119:this.$ = new yy.Try($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); ++case 123:this.$ = $$[$0-1+1-1]; + break; +-case 120:this.$ = new yy.Try($$[$0-4+2-1], null, null, $$[$0-4+4-1]); ++case 124:this.$ = [].concat($$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 121:this.$ = new yy.Try($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); ++case 125:this.$ = new yy.Try($$[$0-2+2-1]); + break; +-case 122:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; ++case 126:this.$ = new yy.Try($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); + break; +-case 123:this.$ = new yy.Throw($$[$0-2+2-1]); ++case 127:this.$ = new yy.Try($$[$0-4+2-1], null, null, $$[$0-4+4-1]); + break; +-case 124:this.$ = new yy.Parens($$[$0-3+2-1]); ++case 128:this.$ = new yy.Try($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); + break; +-case 125:this.$ = new yy.While($$[$0-2+2-1]); ++case 129:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; + break; +-case 126:this.$ = new yy.While($$[$0-4+2-1], { ++case 130:this.$ = new yy.Throw($$[$0-2+2-1]); ++break; ++case 131:this.$ = new yy.Parens($$[$0-3+2-1]); ++break; ++case 132:this.$ = new yy.While($$[$0-2+2-1]); ++break; ++case 133:this.$ = new yy.While($$[$0-4+2-1], { + guard: $$[$0-4+4-1] + }); + break; +-case 127:this.$ = new yy.While($$[$0-2+2-1], { ++case 134:this.$ = new yy.While($$[$0-2+2-1], { + invert: true + }); + break; +-case 128:this.$ = new yy.While($$[$0-4+2-1], { ++case 135:this.$ = new yy.While($$[$0-4+2-1], { + invert: true, + guard: $$[$0-4+4-1] + }); + break; +-case 129:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); ++case 136:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); + break; +-case 130:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); ++case 137:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); + break; +-case 131:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); ++case 138:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); + break; +-case 132:this.$ = $$[$0-1+1-1]; ++case 139:this.$ = $$[$0-1+1-1]; + break; +-case 133:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0-2+2-1]); ++case 140:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0-2+2-1]); + break; +-case 134:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Expressions.wrap([$$[$0-2+2-1]])); ++case 141:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Expressions.wrap([$$[$0-2+2-1]])); + break; +-case 135:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); ++case 142:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1], $$[$0-2+2-1].vars[0], $$[$0-2+2-1].vars[1]); + break; +-case 136:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); ++case 143:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1], $$[$0-2+2-1].vars[0], $$[$0-2+2-1].vars[1]); + break; +-case 137:this.$ = new yy.For($$[$0-2+2-1], $$[$0-2+1-1]); ++case 144:this.$ = new yy.For($$[$0-2+2-1], $$[$0-2+1-1], $$[$0-2+1-1].vars[0], $$[$0-2+1-1].vars[1]); + break; +-case 138:this.$ = $$[$0-1+1-1]; ++case 145:this.$ = { ++ source: new yy.Value($$[$0-2+2-1]), ++ vars: [] ++ }; + break; +-case 139:this.$ = new yy.Value($$[$0-1+1-1]); ++case 146:this.$ = (function () { ++ $$[$0-2+2-1].raw = $$[$0-2+1-1].raw; ++ $$[$0-2+2-1].vars = $$[$0-2+1-1]; ++ return $$[$0-2+2-1]; ++ }()); + break; +-case 140:this.$ = new yy.Value($$[$0-1+1-1]); ++case 147:this.$ = $$[$0-2+2-1]; + break; +-case 141:this.$ = { +- source: $$[$0-2+2-1] +- }; ++case 148:this.$ = (function () { ++ $$[$0-3+3-1].raw = true; ++ return $$[$0-3+3-1]; ++ }()); + break; +-case 142:this.$ = { +- source: $$[$0-4+2-1], +- guard: $$[$0-4+4-1] +- }; ++case 149:this.$ = $$[$0-1+1-1]; + break; +-case 143:this.$ = { +- source: $$[$0-4+2-1], +- step: $$[$0-4+4-1] +- }; ++case 150:this.$ = new yy.Value($$[$0-1+1-1]); + break; +-case 144:this.$ = { +- source: $$[$0-6+2-1], +- step: $$[$0-6+4-1], +- guard: $$[$0-6+6-1] +- }; ++case 151:this.$ = new yy.Value($$[$0-1+1-1]); + break; +-case 145:this.$ = { +- object: true, ++case 152:this.$ = [$$[$0-1+1-1]]; ++break; ++case 153:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; ++break; ++case 154:this.$ = { + source: $$[$0-2+2-1] + }; + break; +-case 146:this.$ = { +- object: true, ++case 155:this.$ = { ++ source: $$[$0-2+2-1], ++ object: true ++ }; ++break; ++case 156:this.$ = { + source: $$[$0-4+2-1], + guard: $$[$0-4+4-1] + }; + break; +-case 147:this.$ = { +- to: $$[$0-2+2-1] ++case 157:this.$ = { ++ source: $$[$0-4+2-1], ++ guard: $$[$0-4+4-1], ++ object: true + }; + break; +-case 148:this.$ = { +- to: $$[$0-4+2-1], +- guard: $$[$0-4+4-1] ++case 158:this.$ = { ++ source: $$[$0-4+2-1], ++ step: $$[$0-4+4-1] + }; + break; +-case 149:this.$ = { +- to: $$[$0-4+2-1], +- step: $$[$0-4+4-1] ++case 159:this.$ = { ++ source: $$[$0-6+2-1], ++ guard: $$[$0-6+4-1], ++ step: $$[$0-6+6-1] + }; + break; +-case 150:this.$ = { +- to: $$[$0-6+2-1], ++case 160:this.$ = { ++ source: $$[$0-6+2-1], + step: $$[$0-6+4-1], + guard: $$[$0-6+6-1] + }; + break; +-case 151:this.$ = yy.extend($$[$0-3+3-1], { +- name: $$[$0-3+2-1] +- }); +-break; +-case 152:this.$ = yy.extend($$[$0-5+5-1], { +- name: $$[$0-5+2-1], +- index: $$[$0-5+4-1] +- }); +-break; +-case 153:this.$ = yy.extend($$[$0-3+3-1], { +- index: $$[$0-3+2-1] +- }); +-break; +-case 154:this.$ = yy.extend($$[$0-5+5-1], { +- index: $$[$0-5+2-1], +- name: $$[$0-5+4-1] +- }); +-break; +-case 155:this.$ = yy.extend($$[$0-4+4-1], { +- raw: true, +- index: $$[$0-4+3-1] +- }); +-break; +-case 156:this.$ = yy.extend($$[$0-6+6-1], { +- raw: true, +- index: $$[$0-6+3-1], +- name: $$[$0-6+5-1] +- }); ++case 161:this.$ = new yy.Switch($$[$0-5+2-1], $$[$0-5+4-1]); + break; +-case 157:this.$ = yy.extend($$[$0-5+5-1], { +- index: $$[$0-5+2-1], +- from: $$[$0-5+4-1] +- }); +-break; +-case 158:this.$ = new yy.Switch($$[$0-5+2-1], $$[$0-5+4-1]); ++case 162:this.$ = new yy.Switch($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); + break; +-case 159:this.$ = new yy.Switch($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); ++case 163:this.$ = new yy.Switch(null, $$[$0-4+3-1]); + break; +-case 160:this.$ = new yy.Switch(null, $$[$0-4+3-1]); ++case 164:this.$ = new yy.Switch(null, $$[$0-6+3-1], $$[$0-6+5-1]); + break; +-case 161:this.$ = new yy.Switch(null, $$[$0-6+3-1], $$[$0-6+5-1]); ++case 165:this.$ = $$[$0-1+1-1]; + break; +-case 162:this.$ = $$[$0-1+1-1]; ++case 166:this.$ = $$[$0-2+1-1].concat($$[$0-2+2-1]); + break; +-case 163:this.$ = $$[$0-2+1-1].concat($$[$0-2+2-1]); ++case 167:this.$ = [[$$[$0-3+2-1], $$[$0-3+3-1]]]; + break; +-case 164:this.$ = [[$$[$0-3+2-1], $$[$0-3+3-1]]]; ++case 168:this.$ = [[$$[$0-4+2-1], $$[$0-4+3-1]]]; + break; +-case 165:this.$ = [[$$[$0-4+2-1], $$[$0-4+3-1]]]; ++case 169:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1]); + break; +-case 166:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1]); +-break; +-case 167:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1], { ++case 170:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1], { + invert: true + }); + break; +-case 168:this.$ = $$[$0-5+1-1].addElse(new yy.If($$[$0-5+4-1], $$[$0-5+5-1])); ++case 171:this.$ = $$[$0-5+1-1].addElse(new yy.If($$[$0-5+4-1], $$[$0-5+5-1])); + break; +-case 169:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); ++case 172:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); + break; +-case 170:this.$ = $$[$0-1+1-1]; ++case 173:this.$ = $$[$0-1+1-1]; + break; +-case 171:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { ++case 174:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true + }); + break; +-case 172:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { ++case 175:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true + }); + break; +-case 173:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { ++case 176:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true, + invert: true + }); + break; +-case 174:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { ++case 177:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true, + invert: true + }); + break; +-case 175:this.$ = new yy.Op($$[$0-2+1-1], $$[$0-2+2-1]); ++case 178:this.$ = new yy.Op($$[$0-2+1-1], $$[$0-2+2-1]); + break; +-case 176:this.$ = new yy.Op('-', $$[$0-2+2-1]); ++case 179:this.$ = new yy.Op('-', $$[$0-2+2-1]); + break; +-case 177:this.$ = new yy.Op('+', $$[$0-2+2-1]); ++case 180:this.$ = new yy.Op('+', $$[$0-2+2-1]); + break; +-case 178:this.$ = new yy.Op('--', $$[$0-2+2-1]); ++case 181:this.$ = new yy.Op('--', $$[$0-2+2-1]); + break; +-case 179:this.$ = new yy.Op('++', $$[$0-2+2-1]); ++case 182:this.$ = new yy.Op('++', $$[$0-2+2-1]); + break; +-case 180:this.$ = new yy.Op('--', $$[$0-2+1-1], null, true); ++case 183:this.$ = new yy.Op('--', $$[$0-2+1-1], null, true); + break; +-case 181:this.$ = new yy.Op('++', $$[$0-2+1-1], null, true); ++case 184:this.$ = new yy.Op('++', $$[$0-2+1-1], null, true); + break; +-case 182:this.$ = new yy.Existence($$[$0-2+1-1]); ++case 185:this.$ = new yy.Existence($$[$0-2+1-1]); + break; +-case 183:this.$ = new yy.Op('+', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 186:this.$ = new yy.Op('+', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 184:this.$ = new yy.Op('-', $$[$0-3+1-1], $$[$0-3+3-1]); ++case 187:this.$ = new yy.Op('-', $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 185:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); ++case 188:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 186:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); ++case 189:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 187:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); ++case 190:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 188:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); ++case 191:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); + break; +-case 189:this.$ = (function () { ++case 192:this.$ = (function () { + if ($$[$0-3+2-1].charAt(0) === '!') { + return new yy.Op($$[$0-3+2-1].slice(1), $$[$0-3+1-1], $$[$0-3+3-1]).invert(); + } else { +@@ -467,16 +455,16 @@ case 189:this.$ = (function () { + } + }()); + break; +-case 190:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); ++case 193:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); + break; +-case 191:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1], $$[$0-5+2-1]); ++case 194:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1], $$[$0-5+2-1]); + break; +-case 192:this.$ = new yy.Extends($$[$0-3+1-1], $$[$0-3+3-1]); ++case 195:this.$ = new yy.Extends($$[$0-3+1-1], $$[$0-3+3-1]); + break; + } + }, +-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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[3]},{"1":[2,2],"6":[1,70]},{"6":[1,71]},{"1":[2,4],"6":[2,4],"26":[2,4]},{"4":72,"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,73],"27":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,7],"6":[2,7],"26":[2,7],"95":84,"96":[1,61],"98":[1,62],"101":85,"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,8],"6":[2,8],"26":[2,8],"95":88,"96":[1,61],"98":[1,62],"101":89,"110":[1,64],"121":[1,86],"122":[1,87]},{"1":[2,13],"6":[2,13],"25":[2,13],"26":[2,13],"47":[2,13],"52":[2,13],"55":[2,13],"60":91,"62":[1,93],"63":[1,94],"64":[1,95],"65":96,"66":[1,97],"67":[2,13],"68":[1,98],"69":[1,99],"72":[2,13],"75":90,"78":[1,92],"79":[2,100],"80":[2,13],"85":[2,13],"94":[2,13],"96":[2,13],"97":[2,13],"98":[2,13],"105":[2,13],"109":[2,13],"110":[2,13],"121":[2,13],"122":[2,13],"124":[2,13],"125":[2,13],"128":[2,13],"129":[2,13],"130":[2,13],"131":[2,13],"132":[2,13],"133":[2,13]},{"1":[2,14],"6":[2,14],"25":[2,14],"26":[2,14],"47":[2,14],"52":[2,14],"55":[2,14],"60":101,"62":[1,93],"63":[1,94],"64":[1,95],"65":96,"66":[1,97],"67":[2,14],"68":[1,98],"69":[1,99],"72":[2,14],"75":100,"78":[1,92],"79":[2,100],"80":[2,14],"85":[2,14],"94":[2,14],"96":[2,14],"97":[2,14],"98":[2,14],"105":[2,14],"109":[2,14],"110":[2,14],"121":[2,14],"122":[2,14],"124":[2,14],"125":[2,14],"128":[2,14],"129":[2,14],"130":[2,14],"131":[2,14],"132":[2,14],"133":[2,14]},{"1":[2,15],"6":[2,15],"25":[2,15],"26":[2,15],"47":[2,15],"52":[2,15],"55":[2,15],"67":[2,15],"72":[2,15],"80":[2,15],"85":[2,15],"94":[2,15],"96":[2,15],"97":[2,15],"98":[2,15],"105":[2,15],"109":[2,15],"110":[2,15],"121":[2,15],"122":[2,15],"124":[2,15],"125":[2,15],"128":[2,15],"129":[2,15],"130":[2,15],"131":[2,15],"132":[2,15],"133":[2,15]},{"1":[2,16],"6":[2,16],"25":[2,16],"26":[2,16],"47":[2,16],"52":[2,16],"55":[2,16],"67":[2,16],"72":[2,16],"80":[2,16],"85":[2,16],"94":[2,16],"96":[2,16],"97":[2,16],"98":[2,16],"105":[2,16],"109":[2,16],"110":[2,16],"121":[2,16],"122":[2,16],"124":[2,16],"125":[2,16],"128":[2,16],"129":[2,16],"130":[2,16],"131":[2,16],"132":[2,16],"133":[2,16]},{"1":[2,17],"6":[2,17],"25":[2,17],"26":[2,17],"47":[2,17],"52":[2,17],"55":[2,17],"67":[2,17],"72":[2,17],"80":[2,17],"85":[2,17],"94":[2,17],"96":[2,17],"97":[2,17],"98":[2,17],"105":[2,17],"109":[2,17],"110":[2,17],"121":[2,17],"122":[2,17],"124":[2,17],"125":[2,17],"128":[2,17],"129":[2,17],"130":[2,17],"131":[2,17],"132":[2,17],"133":[2,17]},{"1":[2,18],"6":[2,18],"25":[2,18],"26":[2,18],"47":[2,18],"52":[2,18],"55":[2,18],"67":[2,18],"72":[2,18],"80":[2,18],"85":[2,18],"94":[2,18],"96":[2,18],"97":[2,18],"98":[2,18],"105":[2,18],"109":[2,18],"110":[2,18],"121":[2,18],"122":[2,18],"124":[2,18],"125":[2,18],"128":[2,18],"129":[2,18],"130":[2,18],"131":[2,18],"132":[2,18],"133":[2,18]},{"1":[2,19],"6":[2,19],"25":[2,19],"26":[2,19],"47":[2,19],"52":[2,19],"55":[2,19],"67":[2,19],"72":[2,19],"80":[2,19],"85":[2,19],"94":[2,19],"96":[2,19],"97":[2,19],"98":[2,19],"105":[2,19],"109":[2,19],"110":[2,19],"121":[2,19],"122":[2,19],"124":[2,19],"125":[2,19],"128":[2,19],"129":[2,19],"130":[2,19],"131":[2,19],"132":[2,19],"133":[2,19]},{"1":[2,20],"6":[2,20],"25":[2,20],"26":[2,20],"47":[2,20],"52":[2,20],"55":[2,20],"67":[2,20],"72":[2,20],"80":[2,20],"85":[2,20],"94":[2,20],"96":[2,20],"97":[2,20],"98":[2,20],"105":[2,20],"109":[2,20],"110":[2,20],"121":[2,20],"122":[2,20],"124":[2,20],"125":[2,20],"128":[2,20],"129":[2,20],"130":[2,20],"131":[2,20],"132":[2,20],"133":[2,20]},{"1":[2,21],"6":[2,21],"25":[2,21],"26":[2,21],"47":[2,21],"52":[2,21],"55":[2,21],"67":[2,21],"72":[2,21],"80":[2,21],"85":[2,21],"94":[2,21],"96":[2,21],"97":[2,21],"98":[2,21],"105":[2,21],"109":[2,21],"110":[2,21],"121":[2,21],"122":[2,21],"124":[2,21],"125":[2,21],"128":[2,21],"129":[2,21],"130":[2,21],"131":[2,21],"132":[2,21],"133":[2,21]},{"1":[2,22],"6":[2,22],"25":[2,22],"26":[2,22],"47":[2,22],"52":[2,22],"55":[2,22],"67":[2,22],"72":[2,22],"80":[2,22],"85":[2,22],"94":[2,22],"96":[2,22],"97":[2,22],"98":[2,22],"105":[2,22],"109":[2,22],"110":[2,22],"121":[2,22],"122":[2,22],"124":[2,22],"125":[2,22],"128":[2,22],"129":[2,22],"130":[2,22],"131":[2,22],"132":[2,22],"133":[2,22]},{"1":[2,23],"6":[2,23],"25":[2,23],"26":[2,23],"47":[2,23],"52":[2,23],"55":[2,23],"67":[2,23],"72":[2,23],"80":[2,23],"85":[2,23],"94":[2,23],"96":[2,23],"97":[2,23],"98":[2,23],"105":[2,23],"109":[2,23],"110":[2,23],"121":[2,23],"122":[2,23],"124":[2,23],"125":[2,23],"128":[2,23],"129":[2,23],"130":[2,23],"131":[2,23],"132":[2,23],"133":[2,23]},{"1":[2,9],"6":[2,9],"26":[2,9],"96":[2,9],"98":[2,9],"110":[2,9],"121":[2,9],"122":[2,9]},{"1":[2,10],"6":[2,10],"26":[2,10],"96":[2,10],"98":[2,10],"110":[2,10],"121":[2,10],"122":[2,10]},{"1":[2,11],"6":[2,11],"26":[2,11],"96":[2,11],"98":[2,11],"110":[2,11],"121":[2,11],"122":[2,11]},{"1":[2,12],"6":[2,12],"26":[2,12],"96":[2,12],"98":[2,12],"110":[2,12],"121":[2,12],"122":[2,12]},{"1":[2,70],"6":[2,70],"25":[2,70],"26":[2,70],"37":[1,102],"47":[2,70],"52":[2,70],"55":[2,70],"62":[2,70],"63":[2,70],"64":[2,70],"66":[2,70],"67":[2,70],"68":[2,70],"69":[2,70],"72":[2,70],"78":[2,70],"79":[2,70],"80":[2,70],"85":[2,70],"94":[2,70],"96":[2,70],"97":[2,70],"98":[2,70],"105":[2,70],"109":[2,70],"110":[2,70],"121":[2,70],"122":[2,70],"124":[2,70],"125":[2,70],"128":[2,70],"129":[2,70],"130":[2,70],"131":[2,70],"132":[2,70],"133":[2,70]},{"1":[2,71],"6":[2,71],"25":[2,71],"26":[2,71],"47":[2,71],"52":[2,71],"55":[2,71],"62":[2,71],"63":[2,71],"64":[2,71],"66":[2,71],"67":[2,71],"68":[2,71],"69":[2,71],"72":[2,71],"78":[2,71],"79":[2,71],"80":[2,71],"85":[2,71],"94":[2,71],"96":[2,71],"97":[2,71],"98":[2,71],"105":[2,71],"109":[2,71],"110":[2,71],"121":[2,71],"122":[2,71],"124":[2,71],"125":[2,71],"128":[2,71],"129":[2,71],"130":[2,71],"131":[2,71],"132":[2,71],"133":[2,71]},{"1":[2,72],"6":[2,72],"25":[2,72],"26":[2,72],"47":[2,72],"52":[2,72],"55":[2,72],"62":[2,72],"63":[2,72],"64":[2,72],"66":[2,72],"67":[2,72],"68":[2,72],"69":[2,72],"72":[2,72],"78":[2,72],"79":[2,72],"80":[2,72],"85":[2,72],"94":[2,72],"96":[2,72],"97":[2,72],"98":[2,72],"105":[2,72],"109":[2,72],"110":[2,72],"121":[2,72],"122":[2,72],"124":[2,72],"125":[2,72],"128":[2,72],"129":[2,72],"130":[2,72],"131":[2,72],"132":[2,72],"133":[2,72]},{"1":[2,73],"6":[2,73],"25":[2,73],"26":[2,73],"47":[2,73],"52":[2,73],"55":[2,73],"62":[2,73],"63":[2,73],"64":[2,73],"66":[2,73],"67":[2,73],"68":[2,73],"69":[2,73],"72":[2,73],"78":[2,73],"79":[2,73],"80":[2,73],"85":[2,73],"94":[2,73],"96":[2,73],"97":[2,73],"98":[2,73],"105":[2,73],"109":[2,73],"110":[2,73],"121":[2,73],"122":[2,73],"124":[2,73],"125":[2,73],"128":[2,73],"129":[2,73],"130":[2,73],"131":[2,73],"132":[2,73],"133":[2,73]},{"1":[2,98],"6":[2,98],"25":[2,98],"26":[2,98],"47":[2,98],"52":[2,98],"55":[2,98],"62":[2,98],"63":[2,98],"64":[2,98],"66":[2,98],"67":[2,98],"68":[2,98],"69":[2,98],"72":[2,98],"76":103,"78":[2,98],"79":[1,104],"80":[2,98],"85":[2,98],"94":[2,98],"96":[2,98],"97":[2,98],"98":[2,98],"105":[2,98],"109":[2,98],"110":[2,98],"121":[2,98],"122":[2,98],"124":[2,98],"125":[2,98],"128":[2,98],"129":[2,98],"130":[2,98],"131":[2,98],"132":[2,98],"133":[2,98]},{"27":108,"28":[1,69],"42":109,"46":105,"47":[2,52],"52":[2,52],"53":106,"54":107,"56":110,"57":111,"70":[1,66],"83":[1,112],"84":[1,65]},{"5":113,"25":[1,5]},{"8":114,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":116,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":117,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"14":119,"15":120,"27":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":121,"41":25,"42":58,"56":46,"57":47,"59":118,"61":26,"70":[1,66],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"93":[1,52]},{"14":119,"15":120,"27":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":121,"41":25,"42":58,"56":46,"57":47,"59":122,"61":26,"70":[1,66],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"93":[1,52]},{"1":[2,67],"6":[2,67],"25":[2,67],"26":[2,67],"37":[2,67],"47":[2,67],"52":[2,67],"55":[2,67],"62":[2,67],"63":[2,67],"64":[2,67],"66":[2,67],"67":[2,67],"68":[2,67],"69":[2,67],"72":[2,67],"74":[1,126],"78":[2,67],"79":[2,67],"80":[2,67],"85":[2,67],"94":[2,67],"96":[2,67],"97":[2,67],"98":[2,67],"105":[2,67],"109":[2,67],"110":[2,67],"121":[2,67],"122":[2,67],"124":[2,67],"125":[2,67],"126":[1,123],"127":[1,124],"128":[2,67],"129":[2,67],"130":[2,67],"131":[2,67],"132":[2,67],"133":[2,67],"134":[1,125]},{"1":[2,170],"6":[2,170],"25":[2,170],"26":[2,170],"47":[2,170],"52":[2,170],"55":[2,170],"67":[2,170],"72":[2,170],"80":[2,170],"85":[2,170],"94":[2,170],"96":[2,170],"97":[2,170],"98":[2,170],"105":[2,170],"109":[2,170],"110":[2,170],"115":[1,127],"121":[2,170],"122":[2,170],"124":[2,170],"125":[2,170],"128":[2,170],"129":[2,170],"130":[2,170],"131":[2,170],"132":[2,170],"133":[2,170]},{"5":128,"25":[1,5]},{"5":129,"25":[1,5]},{"1":[2,132],"6":[2,132],"25":[2,132],"26":[2,132],"47":[2,132],"52":[2,132],"55":[2,132],"67":[2,132],"72":[2,132],"80":[2,132],"85":[2,132],"94":[2,132],"96":[2,132],"97":[2,132],"98":[2,132],"105":[2,132],"109":[2,132],"110":[2,132],"121":[2,132],"122":[2,132],"124":[2,132],"125":[2,132],"128":[2,132],"129":[2,132],"130":[2,132],"131":[2,132],"132":[2,132],"133":[2,132]},{"5":130,"25":[1,5]},{"8":131,"9":115,"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,132],"27":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,88],"5":133,"6":[2,88],"14":119,"15":120,"25":[1,5],"26":[2,88],"27":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":121,"41":25,"42":58,"47":[2,88],"52":[2,88],"55":[2,88],"56":46,"57":47,"59":135,"61":26,"67":[2,88],"70":[1,66],"72":[2,88],"74":[1,134],"77":[1,27],"80":[2,88],"82":[1,53],"83":[1,54],"84":[1,65],"85":[2,88],"93":[1,52],"94":[2,88],"96":[2,88],"97":[2,88],"98":[2,88],"105":[2,88],"109":[2,88],"110":[2,88],"121":[2,88],"122":[2,88],"124":[2,88],"125":[2,88],"128":[2,88],"129":[2,88],"130":[2,88],"131":[2,88],"132":[2,88],"133":[2,88]},{"1":[2,44],"6":[2,44],"8":136,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[2,44],"98":[2,44],"99":39,"100":[1,63],"101":40,"110":[2,44],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"121":[2,44],"122":[2,44],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":137,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,45],"6":[2,45],"25":[2,45],"26":[2,45],"52":[2,45],"72":[2,45],"96":[2,45],"98":[2,45],"110":[2,45],"121":[2,45],"122":[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],"62":[2,68],"63":[2,68],"64":[2,68],"66":[2,68],"67":[2,68],"68":[2,68],"69":[2,68],"72":[2,68],"78":[2,68],"79":[2,68],"80":[2,68],"85":[2,68],"94":[2,68],"96":[2,68],"97":[2,68],"98":[2,68],"105":[2,68],"109":[2,68],"110":[2,68],"121":[2,68],"122":[2,68],"124":[2,68],"125":[2,68],"128":[2,68],"129":[2,68],"130":[2,68],"131":[2,68],"132":[2,68],"133":[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],"62":[2,69],"63":[2,69],"64":[2,69],"66":[2,69],"67":[2,69],"68":[2,69],"69":[2,69],"72":[2,69],"78":[2,69],"79":[2,69],"80":[2,69],"85":[2,69],"94":[2,69],"96":[2,69],"97":[2,69],"98":[2,69],"105":[2,69],"109":[2,69],"110":[2,69],"121":[2,69],"122":[2,69],"124":[2,69],"125":[2,69],"128":[2,69],"129":[2,69],"130":[2,69],"131":[2,69],"132":[2,69],"133":[2,69]},{"1":[2,29],"6":[2,29],"25":[2,29],"26":[2,29],"47":[2,29],"52":[2,29],"55":[2,29],"62":[2,29],"63":[2,29],"64":[2,29],"66":[2,29],"67":[2,29],"68":[2,29],"69":[2,29],"72":[2,29],"78":[2,29],"79":[2,29],"80":[2,29],"85":[2,29],"94":[2,29],"96":[2,29],"97":[2,29],"98":[2,29],"105":[2,29],"109":[2,29],"110":[2,29],"121":[2,29],"122":[2,29],"124":[2,29],"125":[2,29],"128":[2,29],"129":[2,29],"130":[2,29],"131":[2,29],"132":[2,29],"133":[2,29]},{"1":[2,30],"6":[2,30],"25":[2,30],"26":[2,30],"47":[2,30],"52":[2,30],"55":[2,30],"62":[2,30],"63":[2,30],"64":[2,30],"66":[2,30],"67":[2,30],"68":[2,30],"69":[2,30],"72":[2,30],"78":[2,30],"79":[2,30],"80":[2,30],"85":[2,30],"94":[2,30],"96":[2,30],"97":[2,30],"98":[2,30],"105":[2,30],"109":[2,30],"110":[2,30],"121":[2,30],"122":[2,30],"124":[2,30],"125":[2,30],"128":[2,30],"129":[2,30],"130":[2,30],"131":[2,30],"132":[2,30],"133":[2,30]},{"1":[2,31],"6":[2,31],"25":[2,31],"26":[2,31],"47":[2,31],"52":[2,31],"55":[2,31],"62":[2,31],"63":[2,31],"64":[2,31],"66":[2,31],"67":[2,31],"68":[2,31],"69":[2,31],"72":[2,31],"78":[2,31],"79":[2,31],"80":[2,31],"85":[2,31],"94":[2,31],"96":[2,31],"97":[2,31],"98":[2,31],"105":[2,31],"109":[2,31],"110":[2,31],"121":[2,31],"122":[2,31],"124":[2,31],"125":[2,31],"128":[2,31],"129":[2,31],"130":[2,31],"131":[2,31],"132":[2,31],"133":[2,31]},{"1":[2,32],"6":[2,32],"25":[2,32],"26":[2,32],"47":[2,32],"52":[2,32],"55":[2,32],"62":[2,32],"63":[2,32],"64":[2,32],"66":[2,32],"67":[2,32],"68":[2,32],"69":[2,32],"72":[2,32],"78":[2,32],"79":[2,32],"80":[2,32],"85":[2,32],"94":[2,32],"96":[2,32],"97":[2,32],"98":[2,32],"105":[2,32],"109":[2,32],"110":[2,32],"121":[2,32],"122":[2,32],"124":[2,32],"125":[2,32],"128":[2,32],"129":[2,32],"130":[2,32],"131":[2,32],"132":[2,32],"133":[2,32]},{"8":138,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,104],"6":[2,104],"25":[2,104],"26":[2,104],"47":[2,104],"52":[2,104],"55":[2,104],"62":[2,104],"63":[2,104],"64":[2,104],"66":[2,104],"67":[2,104],"68":[2,104],"69":[2,104],"72":[2,104],"78":[2,104],"79":[2,104],"80":[2,104],"85":[2,104],"94":[2,104],"96":[2,104],"97":[2,104],"98":[2,104],"105":[2,104],"109":[2,104],"110":[2,104],"121":[2,104],"122":[2,104],"124":[2,104],"125":[2,104],"128":[2,104],"129":[2,104],"130":[2,104],"131":[2,104],"132":[2,104],"133":[2,104]},{"1":[2,105],"6":[2,105],"25":[2,105],"26":[2,105],"27":139,"28":[1,69],"47":[2,105],"52":[2,105],"55":[2,105],"62":[2,105],"63":[2,105],"64":[2,105],"66":[2,105],"67":[2,105],"68":[2,105],"69":[2,105],"72":[2,105],"78":[2,105],"79":[2,105],"80":[2,105],"85":[2,105],"94":[2,105],"96":[2,105],"97":[2,105],"98":[2,105],"105":[2,105],"109":[2,105],"110":[2,105],"121":[2,105],"122":[2,105],"124":[2,105],"125":[2,105],"128":[2,105],"129":[2,105],"130":[2,105],"131":[2,105],"132":[2,105],"133":[2,105]},{"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],"62":[2,63],"63":[2,63],"64":[2,63],"66":[2,63],"67":[2,63],"68":[2,63],"69":[2,63],"72":[2,63],"74":[2,63],"78":[2,63],"79":[2,63],"80":[2,63],"85":[2,63],"94":[2,63],"96":[2,63],"97":[2,63],"98":[2,63],"105":[2,63],"109":[2,63],"110":[2,63],"121":[2,63],"122":[2,63],"124":[2,63],"125":[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]},{"1":[2,66],"6":[2,66],"25":[2,66],"26":[2,66],"37":[2,66],"47":[2,66],"52":[2,66],"55":[2,66],"62":[2,66],"63":[2,66],"64":[2,66],"66":[2,66],"67":[2,66],"68":[2,66],"69":[2,66],"72":[2,66],"74":[2,66],"78":[2,66],"79":[2,66],"80":[2,66],"85":[2,66],"94":[2,66],"96":[2,66],"97":[2,66],"98":[2,66],"105":[2,66],"109":[2,66],"110":[2,66],"121":[2,66],"122":[2,66],"124":[2,66],"125":[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]},{"8":140,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":141,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":142,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":143,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"5":144,"8":145,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"27":147,"28":[1,69],"56":149,"57":150,"70":[1,66],"84":[1,65],"102":146,"111":[1,148]},{"8":155,"9":115,"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,154],"27":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"58":156,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"81":152,"82":[1,53],"83":[1,54],"84":[1,65],"85":[1,151],"86":153,"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"6":[2,83],"12":160,"25":[2,83],"27":161,"28":[1,69],"29":162,"30":[1,67],"31":[1,68],"38":158,"39":159,"41":163,"42":164,"44":[1,45],"52":[2,83],"71":157,"72":[2,83],"83":[1,112],"93":[1,52]},{"1":[2,27],"6":[2,27],"25":[2,27],"26":[2,27],"40":[2,27],"47":[2,27],"52":[2,27],"55":[2,27],"62":[2,27],"63":[2,27],"64":[2,27],"66":[2,27],"67":[2,27],"68":[2,27],"69":[2,27],"72":[2,27],"78":[2,27],"79":[2,27],"80":[2,27],"85":[2,27],"94":[2,27],"96":[2,27],"97":[2,27],"98":[2,27],"105":[2,27],"109":[2,27],"110":[2,27],"121":[2,27],"122":[2,27],"124":[2,27],"125":[2,27],"128":[2,27],"129":[2,27],"130":[2,27],"131":[2,27],"132":[2,27],"133":[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],"62":[2,28],"63":[2,28],"64":[2,28],"66":[2,28],"67":[2,28],"68":[2,28],"69":[2,28],"72":[2,28],"78":[2,28],"79":[2,28],"80":[2,28],"85":[2,28],"94":[2,28],"96":[2,28],"97":[2,28],"98":[2,28],"105":[2,28],"109":[2,28],"110":[2,28],"121":[2,28],"122":[2,28],"124":[2,28],"125":[2,28],"128":[2,28],"129":[2,28],"130":[2,28],"131":[2,28],"132":[2,28],"133":[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],"62":[2,26],"63":[2,26],"64":[2,26],"66":[2,26],"67":[2,26],"68":[2,26],"69":[2,26],"72":[2,26],"74":[2,26],"78":[2,26],"79":[2,26],"80":[2,26],"85":[2,26],"94":[2,26],"96":[2,26],"97":[2,26],"98":[2,26],"104":[2,26],"105":[2,26],"107":[2,26],"109":[2,26],"110":[2,26],"112":[2,26],"121":[2,26],"122":[2,26],"124":[2,26],"125":[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]},{"1":[2,6],"6":[2,6],"7":165,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,3]},{"6":[1,70],"26":[1,166]},{"1":[2,25],"6":[2,25],"25":[2,25],"26":[2,25],"47":[2,25],"52":[2,25],"55":[2,25],"67":[2,25],"72":[2,25],"80":[2,25],"85":[2,25],"90":[2,25],"91":[2,25],"94":[2,25],"96":[2,25],"97":[2,25],"98":[2,25],"105":[2,25],"109":[2,25],"110":[2,25],"115":[2,25],"117":[2,25],"121":[2,25],"122":[2,25],"124":[2,25],"125":[2,25],"128":[2,25],"129":[2,25],"130":[2,25],"131":[2,25],"132":[2,25],"133":[2,25]},{"1":[2,182],"6":[2,182],"25":[2,182],"26":[2,182],"47":[2,182],"52":[2,182],"55":[2,182],"67":[2,182],"72":[2,182],"80":[2,182],"85":[2,182],"94":[2,182],"96":[2,182],"97":[2,182],"98":[2,182],"105":[2,182],"109":[2,182],"110":[2,182],"121":[2,182],"122":[2,182],"124":[2,182],"125":[2,182],"128":[2,182],"129":[2,182],"130":[2,182],"131":[2,182],"132":[2,182],"133":[2,182]},{"8":167,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":168,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":169,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":170,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":171,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":172,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":173,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":174,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":175,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,131],"6":[2,131],"25":[2,131],"26":[2,131],"47":[2,131],"52":[2,131],"55":[2,131],"67":[2,131],"72":[2,131],"80":[2,131],"85":[2,131],"94":[2,131],"96":[2,131],"97":[2,131],"98":[2,131],"105":[2,131],"109":[2,131],"110":[2,131],"121":[2,131],"122":[2,131],"124":[2,131],"125":[2,131],"128":[2,131],"129":[2,131],"130":[2,131],"131":[2,131],"132":[2,131],"133":[2,131]},{"1":[2,136],"6":[2,136],"25":[2,136],"26":[2,136],"47":[2,136],"52":[2,136],"55":[2,136],"67":[2,136],"72":[2,136],"80":[2,136],"85":[2,136],"94":[2,136],"96":[2,136],"97":[2,136],"98":[2,136],"105":[2,136],"109":[2,136],"110":[2,136],"121":[2,136],"122":[2,136],"124":[2,136],"125":[2,136],"128":[2,136],"129":[2,136],"130":[2,136],"131":[2,136],"132":[2,136],"133":[2,136]},{"8":176,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":177,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,130],"6":[2,130],"25":[2,130],"26":[2,130],"47":[2,130],"52":[2,130],"55":[2,130],"67":[2,130],"72":[2,130],"80":[2,130],"85":[2,130],"94":[2,130],"96":[2,130],"97":[2,130],"98":[2,130],"105":[2,130],"109":[2,130],"110":[2,130],"121":[2,130],"122":[2,130],"124":[2,130],"125":[2,130],"128":[2,130],"129":[2,130],"130":[2,130],"131":[2,130],"132":[2,130],"133":[2,130]},{"1":[2,135],"6":[2,135],"25":[2,135],"26":[2,135],"47":[2,135],"52":[2,135],"55":[2,135],"67":[2,135],"72":[2,135],"80":[2,135],"85":[2,135],"94":[2,135],"96":[2,135],"97":[2,135],"98":[2,135],"105":[2,135],"109":[2,135],"110":[2,135],"121":[2,135],"122":[2,135],"124":[2,135],"125":[2,135],"128":[2,135],"129":[2,135],"130":[2,135],"131":[2,135],"132":[2,135],"133":[2,135]},{"76":178,"79":[1,104]},{"1":[2,64],"6":[2,64],"25":[2,64],"26":[2,64],"37":[2,64],"47":[2,64],"52":[2,64],"55":[2,64],"62":[2,64],"63":[2,64],"64":[2,64],"66":[2,64],"67":[2,64],"68":[2,64],"69":[2,64],"72":[2,64],"74":[2,64],"78":[2,64],"79":[2,64],"80":[2,64],"85":[2,64],"94":[2,64],"96":[2,64],"97":[2,64],"98":[2,64],"105":[2,64],"109":[2,64],"110":[2,64],"121":[2,64],"122":[2,64],"124":[2,64],"125":[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]},{"79":[2,101]},{"27":179,"28":[1,69]},{"27":180,"28":[1,69]},{"1":[2,77],"6":[2,77],"25":[2,77],"26":[2,77],"27":181,"28":[1,69],"37":[2,77],"47":[2,77],"52":[2,77],"55":[2,77],"62":[2,77],"63":[2,77],"64":[2,77],"66":[2,77],"67":[2,77],"68":[2,77],"69":[2,77],"72":[2,77],"74":[2,77],"78":[2,77],"79":[2,77],"80":[2,77],"85":[2,77],"94":[2,77],"96":[2,77],"97":[2,77],"98":[2,77],"105":[2,77],"109":[2,77],"110":[2,77],"121":[2,77],"122":[2,77],"124":[2,77],"125":[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]},{"1":[2,78],"6":[2,78],"25":[2,78],"26":[2,78],"37":[2,78],"47":[2,78],"52":[2,78],"55":[2,78],"62":[2,78],"63":[2,78],"64":[2,78],"66":[2,78],"67":[2,78],"68":[2,78],"69":[2,78],"72":[2,78],"74":[2,78],"78":[2,78],"79":[2,78],"80":[2,78],"85":[2,78],"94":[2,78],"96":[2,78],"97":[2,78],"98":[2,78],"105":[2,78],"109":[2,78],"110":[2,78],"121":[2,78],"122":[2,78],"124":[2,78],"125":[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]},{"8":182,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"65":183,"66":[1,97],"68":[1,98],"69":[1,99]},{"65":184,"66":[1,97],"68":[1,98],"69":[1,99]},{"76":185,"79":[1,104]},{"1":[2,65],"6":[2,65],"25":[2,65],"26":[2,65],"37":[2,65],"47":[2,65],"52":[2,65],"55":[2,65],"62":[2,65],"63":[2,65],"64":[2,65],"66":[2,65],"67":[2,65],"68":[2,65],"69":[2,65],"72":[2,65],"74":[2,65],"78":[2,65],"79":[2,65],"80":[2,65],"85":[2,65],"94":[2,65],"96":[2,65],"97":[2,65],"98":[2,65],"105":[2,65],"109":[2,65],"110":[2,65],"121":[2,65],"122":[2,65],"124":[2,65],"125":[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]},{"8":186,"9":115,"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,187],"27":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,99],"6":[2,99],"25":[2,99],"26":[2,99],"47":[2,99],"52":[2,99],"55":[2,99],"62":[2,99],"63":[2,99],"64":[2,99],"66":[2,99],"67":[2,99],"68":[2,99],"69":[2,99],"72":[2,99],"78":[2,99],"79":[2,99],"80":[2,99],"85":[2,99],"94":[2,99],"96":[2,99],"97":[2,99],"98":[2,99],"105":[2,99],"109":[2,99],"110":[2,99],"121":[2,99],"122":[2,99],"124":[2,99],"125":[2,99],"128":[2,99],"129":[2,99],"130":[2,99],"131":[2,99],"132":[2,99],"133":[2,99]},{"8":155,"9":115,"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,154],"27":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"58":156,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"80":[1,188],"81":189,"82":[1,53],"83":[1,54],"84":[1,65],"86":153,"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"47":[1,190],"52":[1,191]},{"47":[2,53],"52":[2,53]},{"37":[1,193],"47":[2,55],"52":[2,55],"55":[1,192]},{"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":139,"28":[1,69]},{"1":[2,47],"6":[2,47],"25":[2,47],"26":[2,47],"47":[2,47],"52":[2,47],"55":[2,47],"67":[2,47],"72":[2,47],"80":[2,47],"85":[2,47],"94":[2,47],"96":[2,47],"97":[2,47],"98":[2,47],"105":[2,47],"109":[2,47],"110":[2,47],"121":[2,47],"122":[2,47],"124":[2,47],"125":[2,47],"128":[2,47],"129":[2,47],"130":[2,47],"131":[2,47],"132":[2,47],"133":[2,47]},{"1":[2,175],"6":[2,175],"25":[2,175],"26":[2,175],"47":[2,175],"52":[2,175],"55":[2,175],"67":[2,175],"72":[2,175],"80":[2,175],"85":[2,175],"94":[2,175],"95":84,"96":[2,175],"97":[2,175],"98":[2,175],"101":85,"105":[2,175],"109":[2,175],"110":[2,175],"121":[2,175],"122":[2,175],"124":[2,175],"125":[2,175],"128":[1,74],"129":[2,175],"130":[2,175],"131":[2,175],"132":[2,175],"133":[2,175]},{"95":88,"96":[1,61],"98":[1,62],"101":89,"110":[1,64],"121":[1,86],"122":[1,87]},{"1":[2,176],"6":[2,176],"25":[2,176],"26":[2,176],"47":[2,176],"52":[2,176],"55":[2,176],"67":[2,176],"72":[2,176],"80":[2,176],"85":[2,176],"94":[2,176],"95":84,"96":[2,176],"97":[2,176],"98":[2,176],"101":85,"105":[2,176],"109":[2,176],"110":[2,176],"121":[2,176],"122":[2,176],"124":[2,176],"125":[2,176],"128":[1,74],"129":[2,176],"130":[2,176],"131":[2,176],"132":[2,176],"133":[2,176]},{"1":[2,177],"6":[2,177],"25":[2,177],"26":[2,177],"47":[2,177],"52":[2,177],"55":[2,177],"67":[2,177],"72":[2,177],"80":[2,177],"85":[2,177],"94":[2,177],"95":84,"96":[2,177],"97":[2,177],"98":[2,177],"101":85,"105":[2,177],"109":[2,177],"110":[2,177],"121":[2,177],"122":[2,177],"124":[2,177],"125":[2,177],"128":[1,74],"129":[2,177],"130":[2,177],"131":[2,177],"132":[2,177],"133":[2,177]},{"1":[2,178],"6":[2,178],"25":[2,178],"26":[2,178],"47":[2,178],"52":[2,178],"55":[2,178],"62":[2,67],"63":[2,67],"64":[2,67],"66":[2,67],"67":[2,178],"68":[2,67],"69":[2,67],"72":[2,178],"78":[2,67],"79":[2,67],"80":[2,178],"85":[2,178],"94":[2,178],"96":[2,178],"97":[2,178],"98":[2,178],"105":[2,178],"109":[2,178],"110":[2,178],"121":[2,178],"122":[2,178],"124":[2,178],"125":[2,178],"128":[2,178],"129":[2,178],"130":[2,178],"131":[2,178],"132":[2,178],"133":[2,178]},{"60":91,"62":[1,93],"63":[1,94],"64":[1,95],"65":96,"66":[1,97],"68":[1,98],"69":[1,99],"75":90,"78":[1,92],"79":[2,100]},{"60":101,"62":[1,93],"63":[1,94],"64":[1,95],"65":96,"66":[1,97],"68":[1,98],"69":[1,99],"75":100,"78":[1,92],"79":[2,100]},{"1":[2,70],"6":[2,70],"25":[2,70],"26":[2,70],"47":[2,70],"52":[2,70],"55":[2,70],"62":[2,70],"63":[2,70],"64":[2,70],"66":[2,70],"67":[2,70],"68":[2,70],"69":[2,70],"72":[2,70],"78":[2,70],"79":[2,70],"80":[2,70],"85":[2,70],"94":[2,70],"96":[2,70],"97":[2,70],"98":[2,70],"105":[2,70],"109":[2,70],"110":[2,70],"121":[2,70],"122":[2,70],"124":[2,70],"125":[2,70],"128":[2,70],"129":[2,70],"130":[2,70],"131":[2,70],"132":[2,70],"133":[2,70]},{"1":[2,179],"6":[2,179],"25":[2,179],"26":[2,179],"47":[2,179],"52":[2,179],"55":[2,179],"62":[2,67],"63":[2,67],"64":[2,67],"66":[2,67],"67":[2,179],"68":[2,67],"69":[2,67],"72":[2,179],"78":[2,67],"79":[2,67],"80":[2,179],"85":[2,179],"94":[2,179],"96":[2,179],"97":[2,179],"98":[2,179],"105":[2,179],"109":[2,179],"110":[2,179],"121":[2,179],"122":[2,179],"124":[2,179],"125":[2,179],"128":[2,179],"129":[2,179],"130":[2,179],"131":[2,179],"132":[2,179],"133":[2,179]},{"1":[2,180],"6":[2,180],"25":[2,180],"26":[2,180],"47":[2,180],"52":[2,180],"55":[2,180],"67":[2,180],"72":[2,180],"80":[2,180],"85":[2,180],"94":[2,180],"96":[2,180],"97":[2,180],"98":[2,180],"105":[2,180],"109":[2,180],"110":[2,180],"121":[2,180],"122":[2,180],"124":[2,180],"125":[2,180],"128":[2,180],"129":[2,180],"130":[2,180],"131":[2,180],"132":[2,180],"133":[2,180]},{"1":[2,181],"6":[2,181],"25":[2,181],"26":[2,181],"47":[2,181],"52":[2,181],"55":[2,181],"67":[2,181],"72":[2,181],"80":[2,181],"85":[2,181],"94":[2,181],"96":[2,181],"97":[2,181],"98":[2,181],"105":[2,181],"109":[2,181],"110":[2,181],"121":[2,181],"122":[2,181],"124":[2,181],"125":[2,181],"128":[2,181],"129":[2,181],"130":[2,181],"131":[2,181],"132":[2,181],"133":[2,181]},{"8":194,"9":115,"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,195],"27":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":196,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"5":198,"25":[1,5],"119":[1,197]},{"1":[2,118],"6":[2,118],"25":[2,118],"26":[2,118],"47":[2,118],"52":[2,118],"55":[2,118],"67":[2,118],"72":[2,118],"80":[2,118],"85":[2,118],"89":199,"90":[1,200],"91":[1,201],"94":[2,118],"96":[2,118],"97":[2,118],"98":[2,118],"105":[2,118],"109":[2,118],"110":[2,118],"121":[2,118],"122":[2,118],"124":[2,118],"125":[2,118],"128":[2,118],"129":[2,118],"130":[2,118],"131":[2,118],"132":[2,118],"133":[2,118]},{"1":[2,129],"6":[2,129],"25":[2,129],"26":[2,129],"47":[2,129],"52":[2,129],"55":[2,129],"67":[2,129],"72":[2,129],"80":[2,129],"85":[2,129],"94":[2,129],"96":[2,129],"97":[2,129],"98":[2,129],"105":[2,129],"109":[2,129],"110":[2,129],"121":[2,129],"122":[2,129],"124":[2,129],"125":[2,129],"128":[2,129],"129":[2,129],"130":[2,129],"131":[2,129],"132":[2,129],"133":[2,129]},{"1":[2,137],"6":[2,137],"25":[2,137],"26":[2,137],"47":[2,137],"52":[2,137],"55":[2,137],"67":[2,137],"72":[2,137],"80":[2,137],"85":[2,137],"94":[2,137],"96":[2,137],"97":[2,137],"98":[2,137],"105":[2,137],"109":[2,137],"110":[2,137],"121":[2,137],"122":[2,137],"124":[2,137],"125":[2,137],"128":[2,137],"129":[2,137],"130":[2,137],"131":[2,137],"132":[2,137],"133":[2,137]},{"25":[1,202],"95":84,"96":[1,61],"98":[1,62],"101":85,"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"114":203,"116":204,"117":[1,205]},{"1":[2,89],"6":[2,89],"25":[2,89],"26":[2,89],"47":[2,89],"52":[2,89],"55":[2,89],"67":[2,89],"72":[2,89],"80":[2,89],"85":[2,89],"94":[2,89],"96":[2,89],"97":[2,89],"98":[2,89],"105":[2,89],"109":[2,89],"110":[2,89],"121":[2,89],"122":[2,89],"124":[2,89],"125":[2,89],"128":[2,89],"129":[2,89],"130":[2,89],"131":[2,89],"132":[2,89],"133":[2,89]},{"14":206,"15":120,"27":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":121,"41":25,"42":58,"56":46,"57":47,"59":207,"61":26,"70":[1,66],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"93":[1,52]},{"1":[2,92],"5":208,"6":[2,92],"25":[1,5],"26":[2,92],"47":[2,92],"52":[2,92],"55":[2,92],"62":[2,67],"63":[2,67],"64":[2,67],"66":[2,67],"67":[2,92],"68":[2,67],"69":[2,67],"72":[2,92],"74":[1,209],"78":[2,67],"79":[2,67],"80":[2,92],"85":[2,92],"94":[2,92],"96":[2,92],"97":[2,92],"98":[2,92],"105":[2,92],"109":[2,92],"110":[2,92],"121":[2,92],"122":[2,92],"124":[2,92],"125":[2,92],"128":[2,92],"129":[2,92],"130":[2,92],"131":[2,92],"132":[2,92],"133":[2,92]},{"1":[2,43],"6":[2,43],"26":[2,43],"95":84,"96":[2,43],"98":[2,43],"101":85,"110":[2,43],"121":[2,43],"122":[2,43],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,123],"6":[2,123],"26":[2,123],"95":84,"96":[2,123],"98":[2,123],"101":85,"110":[2,123],"121":[2,123],"122":[2,123],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"94":[1,210],"95":84,"96":[1,61],"98":[1,62],"101":85,"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,106],"6":[2,106],"25":[2,106],"26":[2,106],"37":[2,106],"40":[2,106],"47":[2,106],"52":[2,106],"55":[2,106],"62":[2,106],"63":[2,106],"64":[2,106],"66":[2,106],"67":[2,106],"68":[2,106],"69":[2,106],"72":[2,106],"74":[2,106],"78":[2,106],"79":[2,106],"80":[2,106],"85":[2,106],"94":[2,106],"96":[2,106],"97":[2,106],"98":[2,106],"105":[2,106],"109":[2,106],"110":[2,106],"121":[2,106],"122":[2,106],"124":[2,106],"125":[2,106],"126":[2,106],"127":[2,106],"128":[2,106],"129":[2,106],"130":[2,106],"131":[2,106],"132":[2,106],"133":[2,106],"134":[2,106]},{"5":211,"25":[1,5],"95":84,"96":[1,61],"98":[1,62],"101":85,"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"5":212,"25":[1,5],"95":84,"96":[1,61],"98":[1,62],"101":85,"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,125],"6":[2,125],"25":[2,125],"26":[2,125],"47":[2,125],"52":[2,125],"55":[2,125],"67":[2,125],"72":[2,125],"80":[2,125],"85":[2,125],"94":[2,125],"95":84,"96":[1,61],"97":[1,213],"98":[1,62],"101":85,"105":[2,125],"109":[2,125],"110":[1,64],"121":[2,125],"122":[2,125],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,127],"6":[2,127],"25":[2,127],"26":[2,127],"47":[2,127],"52":[2,127],"55":[2,127],"67":[2,127],"72":[2,127],"80":[2,127],"85":[2,127],"94":[2,127],"95":84,"96":[1,61],"97":[1,214],"98":[1,62],"101":85,"105":[2,127],"109":[2,127],"110":[1,64],"121":[2,127],"122":[2,127],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,133],"6":[2,133],"25":[2,133],"26":[2,133],"47":[2,133],"52":[2,133],"55":[2,133],"67":[2,133],"72":[2,133],"80":[2,133],"85":[2,133],"94":[2,133],"96":[2,133],"97":[2,133],"98":[2,133],"105":[2,133],"109":[2,133],"110":[2,133],"121":[2,133],"122":[2,133],"124":[2,133],"125":[2,133],"128":[2,133],"129":[2,133],"130":[2,133],"131":[2,133],"132":[2,133],"133":[2,133]},{"1":[2,134],"6":[2,134],"25":[2,134],"26":[2,134],"47":[2,134],"52":[2,134],"55":[2,134],"67":[2,134],"72":[2,134],"80":[2,134],"85":[2,134],"94":[2,134],"95":84,"96":[1,61],"97":[2,134],"98":[1,62],"101":85,"105":[2,134],"109":[2,134],"110":[1,64],"121":[2,134],"122":[2,134],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"52":[1,216],"103":215,"104":[1,217]},{"52":[2,138],"104":[2,138],"106":218,"107":[1,220],"112":[1,219]},{"27":221,"28":[1,69]},{"52":[2,139],"104":[2,139],"107":[2,139]},{"52":[2,140],"104":[2,140],"107":[2,140]},{"1":[2,107],"6":[2,107],"25":[2,107],"26":[2,107],"37":[2,107],"47":[2,107],"52":[2,107],"55":[2,107],"62":[2,107],"63":[2,107],"64":[2,107],"66":[2,107],"67":[2,107],"68":[2,107],"69":[2,107],"72":[2,107],"78":[2,107],"79":[2,107],"80":[2,107],"85":[2,107],"94":[2,107],"96":[2,107],"97":[2,107],"98":[2,107],"104":[2,107],"105":[2,107],"107":[2,107],"109":[2,107],"110":[2,107],"121":[2,107],"122":[2,107],"124":[2,107],"125":[2,107],"128":[2,107],"129":[2,107],"130":[2,107],"131":[2,107],"132":[2,107],"133":[2,107]},{"6":[2,50],"25":[2,50],"51":222,"52":[1,223],"85":[2,50]},{"6":[2,109],"25":[2,109],"26":[2,109],"52":[2,109],"80":[2,109],"85":[2,109]},{"8":155,"9":115,"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,154],"27":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"58":156,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"81":224,"82":[1,53],"83":[1,54],"84":[1,65],"86":153,"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"6":[2,114],"25":[2,114],"26":[2,114],"52":[2,114],"55":[1,225],"80":[2,114],"85":[2,114],"95":84,"96":[1,61],"98":[1,62],"101":85,"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"6":[2,115],"25":[2,115],"26":[2,115],"52":[2,115],"80":[2,115],"85":[2,115]},{"6":[2,50],"25":[2,50],"51":226,"52":[1,227],"72":[2,50]},{"6":[2,84],"25":[2,84],"26":[2,84],"52":[2,84],"72":[2,84]},{"6":[2,35],"25":[2,35],"26":[2,35],"40":[1,228],"52":[2,35],"72":[2,35]},{"6":[2,38],"25":[2,38],"26":[2,38],"52":[2,38],"72":[2,38]},{"6":[2,39],"25":[2,39],"26":[2,39],"40":[2,39],"52":[2,39],"72":[2,39]},{"6":[2,40],"25":[2,40],"26":[2,40],"40":[2,40],"52":[2,40],"72":[2,40]},{"6":[2,41],"25":[2,41],"26":[2,41],"40":[2,41],"52":[2,41],"72":[2,41]},{"6":[2,42],"25":[2,42],"26":[2,42],"40":[2,42],"52":[2,42],"72":[2,42]},{"1":[2,5],"6":[2,5],"26":[2,5]},{"1":[2,24],"6":[2,24],"25":[2,24],"26":[2,24],"47":[2,24],"52":[2,24],"55":[2,24],"67":[2,24],"72":[2,24],"80":[2,24],"85":[2,24],"90":[2,24],"91":[2,24],"94":[2,24],"96":[2,24],"97":[2,24],"98":[2,24],"105":[2,24],"109":[2,24],"110":[2,24],"115":[2,24],"117":[2,24],"121":[2,24],"122":[2,24],"124":[2,24],"125":[2,24],"128":[2,24],"129":[2,24],"130":[2,24],"131":[2,24],"132":[2,24],"133":[2,24]},{"1":[2,183],"6":[2,183],"25":[2,183],"26":[2,183],"47":[2,183],"52":[2,183],"55":[2,183],"67":[2,183],"72":[2,183],"80":[2,183],"85":[2,183],"94":[2,183],"95":84,"96":[2,183],"97":[2,183],"98":[2,183],"101":85,"105":[2,183],"109":[2,183],"110":[2,183],"121":[2,183],"122":[2,183],"124":[2,183],"125":[2,183],"128":[1,74],"129":[1,77],"130":[2,183],"131":[2,183],"132":[2,183],"133":[2,183]},{"1":[2,184],"6":[2,184],"25":[2,184],"26":[2,184],"47":[2,184],"52":[2,184],"55":[2,184],"67":[2,184],"72":[2,184],"80":[2,184],"85":[2,184],"94":[2,184],"95":84,"96":[2,184],"97":[2,184],"98":[2,184],"101":85,"105":[2,184],"109":[2,184],"110":[2,184],"121":[2,184],"122":[2,184],"124":[2,184],"125":[2,184],"128":[1,74],"129":[1,77],"130":[2,184],"131":[2,184],"132":[2,184],"133":[2,184]},{"1":[2,185],"6":[2,185],"25":[2,185],"26":[2,185],"47":[2,185],"52":[2,185],"55":[2,185],"67":[2,185],"72":[2,185],"80":[2,185],"85":[2,185],"94":[2,185],"95":84,"96":[2,185],"97":[2,185],"98":[2,185],"101":85,"105":[2,185],"109":[2,185],"110":[2,185],"121":[2,185],"122":[2,185],"124":[2,185],"125":[2,185],"128":[1,74],"129":[2,185],"130":[2,185],"131":[2,185],"132":[2,185],"133":[2,185]},{"1":[2,186],"6":[2,186],"25":[2,186],"26":[2,186],"47":[2,186],"52":[2,186],"55":[2,186],"67":[2,186],"72":[2,186],"80":[2,186],"85":[2,186],"94":[2,186],"95":84,"96":[2,186],"97":[2,186],"98":[2,186],"101":85,"105":[2,186],"109":[2,186],"110":[2,186],"121":[2,186],"122":[2,186],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[2,186],"131":[2,186],"132":[2,186],"133":[2,186]},{"1":[2,187],"6":[2,187],"25":[2,187],"26":[2,187],"47":[2,187],"52":[2,187],"55":[2,187],"67":[2,187],"72":[2,187],"80":[2,187],"85":[2,187],"94":[2,187],"95":84,"96":[2,187],"97":[2,187],"98":[2,187],"101":85,"105":[2,187],"109":[2,187],"110":[2,187],"121":[2,187],"122":[2,187],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[2,187],"132":[2,187],"133":[1,81]},{"1":[2,188],"6":[2,188],"25":[2,188],"26":[2,188],"47":[2,188],"52":[2,188],"55":[2,188],"67":[2,188],"72":[2,188],"80":[2,188],"85":[2,188],"94":[2,188],"95":84,"96":[2,188],"97":[2,188],"98":[2,188],"101":85,"105":[2,188],"109":[2,188],"110":[2,188],"121":[2,188],"122":[2,188],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[2,188],"133":[1,81]},{"1":[2,189],"6":[2,189],"25":[2,189],"26":[2,189],"47":[2,189],"52":[2,189],"55":[2,189],"67":[2,189],"72":[2,189],"80":[2,189],"85":[2,189],"94":[2,189],"95":84,"96":[2,189],"97":[2,189],"98":[2,189],"101":85,"105":[2,189],"109":[2,189],"110":[2,189],"121":[2,189],"122":[2,189],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[2,189],"132":[2,189],"133":[2,189]},{"1":[2,172],"6":[2,172],"25":[2,172],"26":[2,172],"47":[2,172],"52":[2,172],"55":[2,172],"67":[2,172],"72":[2,172],"80":[2,172],"85":[2,172],"94":[2,172],"95":84,"96":[1,61],"97":[2,172],"98":[1,62],"101":85,"105":[2,172],"109":[2,172],"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,174],"6":[2,174],"25":[2,174],"26":[2,174],"47":[2,174],"52":[2,174],"55":[2,174],"67":[2,174],"72":[2,174],"80":[2,174],"85":[2,174],"94":[2,174],"95":84,"96":[1,61],"97":[2,174],"98":[1,62],"101":85,"105":[2,174],"109":[2,174],"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,171],"6":[2,171],"25":[2,171],"26":[2,171],"47":[2,171],"52":[2,171],"55":[2,171],"67":[2,171],"72":[2,171],"80":[2,171],"85":[2,171],"94":[2,171],"95":84,"96":[1,61],"97":[2,171],"98":[1,62],"101":85,"105":[2,171],"109":[2,171],"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,173],"6":[2,173],"25":[2,173],"26":[2,173],"47":[2,173],"52":[2,173],"55":[2,173],"67":[2,173],"72":[2,173],"80":[2,173],"85":[2,173],"94":[2,173],"95":84,"96":[1,61],"97":[2,173],"98":[1,62],"101":85,"105":[2,173],"109":[2,173],"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,96],"6":[2,96],"25":[2,96],"26":[2,96],"47":[2,96],"52":[2,96],"55":[2,96],"62":[2,96],"63":[2,96],"64":[2,96],"66":[2,96],"67":[2,96],"68":[2,96],"69":[2,96],"72":[2,96],"78":[2,96],"79":[2,96],"80":[2,96],"85":[2,96],"94":[2,96],"96":[2,96],"97":[2,96],"98":[2,96],"105":[2,96],"109":[2,96],"110":[2,96],"121":[2,96],"122":[2,96],"124":[2,96],"125":[2,96],"128":[2,96],"129":[2,96],"130":[2,96],"131":[2,96],"132":[2,96],"133":[2,96]},{"1":[2,74],"6":[2,74],"25":[2,74],"26":[2,74],"37":[2,74],"47":[2,74],"52":[2,74],"55":[2,74],"62":[2,74],"63":[2,74],"64":[2,74],"66":[2,74],"67":[2,74],"68":[2,74],"69":[2,74],"72":[2,74],"74":[2,74],"78":[2,74],"79":[2,74],"80":[2,74],"85":[2,74],"94":[2,74],"96":[2,74],"97":[2,74],"98":[2,74],"105":[2,74],"109":[2,74],"110":[2,74],"121":[2,74],"122":[2,74],"124":[2,74],"125":[2,74],"126":[2,74],"127":[2,74],"128":[2,74],"129":[2,74],"130":[2,74],"131":[2,74],"132":[2,74],"133":[2,74],"134":[2,74]},{"1":[2,75],"6":[2,75],"25":[2,75],"26":[2,75],"37":[2,75],"47":[2,75],"52":[2,75],"55":[2,75],"62":[2,75],"63":[2,75],"64":[2,75],"66":[2,75],"67":[2,75],"68":[2,75],"69":[2,75],"72":[2,75],"74":[2,75],"78":[2,75],"79":[2,75],"80":[2,75],"85":[2,75],"94":[2,75],"96":[2,75],"97":[2,75],"98":[2,75],"105":[2,75],"109":[2,75],"110":[2,75],"121":[2,75],"122":[2,75],"124":[2,75],"125":[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]},{"1":[2,76],"6":[2,76],"25":[2,76],"26":[2,76],"37":[2,76],"47":[2,76],"52":[2,76],"55":[2,76],"62":[2,76],"63":[2,76],"64":[2,76],"66":[2,76],"67":[2,76],"68":[2,76],"69":[2,76],"72":[2,76],"74":[2,76],"78":[2,76],"79":[2,76],"80":[2,76],"85":[2,76],"94":[2,76],"96":[2,76],"97":[2,76],"98":[2,76],"105":[2,76],"109":[2,76],"110":[2,76],"121":[2,76],"122":[2,76],"124":[2,76],"125":[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]},{"67":[1,229],"95":84,"96":[1,61],"98":[1,62],"101":85,"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,80],"6":[2,80],"25":[2,80],"26":[2,80],"37":[2,80],"47":[2,80],"52":[2,80],"55":[2,80],"62":[2,80],"63":[2,80],"64":[2,80],"66":[2,80],"67":[2,80],"68":[2,80],"69":[2,80],"72":[2,80],"74":[2,80],"78":[2,80],"79":[2,80],"80":[2,80],"85":[2,80],"94":[2,80],"96":[2,80],"97":[2,80],"98":[2,80],"105":[2,80],"109":[2,80],"110":[2,80],"121":[2,80],"122":[2,80],"124":[2,80],"125":[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]},{"1":[2,81],"6":[2,81],"25":[2,81],"26":[2,81],"37":[2,81],"47":[2,81],"52":[2,81],"55":[2,81],"62":[2,81],"63":[2,81],"64":[2,81],"66":[2,81],"67":[2,81],"68":[2,81],"69":[2,81],"72":[2,81],"74":[2,81],"78":[2,81],"79":[2,81],"80":[2,81],"85":[2,81],"94":[2,81],"96":[2,81],"97":[2,81],"98":[2,81],"105":[2,81],"109":[2,81],"110":[2,81],"121":[2,81],"122":[2,81],"124":[2,81],"125":[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]},{"1":[2,97],"6":[2,97],"25":[2,97],"26":[2,97],"47":[2,97],"52":[2,97],"55":[2,97],"62":[2,97],"63":[2,97],"64":[2,97],"66":[2,97],"67":[2,97],"68":[2,97],"69":[2,97],"72":[2,97],"78":[2,97],"79":[2,97],"80":[2,97],"85":[2,97],"94":[2,97],"96":[2,97],"97":[2,97],"98":[2,97],"105":[2,97],"109":[2,97],"110":[2,97],"121":[2,97],"122":[2,97],"124":[2,97],"125":[2,97],"128":[2,97],"129":[2,97],"130":[2,97],"131":[2,97],"132":[2,97],"133":[2,97]},{"1":[2,33],"6":[2,33],"25":[2,33],"26":[2,33],"47":[2,33],"52":[2,33],"55":[2,33],"67":[2,33],"72":[2,33],"80":[2,33],"85":[2,33],"94":[2,33],"95":84,"96":[2,33],"97":[2,33],"98":[2,33],"101":85,"105":[2,33],"109":[2,33],"110":[2,33],"121":[2,33],"122":[2,33],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"8":230,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,102],"6":[2,102],"25":[2,102],"26":[2,102],"47":[2,102],"52":[2,102],"55":[2,102],"62":[2,102],"63":[2,102],"64":[2,102],"66":[2,102],"67":[2,102],"68":[2,102],"69":[2,102],"72":[2,102],"78":[2,102],"79":[2,102],"80":[2,102],"85":[2,102],"94":[2,102],"96":[2,102],"97":[2,102],"98":[2,102],"105":[2,102],"109":[2,102],"110":[2,102],"121":[2,102],"122":[2,102],"124":[2,102],"125":[2,102],"128":[2,102],"129":[2,102],"130":[2,102],"131":[2,102],"132":[2,102],"133":[2,102]},{"6":[2,50],"25":[2,50],"51":231,"52":[1,223],"80":[2,50]},{"48":232,"49":[1,55],"50":[1,56]},{"27":108,"28":[1,69],"42":109,"53":233,"54":107,"56":110,"57":111,"70":[1,66],"83":[1,112],"84":[1,65]},{"47":[2,56],"52":[2,56]},{"8":234,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,190],"6":[2,190],"25":[2,190],"26":[2,190],"47":[2,190],"52":[2,190],"55":[2,190],"67":[2,190],"72":[2,190],"80":[2,190],"85":[2,190],"94":[2,190],"95":84,"96":[2,190],"97":[2,190],"98":[2,190],"101":85,"105":[2,190],"109":[2,190],"110":[2,190],"121":[2,190],"122":[2,190],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"8":235,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,192],"6":[2,192],"25":[2,192],"26":[2,192],"47":[2,192],"52":[2,192],"55":[2,192],"67":[2,192],"72":[2,192],"80":[2,192],"85":[2,192],"94":[2,192],"95":84,"96":[2,192],"97":[2,192],"98":[2,192],"101":85,"105":[2,192],"109":[2,192],"110":[2,192],"121":[2,192],"122":[2,192],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"8":236,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,169],"6":[2,169],"25":[2,169],"26":[2,169],"47":[2,169],"52":[2,169],"55":[2,169],"67":[2,169],"72":[2,169],"80":[2,169],"85":[2,169],"94":[2,169],"96":[2,169],"97":[2,169],"98":[2,169],"105":[2,169],"109":[2,169],"110":[2,169],"115":[2,169],"121":[2,169],"122":[2,169],"124":[2,169],"125":[2,169],"128":[2,169],"129":[2,169],"130":[2,169],"131":[2,169],"132":[2,169],"133":[2,169]},{"1":[2,119],"6":[2,119],"25":[2,119],"26":[2,119],"47":[2,119],"52":[2,119],"55":[2,119],"67":[2,119],"72":[2,119],"80":[2,119],"85":[2,119],"90":[1,237],"94":[2,119],"96":[2,119],"97":[2,119],"98":[2,119],"105":[2,119],"109":[2,119],"110":[2,119],"121":[2,119],"122":[2,119],"124":[2,119],"125":[2,119],"128":[2,119],"129":[2,119],"130":[2,119],"131":[2,119],"132":[2,119],"133":[2,119]},{"5":238,"25":[1,5]},{"27":239,"28":[1,69]},{"114":240,"116":204,"117":[1,205]},{"26":[1,241],"115":[1,242],"116":243,"117":[1,205]},{"26":[2,162],"115":[2,162],"117":[2,162]},{"8":245,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"87":244,"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,90],"5":246,"6":[2,90],"25":[1,5],"26":[2,90],"47":[2,90],"52":[2,90],"55":[2,90],"60":91,"62":[1,93],"63":[1,94],"64":[1,95],"65":96,"66":[1,97],"67":[2,90],"68":[1,98],"69":[1,99],"72":[2,90],"75":90,"78":[1,92],"79":[2,100],"80":[2,90],"85":[2,90],"94":[2,90],"96":[2,90],"97":[2,90],"98":[2,90],"105":[2,90],"109":[2,90],"110":[2,90],"121":[2,90],"122":[2,90],"124":[2,90],"125":[2,90],"128":[2,90],"129":[2,90],"130":[2,90],"131":[2,90],"132":[2,90],"133":[2,90]},{"1":[2,67],"6":[2,67],"25":[2,67],"26":[2,67],"47":[2,67],"52":[2,67],"55":[2,67],"62":[2,67],"63":[2,67],"64":[2,67],"66":[2,67],"67":[2,67],"68":[2,67],"69":[2,67],"72":[2,67],"78":[2,67],"79":[2,67],"80":[2,67],"85":[2,67],"94":[2,67],"96":[2,67],"97":[2,67],"98":[2,67],"105":[2,67],"109":[2,67],"110":[2,67],"121":[2,67],"122":[2,67],"124":[2,67],"125":[2,67],"128":[2,67],"129":[2,67],"130":[2,67],"131":[2,67],"132":[2,67],"133":[2,67]},{"1":[2,93],"6":[2,93],"25":[2,93],"26":[2,93],"47":[2,93],"52":[2,93],"55":[2,93],"67":[2,93],"72":[2,93],"80":[2,93],"85":[2,93],"94":[2,93],"96":[2,93],"97":[2,93],"98":[2,93],"105":[2,93],"109":[2,93],"110":[2,93],"121":[2,93],"122":[2,93],"124":[2,93],"125":[2,93],"128":[2,93],"129":[2,93],"130":[2,93],"131":[2,93],"132":[2,93],"133":[2,93]},{"14":247,"15":120,"27":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":121,"41":25,"42":58,"56":46,"57":47,"59":207,"61":26,"70":[1,66],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"93":[1,52]},{"1":[2,124],"6":[2,124],"25":[2,124],"26":[2,124],"40":[2,124],"47":[2,124],"52":[2,124],"55":[2,124],"62":[2,124],"63":[2,124],"64":[2,124],"66":[2,124],"67":[2,124],"68":[2,124],"69":[2,124],"72":[2,124],"78":[2,124],"79":[2,124],"80":[2,124],"85":[2,124],"94":[2,124],"96":[2,124],"97":[2,124],"98":[2,124],"105":[2,124],"109":[2,124],"110":[2,124],"121":[2,124],"122":[2,124],"124":[2,124],"125":[2,124],"128":[2,124],"129":[2,124],"130":[2,124],"131":[2,124],"132":[2,124],"133":[2,124]},{"1":[2,166],"6":[2,166],"25":[2,166],"26":[2,166],"47":[2,166],"52":[2,166],"55":[2,166],"67":[2,166],"72":[2,166],"80":[2,166],"85":[2,166],"94":[2,166],"96":[2,166],"97":[2,166],"98":[2,166],"105":[2,166],"109":[2,166],"110":[2,166],"115":[2,166],"121":[2,166],"122":[2,166],"124":[2,166],"125":[2,166],"128":[2,166],"129":[2,166],"130":[2,166],"131":[2,166],"132":[2,166],"133":[2,166]},{"1":[2,167],"6":[2,167],"25":[2,167],"26":[2,167],"47":[2,167],"52":[2,167],"55":[2,167],"67":[2,167],"72":[2,167],"80":[2,167],"85":[2,167],"94":[2,167],"96":[2,167],"97":[2,167],"98":[2,167],"105":[2,167],"109":[2,167],"110":[2,167],"115":[2,167],"121":[2,167],"122":[2,167],"124":[2,167],"125":[2,167],"128":[2,167],"129":[2,167],"130":[2,167],"131":[2,167],"132":[2,167],"133":[2,167]},{"8":248,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":249,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,151],"6":[2,151],"25":[2,151],"26":[2,151],"47":[2,151],"52":[2,151],"55":[2,151],"67":[2,151],"72":[2,151],"80":[2,151],"85":[2,151],"94":[2,151],"96":[2,151],"97":[2,151],"98":[2,151],"105":[2,151],"109":[2,151],"110":[2,151],"121":[2,151],"122":[2,151],"124":[2,151],"125":[2,151],"128":[2,151],"129":[2,151],"130":[2,151],"131":[2,151],"132":[2,151],"133":[2,151]},{"27":250,"28":[1,69],"56":149,"57":150,"70":[1,66],"84":[1,65],"102":251},{"8":252,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,153],"6":[2,153],"25":[2,153],"26":[2,153],"47":[2,153],"52":[2,153],"55":[2,153],"67":[2,153],"72":[2,153],"80":[2,153],"85":[2,153],"94":[2,153],"96":[2,153],"97":[2,153],"98":[2,153],"105":[2,153],"109":[2,153],"110":[2,153],"121":[2,153],"122":[2,153],"124":[2,153],"125":[2,153],"128":[2,153],"129":[2,153],"130":[2,153],"131":[2,153],"132":[2,153],"133":[2,153]},{"8":253,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":254,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"52":[1,256],"106":255,"107":[1,220]},{"6":[1,258],"25":[1,259],"85":[1,257]},{"6":[2,51],"8":155,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"58":156,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"80":[2,51],"82":[1,53],"83":[1,54],"84":[1,65],"85":[2,51],"86":260,"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"6":[2,50],"25":[2,50],"26":[2,50],"51":261,"52":[1,223]},{"6":[2,62],"25":[2,62],"26":[2,62],"52":[2,62],"80":[2,62],"85":[2,62]},{"6":[1,263],"25":[1,264],"72":[1,262]},{"6":[2,51],"12":160,"25":[2,51],"26":[2,51],"27":161,"28":[1,69],"29":162,"30":[1,67],"31":[1,68],"38":265,"39":159,"41":163,"42":164,"44":[1,45],"72":[2,51],"83":[1,112],"93":[1,52]},{"8":266,"9":115,"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,267],"27":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,79],"6":[2,79],"25":[2,79],"26":[2,79],"37":[2,79],"47":[2,79],"52":[2,79],"55":[2,79],"62":[2,79],"63":[2,79],"64":[2,79],"66":[2,79],"67":[2,79],"68":[2,79],"69":[2,79],"72":[2,79],"74":[2,79],"78":[2,79],"79":[2,79],"80":[2,79],"85":[2,79],"94":[2,79],"96":[2,79],"97":[2,79],"98":[2,79],"105":[2,79],"109":[2,79],"110":[2,79],"121":[2,79],"122":[2,79],"124":[2,79],"125":[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]},{"26":[1,268],"95":84,"96":[1,61],"98":[1,62],"101":85,"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"6":[1,258],"25":[1,259],"80":[1,269]},{"5":270,"25":[1,5]},{"47":[2,54],"52":[2,54]},{"47":[2,57],"52":[2,57],"95":84,"96":[1,61],"98":[1,62],"101":85,"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"26":[1,271],"95":84,"96":[1,61],"98":[1,62],"101":85,"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"5":272,"25":[1,5],"95":84,"96":[1,61],"98":[1,62],"101":85,"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"5":273,"25":[1,5]},{"1":[2,120],"6":[2,120],"25":[2,120],"26":[2,120],"47":[2,120],"52":[2,120],"55":[2,120],"67":[2,120],"72":[2,120],"80":[2,120],"85":[2,120],"94":[2,120],"96":[2,120],"97":[2,120],"98":[2,120],"105":[2,120],"109":[2,120],"110":[2,120],"121":[2,120],"122":[2,120],"124":[2,120],"125":[2,120],"128":[2,120],"129":[2,120],"130":[2,120],"131":[2,120],"132":[2,120],"133":[2,120]},{"5":274,"25":[1,5]},{"26":[1,275],"115":[1,276],"116":243,"117":[1,205]},{"1":[2,160],"6":[2,160],"25":[2,160],"26":[2,160],"47":[2,160],"52":[2,160],"55":[2,160],"67":[2,160],"72":[2,160],"80":[2,160],"85":[2,160],"94":[2,160],"96":[2,160],"97":[2,160],"98":[2,160],"105":[2,160],"109":[2,160],"110":[2,160],"121":[2,160],"122":[2,160],"124":[2,160],"125":[2,160],"128":[2,160],"129":[2,160],"130":[2,160],"131":[2,160],"132":[2,160],"133":[2,160]},{"5":277,"25":[1,5]},{"26":[2,163],"115":[2,163],"117":[2,163]},{"5":278,"25":[1,5],"52":[1,279]},{"25":[2,116],"52":[2,116],"95":84,"96":[1,61],"98":[1,62],"101":85,"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,91],"6":[2,91],"25":[2,91],"26":[2,91],"47":[2,91],"52":[2,91],"55":[2,91],"67":[2,91],"72":[2,91],"80":[2,91],"85":[2,91],"94":[2,91],"96":[2,91],"97":[2,91],"98":[2,91],"105":[2,91],"109":[2,91],"110":[2,91],"121":[2,91],"122":[2,91],"124":[2,91],"125":[2,91],"128":[2,91],"129":[2,91],"130":[2,91],"131":[2,91],"132":[2,91],"133":[2,91]},{"1":[2,94],"5":280,"6":[2,94],"25":[1,5],"26":[2,94],"47":[2,94],"52":[2,94],"55":[2,94],"60":91,"62":[1,93],"63":[1,94],"64":[1,95],"65":96,"66":[1,97],"67":[2,94],"68":[1,98],"69":[1,99],"72":[2,94],"75":90,"78":[1,92],"79":[2,100],"80":[2,94],"85":[2,94],"94":[2,94],"96":[2,94],"97":[2,94],"98":[2,94],"105":[2,94],"109":[2,94],"110":[2,94],"121":[2,94],"122":[2,94],"124":[2,94],"125":[2,94],"128":[2,94],"129":[2,94],"130":[2,94],"131":[2,94],"132":[2,94],"133":[2,94]},{"1":[2,126],"6":[2,126],"25":[2,126],"26":[2,126],"47":[2,126],"52":[2,126],"55":[2,126],"67":[2,126],"72":[2,126],"80":[2,126],"85":[2,126],"94":[2,126],"95":84,"96":[1,61],"97":[2,126],"98":[1,62],"101":85,"105":[2,126],"109":[2,126],"110":[1,64],"121":[2,126],"122":[2,126],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,128],"6":[2,128],"25":[2,128],"26":[2,128],"47":[2,128],"52":[2,128],"55":[2,128],"67":[2,128],"72":[2,128],"80":[2,128],"85":[2,128],"94":[2,128],"95":84,"96":[1,61],"97":[2,128],"98":[1,62],"101":85,"105":[2,128],"109":[2,128],"110":[1,64],"121":[2,128],"122":[2,128],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"103":281,"104":[1,217],"107":[2,138]},{"106":282,"107":[1,220]},{"1":[2,141],"6":[2,141],"25":[2,141],"26":[2,141],"47":[2,141],"52":[2,141],"55":[2,141],"67":[2,141],"72":[2,141],"80":[2,141],"85":[2,141],"94":[2,141],"95":84,"96":[2,141],"97":[1,283],"98":[2,141],"101":85,"105":[1,284],"109":[2,141],"110":[2,141],"121":[2,141],"122":[2,141],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"95":84,"96":[1,61],"98":[1,62],"101":85,"108":285,"109":[1,286],"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,145],"6":[2,145],"25":[2,145],"26":[2,145],"47":[2,145],"52":[2,145],"55":[2,145],"67":[2,145],"72":[2,145],"80":[2,145],"85":[2,145],"94":[2,145],"95":84,"96":[2,145],"97":[1,287],"98":[2,145],"101":85,"105":[2,145],"109":[2,145],"110":[2,145],"121":[2,145],"122":[2,145],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,155],"6":[2,155],"25":[2,155],"26":[2,155],"47":[2,155],"52":[2,155],"55":[2,155],"67":[2,155],"72":[2,155],"80":[2,155],"85":[2,155],"94":[2,155],"96":[2,155],"97":[2,155],"98":[2,155],"105":[2,155],"109":[2,155],"110":[2,155],"121":[2,155],"122":[2,155],"124":[2,155],"125":[2,155],"128":[2,155],"129":[2,155],"130":[2,155],"131":[2,155],"132":[2,155],"133":[2,155]},{"27":289,"28":[1,69],"56":149,"57":150,"70":[1,66],"84":[1,65],"102":288},{"1":[2,108],"6":[2,108],"25":[2,108],"26":[2,108],"37":[2,108],"47":[2,108],"52":[2,108],"55":[2,108],"62":[2,108],"63":[2,108],"64":[2,108],"66":[2,108],"67":[2,108],"68":[2,108],"69":[2,108],"72":[2,108],"78":[2,108],"79":[2,108],"80":[2,108],"85":[2,108],"94":[2,108],"96":[2,108],"97":[2,108],"98":[2,108],"104":[2,108],"105":[2,108],"107":[2,108],"109":[2,108],"110":[2,108],"121":[2,108],"122":[2,108],"124":[2,108],"125":[2,108],"128":[2,108],"129":[2,108],"130":[2,108],"131":[2,108],"132":[2,108],"133":[2,108]},{"8":155,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"58":156,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"86":290,"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":155,"9":115,"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,154],"27":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"58":156,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"81":291,"82":[1,53],"83":[1,54],"84":[1,65],"86":153,"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"6":[2,110],"25":[2,110],"26":[2,110],"52":[2,110],"80":[2,110],"85":[2,110]},{"6":[1,258],"25":[1,259],"26":[1,292]},{"1":[2,82],"6":[2,82],"25":[2,82],"26":[2,82],"37":[2,82],"47":[2,82],"52":[2,82],"55":[2,82],"62":[2,82],"63":[2,82],"64":[2,82],"66":[2,82],"67":[2,82],"68":[2,82],"69":[2,82],"72":[2,82],"78":[2,82],"79":[2,82],"80":[2,82],"85":[2,82],"94":[2,82],"96":[2,82],"97":[2,82],"98":[2,82],"104":[2,82],"105":[2,82],"107":[2,82],"109":[2,82],"110":[2,82],"121":[2,82],"122":[2,82],"124":[2,82],"125":[2,82],"128":[2,82],"129":[2,82],"130":[2,82],"131":[2,82],"132":[2,82],"133":[2,82]},{"12":160,"27":161,"28":[1,69],"29":162,"30":[1,67],"31":[1,68],"38":293,"39":159,"41":163,"42":164,"44":[1,45],"83":[1,112],"93":[1,52]},{"6":[2,83],"12":160,"25":[2,83],"26":[2,83],"27":161,"28":[1,69],"29":162,"30":[1,67],"31":[1,68],"38":158,"39":159,"41":163,"42":164,"44":[1,45],"52":[2,83],"71":294,"83":[1,112],"93":[1,52]},{"6":[2,85],"25":[2,85],"26":[2,85],"52":[2,85],"72":[2,85]},{"6":[2,36],"25":[2,36],"26":[2,36],"52":[2,36],"72":[2,36],"95":84,"96":[1,61],"98":[1,62],"101":85,"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"8":295,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,34],"6":[2,34],"25":[2,34],"26":[2,34],"47":[2,34],"52":[2,34],"55":[2,34],"67":[2,34],"72":[2,34],"80":[2,34],"85":[2,34],"94":[2,34],"96":[2,34],"97":[2,34],"98":[2,34],"105":[2,34],"109":[2,34],"110":[2,34],"121":[2,34],"122":[2,34],"124":[2,34],"125":[2,34],"128":[2,34],"129":[2,34],"130":[2,34],"131":[2,34],"132":[2,34],"133":[2,34]},{"1":[2,103],"6":[2,103],"25":[2,103],"26":[2,103],"47":[2,103],"52":[2,103],"55":[2,103],"62":[2,103],"63":[2,103],"64":[2,103],"66":[2,103],"67":[2,103],"68":[2,103],"69":[2,103],"72":[2,103],"78":[2,103],"79":[2,103],"80":[2,103],"85":[2,103],"94":[2,103],"96":[2,103],"97":[2,103],"98":[2,103],"105":[2,103],"109":[2,103],"110":[2,103],"121":[2,103],"122":[2,103],"124":[2,103],"125":[2,103],"128":[2,103],"129":[2,103],"130":[2,103],"131":[2,103],"132":[2,103],"133":[2,103]},{"1":[2,46],"6":[2,46],"25":[2,46],"26":[2,46],"47":[2,46],"52":[2,46],"55":[2,46],"67":[2,46],"72":[2,46],"80":[2,46],"85":[2,46],"94":[2,46],"96":[2,46],"97":[2,46],"98":[2,46],"105":[2,46],"109":[2,46],"110":[2,46],"121":[2,46],"122":[2,46],"124":[2,46],"125":[2,46],"128":[2,46],"129":[2,46],"130":[2,46],"131":[2,46],"132":[2,46],"133":[2,46]},{"1":[2,191],"6":[2,191],"25":[2,191],"26":[2,191],"47":[2,191],"52":[2,191],"55":[2,191],"67":[2,191],"72":[2,191],"80":[2,191],"85":[2,191],"94":[2,191],"96":[2,191],"97":[2,191],"98":[2,191],"105":[2,191],"109":[2,191],"110":[2,191],"121":[2,191],"122":[2,191],"124":[2,191],"125":[2,191],"128":[2,191],"129":[2,191],"130":[2,191],"131":[2,191],"132":[2,191],"133":[2,191]},{"1":[2,168],"6":[2,168],"25":[2,168],"26":[2,168],"47":[2,168],"52":[2,168],"55":[2,168],"67":[2,168],"72":[2,168],"80":[2,168],"85":[2,168],"94":[2,168],"96":[2,168],"97":[2,168],"98":[2,168],"105":[2,168],"109":[2,168],"110":[2,168],"115":[2,168],"121":[2,168],"122":[2,168],"124":[2,168],"125":[2,168],"128":[2,168],"129":[2,168],"130":[2,168],"131":[2,168],"132":[2,168],"133":[2,168]},{"1":[2,121],"6":[2,121],"25":[2,121],"26":[2,121],"47":[2,121],"52":[2,121],"55":[2,121],"67":[2,121],"72":[2,121],"80":[2,121],"85":[2,121],"94":[2,121],"96":[2,121],"97":[2,121],"98":[2,121],"105":[2,121],"109":[2,121],"110":[2,121],"121":[2,121],"122":[2,121],"124":[2,121],"125":[2,121],"128":[2,121],"129":[2,121],"130":[2,121],"131":[2,121],"132":[2,121],"133":[2,121]},{"1":[2,122],"6":[2,122],"25":[2,122],"26":[2,122],"47":[2,122],"52":[2,122],"55":[2,122],"67":[2,122],"72":[2,122],"80":[2,122],"85":[2,122],"90":[2,122],"94":[2,122],"96":[2,122],"97":[2,122],"98":[2,122],"105":[2,122],"109":[2,122],"110":[2,122],"121":[2,122],"122":[2,122],"124":[2,122],"125":[2,122],"128":[2,122],"129":[2,122],"130":[2,122],"131":[2,122],"132":[2,122],"133":[2,122]},{"1":[2,158],"6":[2,158],"25":[2,158],"26":[2,158],"47":[2,158],"52":[2,158],"55":[2,158],"67":[2,158],"72":[2,158],"80":[2,158],"85":[2,158],"94":[2,158],"96":[2,158],"97":[2,158],"98":[2,158],"105":[2,158],"109":[2,158],"110":[2,158],"121":[2,158],"122":[2,158],"124":[2,158],"125":[2,158],"128":[2,158],"129":[2,158],"130":[2,158],"131":[2,158],"132":[2,158],"133":[2,158]},{"5":296,"25":[1,5]},{"26":[1,297]},{"6":[1,298],"26":[2,164],"115":[2,164],"117":[2,164]},{"8":299,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,95],"6":[2,95],"25":[2,95],"26":[2,95],"47":[2,95],"52":[2,95],"55":[2,95],"67":[2,95],"72":[2,95],"80":[2,95],"85":[2,95],"94":[2,95],"96":[2,95],"97":[2,95],"98":[2,95],"105":[2,95],"109":[2,95],"110":[2,95],"121":[2,95],"122":[2,95],"124":[2,95],"125":[2,95],"128":[2,95],"129":[2,95],"130":[2,95],"131":[2,95],"132":[2,95],"133":[2,95]},{"1":[2,152],"6":[2,152],"25":[2,152],"26":[2,152],"47":[2,152],"52":[2,152],"55":[2,152],"67":[2,152],"72":[2,152],"80":[2,152],"85":[2,152],"94":[2,152],"96":[2,152],"97":[2,152],"98":[2,152],"105":[2,152],"109":[2,152],"110":[2,152],"121":[2,152],"122":[2,152],"124":[2,152],"125":[2,152],"128":[2,152],"129":[2,152],"130":[2,152],"131":[2,152],"132":[2,152],"133":[2,152]},{"1":[2,154],"6":[2,154],"25":[2,154],"26":[2,154],"47":[2,154],"52":[2,154],"55":[2,154],"67":[2,154],"72":[2,154],"80":[2,154],"85":[2,154],"94":[2,154],"96":[2,154],"97":[2,154],"98":[2,154],"105":[2,154],"109":[2,154],"110":[2,154],"121":[2,154],"122":[2,154],"124":[2,154],"125":[2,154],"128":[2,154],"129":[2,154],"130":[2,154],"131":[2,154],"132":[2,154],"133":[2,154]},{"8":300,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":301,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,157],"6":[2,157],"25":[2,157],"26":[2,157],"47":[2,157],"52":[2,157],"55":[2,157],"67":[2,157],"72":[2,157],"80":[2,157],"85":[2,157],"94":[2,157],"96":[2,157],"97":[2,157],"98":[2,157],"105":[2,157],"109":[2,157],"110":[2,157],"121":[2,157],"122":[2,157],"124":[2,157],"125":[2,157],"128":[2,157],"129":[2,157],"130":[2,157],"131":[2,157],"132":[2,157],"133":[2,157]},{"8":302,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":303,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"106":304,"107":[1,220]},{"107":[2,138]},{"6":[2,111],"25":[2,111],"26":[2,111],"52":[2,111],"80":[2,111],"85":[2,111]},{"6":[2,50],"25":[2,50],"26":[2,50],"51":305,"52":[1,223]},{"6":[2,112],"25":[2,112],"26":[2,112],"52":[2,112],"80":[2,112],"85":[2,112]},{"6":[2,86],"25":[2,86],"26":[2,86],"52":[2,86],"72":[2,86]},{"6":[2,50],"25":[2,50],"26":[2,50],"51":306,"52":[1,227]},{"26":[1,307],"95":84,"96":[1,61],"98":[1,62],"101":85,"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"26":[1,308]},{"1":[2,161],"6":[2,161],"25":[2,161],"26":[2,161],"47":[2,161],"52":[2,161],"55":[2,161],"67":[2,161],"72":[2,161],"80":[2,161],"85":[2,161],"94":[2,161],"96":[2,161],"97":[2,161],"98":[2,161],"105":[2,161],"109":[2,161],"110":[2,161],"121":[2,161],"122":[2,161],"124":[2,161],"125":[2,161],"128":[2,161],"129":[2,161],"130":[2,161],"131":[2,161],"132":[2,161],"133":[2,161]},{"26":[2,165],"115":[2,165],"117":[2,165]},{"25":[2,117],"52":[2,117],"95":84,"96":[1,61],"98":[1,62],"101":85,"110":[1,64],"121":[1,82],"122":[1,83],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,142],"6":[2,142],"25":[2,142],"26":[2,142],"47":[2,142],"52":[2,142],"55":[2,142],"67":[2,142],"72":[2,142],"80":[2,142],"85":[2,142],"94":[2,142],"95":84,"96":[2,142],"97":[2,142],"98":[2,142],"101":85,"105":[2,142],"109":[2,142],"110":[2,142],"121":[2,142],"122":[2,142],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,143],"6":[2,143],"25":[2,143],"26":[2,143],"47":[2,143],"52":[2,143],"55":[2,143],"67":[2,143],"72":[2,143],"80":[2,143],"85":[2,143],"94":[2,143],"95":84,"96":[2,143],"97":[1,309],"98":[2,143],"101":85,"105":[2,143],"109":[2,143],"110":[2,143],"121":[2,143],"122":[2,143],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,147],"6":[2,147],"25":[2,147],"26":[2,147],"47":[2,147],"52":[2,147],"55":[2,147],"67":[2,147],"72":[2,147],"80":[2,147],"85":[2,147],"94":[2,147],"95":84,"96":[2,147],"97":[1,310],"98":[2,147],"101":85,"105":[1,311],"109":[2,147],"110":[2,147],"121":[2,147],"122":[2,147],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,146],"6":[2,146],"25":[2,146],"26":[2,146],"47":[2,146],"52":[2,146],"55":[2,146],"67":[2,146],"72":[2,146],"80":[2,146],"85":[2,146],"94":[2,146],"95":84,"96":[2,146],"97":[2,146],"98":[2,146],"101":85,"105":[2,146],"109":[2,146],"110":[2,146],"121":[2,146],"122":[2,146],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,156],"6":[2,156],"25":[2,156],"26":[2,156],"47":[2,156],"52":[2,156],"55":[2,156],"67":[2,156],"72":[2,156],"80":[2,156],"85":[2,156],"94":[2,156],"96":[2,156],"97":[2,156],"98":[2,156],"105":[2,156],"109":[2,156],"110":[2,156],"121":[2,156],"122":[2,156],"124":[2,156],"125":[2,156],"128":[2,156],"129":[2,156],"130":[2,156],"131":[2,156],"132":[2,156],"133":[2,156]},{"6":[1,258],"25":[1,259],"26":[1,312]},{"6":[1,263],"25":[1,264],"26":[1,313]},{"6":[2,37],"25":[2,37],"26":[2,37],"52":[2,37],"72":[2,37]},{"1":[2,159],"6":[2,159],"25":[2,159],"26":[2,159],"47":[2,159],"52":[2,159],"55":[2,159],"67":[2,159],"72":[2,159],"80":[2,159],"85":[2,159],"94":[2,159],"96":[2,159],"97":[2,159],"98":[2,159],"105":[2,159],"109":[2,159],"110":[2,159],"121":[2,159],"122":[2,159],"124":[2,159],"125":[2,159],"128":[2,159],"129":[2,159],"130":[2,159],"131":[2,159],"132":[2,159],"133":[2,159]},{"8":314,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":315,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"8":316,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"6":[2,113],"25":[2,113],"26":[2,113],"52":[2,113],"80":[2,113],"85":[2,113]},{"6":[2,87],"25":[2,87],"26":[2,87],"52":[2,87],"72":[2,87]},{"1":[2,144],"6":[2,144],"25":[2,144],"26":[2,144],"47":[2,144],"52":[2,144],"55":[2,144],"67":[2,144],"72":[2,144],"80":[2,144],"85":[2,144],"94":[2,144],"95":84,"96":[2,144],"97":[2,144],"98":[2,144],"101":85,"105":[2,144],"109":[2,144],"110":[2,144],"121":[2,144],"122":[2,144],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,148],"6":[2,148],"25":[2,148],"26":[2,148],"47":[2,148],"52":[2,148],"55":[2,148],"67":[2,148],"72":[2,148],"80":[2,148],"85":[2,148],"94":[2,148],"95":84,"96":[2,148],"97":[2,148],"98":[2,148],"101":85,"105":[2,148],"109":[2,148],"110":[2,148],"121":[2,148],"122":[2,148],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"1":[2,149],"6":[2,149],"25":[2,149],"26":[2,149],"47":[2,149],"52":[2,149],"55":[2,149],"67":[2,149],"72":[2,149],"80":[2,149],"85":[2,149],"94":[2,149],"95":84,"96":[2,149],"97":[1,317],"98":[2,149],"101":85,"105":[2,149],"109":[2,149],"110":[2,149],"121":[2,149],"122":[2,149],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]},{"8":318,"9":115,"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":57,"28":[1,69],"29":48,"30":[1,67],"31":[1,68],"32":24,"33":[1,49],"34":[1,50],"35":[1,51],"36":23,"41":25,"42":58,"43":[1,43],"44":[1,45],"45":[1,28],"48":29,"49":[1,55],"50":[1,56],"56":46,"57":47,"59":35,"61":26,"70":[1,66],"73":[1,42],"77":[1,27],"82":[1,53],"83":[1,54],"84":[1,65],"88":[1,37],"92":[1,44],"93":[1,52],"95":38,"96":[1,61],"98":[1,62],"99":39,"100":[1,63],"101":40,"110":[1,64],"113":[1,41],"118":36,"119":[1,59],"120":[1,60],"123":[1,30],"124":[1,31],"125":[1,32],"126":[1,33],"127":[1,34]},{"1":[2,150],"6":[2,150],"25":[2,150],"26":[2,150],"47":[2,150],"52":[2,150],"55":[2,150],"67":[2,150],"72":[2,150],"80":[2,150],"85":[2,150],"94":[2,150],"95":84,"96":[2,150],"97":[2,150],"98":[2,150],"101":85,"105":[2,150],"109":[2,150],"110":[2,150],"121":[2,150],"122":[2,150],"124":[1,76],"125":[1,75],"128":[1,74],"129":[1,77],"130":[1,78],"131":[1,79],"132":[1,80],"133":[1,81]}], +-defaultActions: {"55":[2,48],"56":[2,49],"71":[2,3],"92":[2,101],"289":[2,138]}, ++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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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]},{"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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],"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],"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":[1,99],"68":[2,13],"69":[1,100],"70":[1,101],"73":[2,13],"76":92,"79":[1,94],"80":[2,101],"81":[2,13],"86":[2,13],"88":[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":103,"63":[1,95],"64":[1,96],"65":[1,97],"66":98,"67":[1,99],"68":[2,14],"69":[1,100],"70":[1,101],"73":[2,14],"76":102,"79":[1,94],"80":[2,101],"81":[2,14],"86":[2,14],"88":[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],"68":[2,15],"73":[2,15],"81":[2,15],"86":[2,15],"88":[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],"68":[2,16],"73":[2,16],"81":[2,16],"86":[2,16],"88":[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],"68":[2,17],"73":[2,17],"81":[2,17],"86":[2,17],"88":[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],"68":[2,18],"73":[2,18],"81":[2,18],"86":[2,18],"88":[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],"68":[2,19],"73":[2,19],"81":[2,19],"86":[2,19],"88":[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],"68":[2,20],"73":[2,20],"81":[2,20],"86":[2,20],"88":[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],"68":[2,21],"73":[2,21],"81":[2,21],"86":[2,21],"88":[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],"68":[2,22],"73":[2,22],"81":[2,22],"86":[2,22],"88":[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],"68":[2,23],"73":[2,23],"81":[2,23],"86":[2,23],"88":[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],"100":[2,9],"102":[2,9],"106":[2,9],"123":[2,9],"124":[2,9]},{"1":[2,10],"6":[2,10],"26":[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],"100":[2,11],"102":[2,11],"106":[2,11],"123":[2,11],"124":[2,11]},{"1":[2,12],"6":[2,12],"26":[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,104],"47":[2,70],"52":[2,70],"55":[2,70],"63":[2,70],"64":[2,70],"65":[2,70],"67":[2,70],"68":[2,70],"69":[2,70],"70":[2,70],"73":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"86":[2,70],"88":[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],"67":[2,71],"68":[2,71],"69":[2,71],"70":[2,71],"73":[2,71],"79":[2,71],"80":[2,71],"81":[2,71],"86":[2,71],"88":[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],"67":[2,72],"68":[2,72],"69":[2,72],"70":[2,72],"73":[2,72],"79":[2,72],"80":[2,72],"81":[2,72],"86":[2,72],"88":[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],"67":[2,73],"68":[2,73],"69":[2,73],"70":[2,73],"73":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"86":[2,73],"88":[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],"67":[2,74],"68":[2,74],"69":[2,74],"70":[2,74],"73":[2,74],"79":[2,74],"80":[2,74],"81":[2,74],"86":[2,74],"88":[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,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],"67":[2,99],"68":[2,99],"69":[2,99],"70":[2,99],"73":[2,99],"77":105,"79":[2,99],"80":[1,106],"81":[2,99],"86":[2,99],"88":[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]},{"27":110,"28":[1,71],"42":111,"46":107,"47":[2,52],"52":[2,52],"53":108,"54":109,"56":112,"57":113,"71":[1,68],"84":[1,114],"85":[1,115]},{"5":116,"25":[1,5]},{"8":117,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":119,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":122,"15":123,"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":124,"41":25,"42":60,"56":47,"57":48,"59":121,"61":26,"62":27,"71":[1,68],"78":[1,28],"83":[1,55],"84":[1,56],"85":[1,54],"97":[1,53]},{"14":122,"15":123,"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":124,"41":25,"42":60,"56":47,"57":48,"59":125,"61":26,"62":27,"71":[1,68],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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],"67":[2,67],"68":[2,67],"69":[2,67],"70":[2,67],"73":[2,67],"75":[1,129],"79":[2,67],"80":[2,67],"81":[2,67],"86":[2,67],"88":[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,126],"129":[1,127],"130":[2,67],"131":[2,67],"132":[2,67],"133":[2,67],"134":[2,67],"135":[2,67],"136":[1,128]},{"1":[2,173],"6":[2,173],"25":[2,173],"26":[2,173],"47":[2,173],"52":[2,173],"55":[2,173],"68":[2,173],"73":[2,173],"81":[2,173],"86":[2,173],"88":[2,173],"98":[2,173],"100":[2,173],"101":[2,173],"102":[2,173],"106":[2,173],"114":[2,173],"117":[1,130],"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]},{"5":131,"25":[1,5]},{"5":132,"25":[1,5]},{"1":[2,139],"6":[2,139],"25":[2,139],"26":[2,139],"47":[2,139],"52":[2,139],"55":[2,139],"68":[2,139],"73":[2,139],"81":[2,139],"86":[2,139],"88":[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]},{"5":133,"25":[1,5]},{"8":134,"9":118,"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,135],"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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,89],"5":136,"6":[2,89],"14":122,"15":123,"25":[1,5],"26":[2,89],"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":124,"41":25,"42":60,"47":[2,89],"52":[2,89],"55":[2,89],"56":47,"57":48,"59":138,"61":26,"62":27,"68":[2,89],"71":[1,68],"73":[2,89],"75":[1,137],"78":[1,28],"81":[2,89],"83":[1,55],"84":[1,56],"85":[1,54],"86":[2,89],"88":[2,89],"97":[1,53],"98":[2,89],"100":[2,89],"101":[2,89],"102":[2,89],"106":[2,89],"114":[2,89],"123":[2,89],"124":[2,89],"126":[2,89],"127":[2,89],"130":[2,89],"131":[2,89],"132":[2,89],"133":[2,89],"134":[2,89],"135":[2,89]},{"1":[2,44],"6":[2,44],"8":139,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[1,54],"92":[1,38],"96":[1,45],"97":[1,53],"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":140,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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],"73":[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],"67":[2,68],"68":[2,68],"69":[2,68],"70":[2,68],"73":[2,68],"79":[2,68],"80":[2,68],"81":[2,68],"86":[2,68],"88":[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],"67":[2,69],"68":[2,69],"69":[2,69],"70":[2,69],"73":[2,69],"79":[2,69],"80":[2,69],"81":[2,69],"86":[2,69],"88":[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],"67":[2,29],"68":[2,29],"69":[2,29],"70":[2,29],"73":[2,29],"79":[2,29],"80":[2,29],"81":[2,29],"86":[2,29],"88":[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],"67":[2,30],"68":[2,30],"69":[2,30],"70":[2,30],"73":[2,30],"79":[2,30],"80":[2,30],"81":[2,30],"86":[2,30],"88":[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],"67":[2,31],"68":[2,31],"69":[2,31],"70":[2,31],"73":[2,31],"79":[2,31],"80":[2,31],"81":[2,31],"86":[2,31],"88":[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],"67":[2,32],"68":[2,32],"69":[2,32],"70":[2,32],"73":[2,32],"79":[2,32],"80":[2,32],"81":[2,32],"86":[2,32],"88":[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]},{"8":141,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":142,"9":118,"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,146],"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":147,"59":36,"61":26,"62":27,"71":[1,68],"74":[1,43],"78":[1,28],"82":144,"83":[1,55],"84":[1,56],"85":[1,54],"86":[1,143],"90":145,"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,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],"67":[2,105],"68":[2,105],"69":[2,105],"70":[2,105],"73":[2,105],"79":[2,105],"80":[2,105],"81":[2,105],"86":[2,105],"88":[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,106],"6":[2,106],"25":[2,106],"26":[2,106],"27":148,"28":[1,71],"47":[2,106],"52":[2,106],"55":[2,106],"63":[2,106],"64":[2,106],"65":[2,106],"67":[2,106],"68":[2,106],"69":[2,106],"70":[2,106],"73":[2,106],"79":[2,106],"80":[2,106],"81":[2,106],"86":[2,106],"88":[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]},{"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],"67":[2,63],"68":[2,63],"69":[2,63],"70":[2,63],"73":[2,63],"75":[2,63],"79":[2,63],"80":[2,63],"81":[2,63],"86":[2,63],"88":[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],"67":[2,66],"68":[2,66],"69":[2,66],"70":[2,66],"73":[2,66],"75":[2,66],"79":[2,66],"80":[2,66],"81":[2,66],"86":[2,66],"88":[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":149,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":150,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":151,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":153,"8":154,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":159,"28":[1,71],"56":160,"57":161,"61":155,"71":[1,68],"85":[1,54],"109":156,"110":[1,157],"111":158},{"108":162,"112":[1,163],"113":[1,164]},{"6":[2,84],"12":168,"25":[2,84],"27":169,"28":[1,71],"29":170,"30":[1,69],"31":[1,70],"38":166,"39":167,"41":171,"42":172,"44":[1,46],"52":[2,84],"72":165,"73":[2,84],"84":[1,114],"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],"67":[2,27],"68":[2,27],"69":[2,27],"70":[2,27],"73":[2,27],"79":[2,27],"80":[2,27],"81":[2,27],"86":[2,27],"88":[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],"67":[2,28],"68":[2,28],"69":[2,28],"70":[2,28],"73":[2,28],"79":[2,28],"80":[2,28],"81":[2,28],"86":[2,28],"88":[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],"67":[2,26],"68":[2,26],"69":[2,26],"70":[2,26],"73":[2,26],"75":[2,26],"79":[2,26],"80":[2,26],"81":[2,26],"86":[2,26],"88":[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":173,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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,3]},{"6":[1,72],"26":[1,174]},{"1":[2,25],"6":[2,25],"25":[2,25],"26":[2,25],"47":[2,25],"52":[2,25],"55":[2,25],"68":[2,25],"73":[2,25],"81":[2,25],"86":[2,25],"88":[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,185],"6":[2,185],"25":[2,185],"26":[2,185],"47":[2,185],"52":[2,185],"55":[2,185],"68":[2,185],"73":[2,185],"81":[2,185],"86":[2,185],"88":[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]},{"8":175,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":176,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":177,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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,138],"6":[2,138],"25":[2,138],"26":[2,138],"47":[2,138],"52":[2,138],"55":[2,138],"68":[2,138],"73":[2,138],"81":[2,138],"86":[2,138],"88":[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,143],"6":[2,143],"25":[2,143],"26":[2,143],"47":[2,143],"52":[2,143],"55":[2,143],"68":[2,143],"73":[2,143],"81":[2,143],"86":[2,143],"88":[2,143],"98":[2,143],"100":[2,143],"101":[2,143],"102":[2,143],"106":[2,143],"114":[2,143],"123":[2,143],"124":[2,143],"126":[2,143],"127":[2,143],"130":[2,143],"131":[2,143],"132":[2,143],"133":[2,143],"134":[2,143],"135":[2,143]},{"8":184,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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,137],"6":[2,137],"25":[2,137],"26":[2,137],"47":[2,137],"52":[2,137],"55":[2,137],"68":[2,137],"73":[2,137],"81":[2,137],"86":[2,137],"88":[2,137],"98":[2,137],"100":[2,137],"101":[2,137],"102":[2,137],"106":[2,137],"114":[2,137],"123":[2,137],"124":[2,137],"126":[2,137],"127":[2,137],"130":[2,137],"131":[2,137],"132":[2,137],"133":[2,137],"134":[2,137],"135":[2,137]},{"1":[2,142],"6":[2,142],"25":[2,142],"26":[2,142],"47":[2,142],"52":[2,142],"55":[2,142],"68":[2,142],"73":[2,142],"81":[2,142],"86":[2,142],"88":[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]},{"77":186,"80":[1,106]},{"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],"67":[2,64],"68":[2,64],"69":[2,64],"70":[2,64],"73":[2,64],"75":[2,64],"79":[2,64],"80":[2,64],"81":[2,64],"86":[2,64],"88":[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]},{"80":[2,102]},{"27":187,"28":[1,71]},{"27":188,"28":[1,71]},{"1":[2,78],"6":[2,78],"25":[2,78],"26":[2,78],"27":189,"28":[1,71],"37":[2,78],"47":[2,78],"52":[2,78],"55":[2,78],"63":[2,78],"64":[2,78],"65":[2,78],"67":[2,78],"68":[2,78],"69":[2,78],"70":[2,78],"73":[2,78],"75":[2,78],"79":[2,78],"80":[2,78],"81":[2,78],"86":[2,78],"88":[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],"67":[2,79],"68":[2,79],"69":[2,79],"70":[2,79],"73":[2,79],"75":[2,79],"79":[2,79],"80":[2,79],"81":[2,79],"86":[2,79],"88":[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]},{"8":190,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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]},{"66":191,"67":[1,99],"69":[1,100],"70":[1,101]},{"66":192,"67":[1,99],"69":[1,100],"70":[1,101]},{"77":193,"80":[1,106]},{"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],"67":[2,65],"68":[2,65],"69":[2,65],"70":[2,65],"73":[2,65],"75":[2,65],"79":[2,65],"80":[2,65],"81":[2,65],"86":[2,65],"88":[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":194,"9":118,"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,195],"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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,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],"67":[2,100],"68":[2,100],"69":[2,100],"70":[2,100],"73":[2,100],"79":[2,100],"80":[2,100],"81":[2,100],"86":[2,100],"88":[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]},{"8":198,"9":118,"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,146],"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":147,"59":36,"61":26,"62":27,"71":[1,68],"74":[1,43],"78":[1,28],"81":[1,196],"82":197,"83":[1,55],"84":[1,56],"85":[1,54],"90":145,"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,199],"52":[1,200]},{"47":[2,53],"52":[2,53]},{"37":[1,202],"47":[2,55],"52":[2,55],"55":[1,201]},{"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":148,"28":[1,71]},{"8":198,"9":118,"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,146],"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":147,"59":36,"61":26,"62":27,"71":[1,68],"74":[1,43],"78":[1,28],"82":144,"83":[1,55],"84":[1,56],"85":[1,54],"86":[1,143],"90":145,"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],"68":[2,47],"73":[2,47],"81":[2,47],"86":[2,47],"88":[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,178],"6":[2,178],"25":[2,178],"26":[2,178],"47":[2,178],"52":[2,178],"55":[2,178],"68":[2,178],"73":[2,178],"81":[2,178],"86":[2,178],"88":[2,178],"98":[2,178],"99":86,"100":[2,178],"101":[2,178],"102":[2,178],"105":87,"106":[2,178],"107":67,"114":[2,178],"123":[2,178],"124":[2,178],"126":[2,178],"127":[2,178],"130":[1,76],"131":[2,178],"132":[2,178],"133":[2,178],"134":[2,178],"135":[2,178]},{"99":90,"100":[1,63],"102":[1,64],"105":91,"106":[1,66],"107":67,"123":[1,88],"124":[1,89]},{"1":[2,179],"6":[2,179],"25":[2,179],"26":[2,179],"47":[2,179],"52":[2,179],"55":[2,179],"68":[2,179],"73":[2,179],"81":[2,179],"86":[2,179],"88":[2,179],"98":[2,179],"99":86,"100":[2,179],"101":[2,179],"102":[2,179],"105":87,"106":[2,179],"107":67,"114":[2,179],"123":[2,179],"124":[2,179],"126":[2,179],"127":[2,179],"130":[1,76],"131":[2,179],"132":[2,179],"133":[2,179],"134":[2,179],"135":[2,179]},{"1":[2,180],"6":[2,180],"25":[2,180],"26":[2,180],"47":[2,180],"52":[2,180],"55":[2,180],"68":[2,180],"73":[2,180],"81":[2,180],"86":[2,180],"88":[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]},{"1":[2,181],"6":[2,181],"25":[2,181],"26":[2,181],"47":[2,181],"52":[2,181],"55":[2,181],"63":[2,67],"64":[2,67],"65":[2,67],"67":[2,67],"68":[2,181],"69":[2,67],"70":[2,67],"73":[2,181],"79":[2,67],"80":[2,67],"81":[2,181],"86":[2,181],"88":[2,181],"98":[2,181],"100":[2,181],"101":[2,181],"102":[2,181],"106":[2,181],"114":[2,181],"123":[2,181],"124":[2,181],"126":[2,181],"127":[2,181],"130":[2,181],"131":[2,181],"132":[2,181],"133":[2,181],"134":[2,181],"135":[2,181]},{"60":93,"63":[1,95],"64":[1,96],"65":[1,97],"66":98,"67":[1,99],"69":[1,100],"70":[1,101],"76":92,"79":[1,94],"80":[2,101]},{"60":103,"63":[1,95],"64":[1,96],"65":[1,97],"66":98,"67":[1,99],"69":[1,100],"70":[1,101],"76":102,"79":[1,94],"80":[2,101]},{"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],"67":[2,70],"68":[2,70],"69":[2,70],"70":[2,70],"73":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"86":[2,70],"88":[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,182],"6":[2,182],"25":[2,182],"26":[2,182],"47":[2,182],"52":[2,182],"55":[2,182],"63":[2,67],"64":[2,67],"65":[2,67],"67":[2,67],"68":[2,182],"69":[2,67],"70":[2,67],"73":[2,182],"79":[2,67],"80":[2,67],"81":[2,182],"86":[2,182],"88":[2,182],"98":[2,182],"100":[2,182],"101":[2,182],"102":[2,182],"106":[2,182],"114":[2,182],"123":[2,182],"124":[2,182],"126":[2,182],"127":[2,182],"130":[2,182],"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],"68":[2,183],"73":[2,183],"81":[2,183],"86":[2,183],"88":[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]},{"1":[2,184],"6":[2,184],"25":[2,184],"26":[2,184],"47":[2,184],"52":[2,184],"55":[2,184],"68":[2,184],"73":[2,184],"81":[2,184],"86":[2,184],"88":[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]},{"8":203,"9":118,"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,204],"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":205,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":207,"25":[1,5],"121":[1,206]},{"1":[2,125],"6":[2,125],"25":[2,125],"26":[2,125],"47":[2,125],"52":[2,125],"55":[2,125],"68":[2,125],"73":[2,125],"81":[2,125],"86":[2,125],"88":[2,125],"93":208,"94":[1,209],"95":[1,210],"98":[2,125],"100":[2,125],"101":[2,125],"102":[2,125],"106":[2,125],"114":[2,125],"123":[2,125],"124":[2,125],"126":[2,125],"127":[2,125],"130":[2,125],"131":[2,125],"132":[2,125],"133":[2,125],"134":[2,125],"135":[2,125]},{"1":[2,136],"6":[2,136],"25":[2,136],"26":[2,136],"47":[2,136],"52":[2,136],"55":[2,136],"68":[2,136],"73":[2,136],"81":[2,136],"86":[2,136],"88":[2,136],"98":[2,136],"100":[2,136],"101":[2,136],"102":[2,136],"106":[2,136],"114":[2,136],"123":[2,136],"124":[2,136],"126":[2,136],"127":[2,136],"130":[2,136],"131":[2,136],"132":[2,136],"133":[2,136],"134":[2,136],"135":[2,136]},{"1":[2,144],"6":[2,144],"25":[2,144],"26":[2,144],"47":[2,144],"52":[2,144],"55":[2,144],"68":[2,144],"73":[2,144],"81":[2,144],"86":[2,144],"88":[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]},{"25":[1,211],"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":212,"118":213,"119":[1,214]},{"1":[2,90],"6":[2,90],"25":[2,90],"26":[2,90],"47":[2,90],"52":[2,90],"55":[2,90],"68":[2,90],"73":[2,90],"81":[2,90],"86":[2,90],"88":[2,90],"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]},{"14":215,"15":123,"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":124,"41":25,"42":60,"56":47,"57":48,"59":216,"61":26,"62":27,"71":[1,68],"78":[1,28],"83":[1,55],"84":[1,56],"85":[1,54],"97":[1,53]},{"1":[2,93],"5":217,"6":[2,93],"25":[1,5],"26":[2,93],"47":[2,93],"52":[2,93],"55":[2,93],"63":[2,67],"64":[2,67],"65":[2,67],"67":[2,67],"68":[2,93],"69":[2,67],"70":[2,67],"73":[2,93],"75":[1,218],"79":[2,67],"80":[2,67],"81":[2,93],"86":[2,93],"88":[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,43],"6":[2,43],"26":[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,130],"6":[2,130],"26":[2,130],"99":86,"100":[2,130],"102":[2,130],"105":87,"106":[2,130],"107":67,"123":[2,130],"124":[2,130],"126":[1,78],"127":[1,77],"130":[1,76],"131":[1,79],"132":[1,80],"133":[1,81],"134":[1,82],"135":[1,83]},{"98":[1,219],"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":[2,121],"25":[2,121],"52":[2,121],"55":[1,221],"86":[2,121],"87":220,"88":[1,222],"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,108],"6":[2,108],"25":[2,108],"26":[2,108],"37":[2,108],"47":[2,108],"52":[2,108],"55":[2,108],"63":[2,108],"64":[2,108],"65":[2,108],"67":[2,108],"68":[2,108],"69":[2,108],"70":[2,108],"73":[2,108],"79":[2,108],"80":[2,108],"81":[2,108],"86":[2,108],"88":[2,108],"98":[2,108],"100":[2,108],"101":[2,108],"102":[2,108],"106":[2,108],"112":[2,108],"113":[2,108],"114":[2,108],"123":[2,108],"124":[2,108],"126":[2,108],"127":[2,108],"130":[2,108],"131":[2,108],"132":[2,108],"133":[2,108],"134":[2,108],"135":[2,108]},{"6":[2,50],"25":[2,50],"51":223,"52":[1,224],"86":[2,50]},{"6":[2,116],"25":[2,116],"26":[2,116],"52":[2,116],"81":[2,116],"86":[2,116]},{"8":198,"9":118,"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,146],"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":147,"59":36,"61":26,"62":27,"71":[1,68],"74":[1,43],"78":[1,28],"82":225,"83":[1,55],"84":[1,56],"85":[1,54],"90":145,"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],"26":[2,122],"52":[2,122],"81":[2,122],"86":[2,122]},{"1":[2,107],"6":[2,107],"25":[2,107],"26":[2,107],"37":[2,107],"40":[2,107],"47":[2,107],"52":[2,107],"55":[2,107],"63":[2,107],"64":[2,107],"65":[2,107],"67":[2,107],"68":[2,107],"69":[2,107],"70":[2,107],"73":[2,107],"75":[2,107],"79":[2,107],"80":[2,107],"81":[2,107],"86":[2,107],"88":[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],"128":[2,107],"129":[2,107],"130":[2,107],"131":[2,107],"132":[2,107],"133":[2,107],"134":[2,107],"135":[2,107],"136":[2,107]},{"5":226,"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":227,"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,132],"6":[2,132],"25":[2,132],"26":[2,132],"47":[2,132],"52":[2,132],"55":[2,132],"68":[2,132],"73":[2,132],"81":[2,132],"86":[2,132],"88":[2,132],"98":[2,132],"99":86,"100":[1,63],"101":[1,228],"102":[1,64],"105":87,"106":[1,66],"107":67,"114":[2,132],"123":[2,132],"124":[2,132],"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],"68":[2,134],"73":[2,134],"81":[2,134],"86":[2,134],"88":[2,134],"98":[2,134],"99":86,"100":[1,63],"101":[1,229],"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,140],"6":[2,140],"25":[2,140],"26":[2,140],"47":[2,140],"52":[2,140],"55":[2,140],"68":[2,140],"73":[2,140],"81":[2,140],"86":[2,140],"88":[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,141],"6":[2,141],"25":[2,141],"26":[2,141],"47":[2,141],"52":[2,141],"55":[2,141],"68":[2,141],"73":[2,141],"81":[2,141],"86":[2,141],"88":[2,141],"98":[2,141],"99":86,"100":[1,63],"101":[2,141],"102":[1,64],"105":87,"106":[1,66],"107":67,"114":[2,141],"123":[2,141],"124":[2,141],"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,145],"6":[2,145],"25":[2,145],"26":[2,145],"47":[2,145],"52":[2,145],"55":[2,145],"68":[2,145],"73":[2,145],"81":[2,145],"86":[2,145],"88":[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]},{"112":[2,147],"113":[2,147]},{"27":159,"28":[1,71],"56":160,"57":161,"71":[1,68],"85":[1,115],"109":230,"111":158},{"52":[1,231],"112":[2,152],"113":[2,152]},{"52":[2,149],"112":[2,149],"113":[2,149]},{"52":[2,150],"112":[2,150],"113":[2,150]},{"52":[2,151],"112":[2,151],"113":[2,151]},{"1":[2,146],"6":[2,146],"25":[2,146],"26":[2,146],"47":[2,146],"52":[2,146],"55":[2,146],"68":[2,146],"73":[2,146],"81":[2,146],"86":[2,146],"88":[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]},{"8":232,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":233,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":234,"52":[1,235],"73":[2,50]},{"6":[2,85],"25":[2,85],"26":[2,85],"52":[2,85],"73":[2,85]},{"6":[2,35],"25":[2,35],"26":[2,35],"40":[1,236],"52":[2,35],"73":[2,35]},{"6":[2,38],"25":[2,38],"26":[2,38],"52":[2,38],"73":[2,38]},{"6":[2,39],"25":[2,39],"26":[2,39],"40":[2,39],"52":[2,39],"73":[2,39]},{"6":[2,40],"25":[2,40],"26":[2,40],"40":[2,40],"52":[2,40],"73":[2,40]},{"6":[2,41],"25":[2,41],"26":[2,41],"40":[2,41],"52":[2,41],"73":[2,41]},{"6":[2,42],"25":[2,42],"26":[2,42],"40":[2,42],"52":[2,42],"73":[2,42]},{"1":[2,5],"6":[2,5],"26":[2,5]},{"1":[2,24],"6":[2,24],"25":[2,24],"26":[2,24],"47":[2,24],"52":[2,24],"55":[2,24],"68":[2,24],"73":[2,24],"81":[2,24],"86":[2,24],"88":[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,186],"6":[2,186],"25":[2,186],"26":[2,186],"47":[2,186],"52":[2,186],"55":[2,186],"68":[2,186],"73":[2,186],"81":[2,186],"86":[2,186],"88":[2,186],"98":[2,186],"99":86,"100":[2,186],"101":[2,186],"102":[2,186],"105":87,"106":[2,186],"107":67,"114":[2,186],"123":[2,186],"124":[2,186],"126":[2,186],"127":[2,186],"130":[1,76],"131":[1,79],"132":[2,186],"133":[2,186],"134":[2,186],"135":[2,186]},{"1":[2,187],"6":[2,187],"25":[2,187],"26":[2,187],"47":[2,187],"52":[2,187],"55":[2,187],"68":[2,187],"73":[2,187],"81":[2,187],"86":[2,187],"88":[2,187],"98":[2,187],"99":86,"100":[2,187],"101":[2,187],"102":[2,187],"105":87,"106":[2,187],"107":67,"114":[2,187],"123":[2,187],"124":[2,187],"126":[2,187],"127":[2,187],"130":[1,76],"131":[1,79],"132":[2,187],"133":[2,187],"134":[2,187],"135":[2,187]},{"1":[2,188],"6":[2,188],"25":[2,188],"26":[2,188],"47":[2,188],"52":[2,188],"55":[2,188],"68":[2,188],"73":[2,188],"81":[2,188],"86":[2,188],"88":[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":[2,188],"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],"68":[2,189],"73":[2,189],"81":[2,189],"86":[2,189],"88":[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":[1,78],"127":[1,77],"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],"68":[2,190],"73":[2,190],"81":[2,190],"86":[2,190],"88":[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":[1,78],"127":[1,77],"130":[1,76],"131":[1,79],"132":[1,80],"133":[2,190],"134":[2,190],"135":[1,83]},{"1":[2,191],"6":[2,191],"25":[2,191],"26":[2,191],"47":[2,191],"52":[2,191],"55":[2,191],"68":[2,191],"73":[2,191],"81":[2,191],"86":[2,191],"88":[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":[1,80],"133":[1,81],"134":[2,191],"135":[1,83]},{"1":[2,192],"6":[2,192],"25":[2,192],"26":[2,192],"47":[2,192],"52":[2,192],"55":[2,192],"68":[2,192],"73":[2,192],"81":[2,192],"86":[2,192],"88":[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":[2,192]},{"1":[2,175],"6":[2,175],"25":[2,175],"26":[2,175],"47":[2,175],"52":[2,175],"55":[2,175],"68":[2,175],"73":[2,175],"81":[2,175],"86":[2,175],"88":[2,175],"98":[2,175],"99":86,"100":[1,63],"101":[2,175],"102":[1,64],"105":87,"106":[1,66],"107":67,"114":[2,175],"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,177],"6":[2,177],"25":[2,177],"26":[2,177],"47":[2,177],"52":[2,177],"55":[2,177],"68":[2,177],"73":[2,177],"81":[2,177],"86":[2,177],"88":[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,174],"6":[2,174],"25":[2,174],"26":[2,174],"47":[2,174],"52":[2,174],"55":[2,174],"68":[2,174],"73":[2,174],"81":[2,174],"86":[2,174],"88":[2,174],"98":[2,174],"99":86,"100":[1,63],"101":[2,174],"102":[1,64],"105":87,"106":[1,66],"107":67,"114":[2,174],"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],"68":[2,176],"73":[2,176],"81":[2,176],"86":[2,176],"88":[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,97],"6":[2,97],"25":[2,97],"26":[2,97],"47":[2,97],"52":[2,97],"55":[2,97],"63":[2,97],"64":[2,97],"65":[2,97],"67":[2,97],"68":[2,97],"69":[2,97],"70":[2,97],"73":[2,97],"79":[2,97],"80":[2,97],"81":[2,97],"86":[2,97],"88":[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,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],"67":[2,75],"68":[2,75],"69":[2,75],"70":[2,75],"73":[2,75],"75":[2,75],"79":[2,75],"80":[2,75],"81":[2,75],"86":[2,75],"88":[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],"67":[2,76],"68":[2,76],"69":[2,76],"70":[2,76],"73":[2,76],"75":[2,76],"79":[2,76],"80":[2,76],"81":[2,76],"86":[2,76],"88":[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],"67":[2,77],"68":[2,77],"69":[2,77],"70":[2,77],"73":[2,77],"75":[2,77],"79":[2,77],"80":[2,77],"81":[2,77],"86":[2,77],"88":[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]},{"68":[1,237],"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,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],"67":[2,81],"68":[2,81],"69":[2,81],"70":[2,81],"73":[2,81],"75":[2,81],"79":[2,81],"80":[2,81],"81":[2,81],"86":[2,81],"88":[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]},{"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],"67":[2,82],"68":[2,82],"69":[2,82],"70":[2,82],"73":[2,82],"75":[2,82],"79":[2,82],"80":[2,82],"81":[2,82],"86":[2,82],"88":[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]},{"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],"67":[2,98],"68":[2,98],"69":[2,98],"70":[2,98],"73":[2,98],"79":[2,98],"80":[2,98],"81":[2,98],"86":[2,98],"88":[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,33],"6":[2,33],"25":[2,33],"26":[2,33],"47":[2,33],"52":[2,33],"55":[2,33],"68":[2,33],"73":[2,33],"81":[2,33],"86":[2,33],"88":[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":238,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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,103],"6":[2,103],"25":[2,103],"26":[2,103],"47":[2,103],"52":[2,103],"55":[2,103],"63":[2,103],"64":[2,103],"65":[2,103],"67":[2,103],"68":[2,103],"69":[2,103],"70":[2,103],"73":[2,103],"79":[2,103],"80":[2,103],"81":[2,103],"86":[2,103],"88":[2,103],"98":[2,103],"100":[2,103],"101":[2,103],"102":[2,103],"106":[2,103],"114":[2,103],"123":[2,103],"124":[2,103],"126":[2,103],"127":[2,103],"130":[2,103],"131":[2,103],"132":[2,103],"133":[2,103],"134":[2,103],"135":[2,103]},{"6":[2,50],"25":[2,50],"51":239,"52":[1,224],"81":[2,50]},{"6":[2,121],"25":[2,121],"26":[2,121],"52":[2,121],"55":[1,240],"81":[2,121],"86":[2,121],"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":241,"49":[1,57],"50":[1,58]},{"27":110,"28":[1,71],"42":111,"53":242,"54":109,"56":112,"57":113,"71":[1,68],"84":[1,114],"85":[1,115]},{"47":[2,56],"52":[2,56]},{"8":243,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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,193],"6":[2,193],"25":[2,193],"26":[2,193],"47":[2,193],"52":[2,193],"55":[2,193],"68":[2,193],"73":[2,193],"81":[2,193],"86":[2,193],"88":[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":[1,82],"135":[1,83]},{"8":244,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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],"68":[2,195],"73":[2,195],"81":[2,195],"86":[2,195],"88":[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":245,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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,172],"6":[2,172],"25":[2,172],"26":[2,172],"47":[2,172],"52":[2,172],"55":[2,172],"68":[2,172],"73":[2,172],"81":[2,172],"86":[2,172],"88":[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]},{"1":[2,126],"6":[2,126],"25":[2,126],"26":[2,126],"47":[2,126],"52":[2,126],"55":[2,126],"68":[2,126],"73":[2,126],"81":[2,126],"86":[2,126],"88":[2,126],"94":[1,246],"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]},{"5":247,"25":[1,5]},{"27":248,"28":[1,71]},{"116":249,"118":213,"119":[1,214]},{"26":[1,250],"117":[1,251],"118":252,"119":[1,214]},{"26":[2,165],"117":[2,165],"119":[2,165]},{"8":254,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[1,54],"91":253,"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,91],"5":255,"6":[2,91],"25":[1,5],"26":[2,91],"47":[2,91],"52":[2,91],"55":[2,91],"60":93,"63":[1,95],"64":[1,96],"65":[1,97],"66":98,"67":[1,99],"68":[2,91],"69":[1,100],"70":[1,101],"73":[2,91],"76":92,"79":[1,94],"80":[2,101],"81":[2,91],"86":[2,91],"88":[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]},{"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],"67":[2,67],"68":[2,67],"69":[2,67],"70":[2,67],"73":[2,67],"79":[2,67],"80":[2,67],"81":[2,67],"86":[2,67],"88":[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,94],"6":[2,94],"25":[2,94],"26":[2,94],"47":[2,94],"52":[2,94],"55":[2,94],"68":[2,94],"73":[2,94],"81":[2,94],"86":[2,94],"88":[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]},{"14":256,"15":123,"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":124,"41":25,"42":60,"56":47,"57":48,"59":216,"61":26,"62":27,"71":[1,68],"78":[1,28],"83":[1,55],"84":[1,56],"85":[1,54],"97":[1,53]},{"1":[2,131],"6":[2,131],"25":[2,131],"26":[2,131],"40":[2,131],"47":[2,131],"52":[2,131],"55":[2,131],"63":[2,131],"64":[2,131],"65":[2,131],"67":[2,131],"68":[2,131],"69":[2,131],"70":[2,131],"73":[2,131],"79":[2,131],"80":[2,131],"81":[2,131],"86":[2,131],"88":[2,131],"98":[2,131],"100":[2,131],"101":[2,131],"102":[2,131],"106":[2,131],"114":[2,131],"123":[2,131],"124":[2,131],"126":[2,131],"127":[2,131],"130":[2,131],"131":[2,131],"132":[2,131],"133":[2,131],"134":[2,131],"135":[2,131]},{"8":257,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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,111],"25":[2,62],"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],"52":[2,62],"71":[2,111],"74":[2,111],"78":[2,111],"83":[2,111],"84":[2,111],"85":[2,111],"86":[2,62],"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,110],"28":[2,110],"30":[2,110],"31":[2,110],"33":[2,110],"34":[2,110],"35":[2,110],"43":[2,110],"44":[2,110],"45":[2,110],"49":[2,110],"50":[2,110],"71":[2,110],"74":[2,110],"78":[2,110],"83":[2,110],"84":[2,110],"85":[2,110],"92":[2,110],"96":[2,110],"97":[2,110],"100":[2,110],"102":[2,110],"104":[2,110],"106":[2,110],"115":[2,110],"121":[2,110],"122":[2,110],"125":[2,110],"126":[2,110],"127":[2,110],"128":[2,110],"129":[2,110]},{"6":[1,259],"25":[1,260],"86":[1,258]},{"6":[2,51],"8":198,"9":118,"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":147,"59":36,"61":26,"62":27,"71":[1,68],"74":[1,43],"78":[1,28],"81":[2,51],"83":[1,55],"84":[1,56],"85":[1,54],"86":[2,51],"90":261,"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":262,"52":[1,224]},{"1":[2,169],"6":[2,169],"25":[2,169],"26":[2,169],"47":[2,169],"52":[2,169],"55":[2,169],"68":[2,169],"73":[2,169],"81":[2,169],"86":[2,169],"88":[2,169],"98":[2,169],"100":[2,169],"101":[2,169],"102":[2,169],"106":[2,169],"114":[2,169],"117":[2,169],"123":[2,169],"124":[2,169],"126":[2,169],"127":[2,169],"130":[2,169],"131":[2,169],"132":[2,169],"133":[2,169],"134":[2,169],"135":[2,169]},{"1":[2,170],"6":[2,170],"25":[2,170],"26":[2,170],"47":[2,170],"52":[2,170],"55":[2,170],"68":[2,170],"73":[2,170],"81":[2,170],"86":[2,170],"88":[2,170],"98":[2,170],"100":[2,170],"101":[2,170],"102":[2,170],"106":[2,170],"114":[2,170],"117":[2,170],"123":[2,170],"124":[2,170],"126":[2,170],"127":[2,170],"130":[2,170],"131":[2,170],"132":[2,170],"133":[2,170],"134":[2,170],"135":[2,170]},{"8":263,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":264,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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,148],"113":[2,148]},{"27":159,"28":[1,71],"56":160,"57":161,"71":[1,68],"85":[1,115],"111":265},{"1":[2,154],"6":[2,154],"25":[2,154],"26":[2,154],"47":[2,154],"52":[2,154],"55":[2,154],"68":[2,154],"73":[2,154],"81":[2,154],"86":[2,154],"88":[2,154],"98":[2,154],"99":86,"100":[2,154],"101":[1,266],"102":[2,154],"105":87,"106":[2,154],"107":67,"114":[1,267],"123":[2,154],"124":[2,154],"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,155],"6":[2,155],"25":[2,155],"26":[2,155],"47":[2,155],"52":[2,155],"55":[2,155],"68":[2,155],"73":[2,155],"81":[2,155],"86":[2,155],"88":[2,155],"98":[2,155],"99":86,"100":[2,155],"101":[1,268],"102":[2,155],"105":87,"106":[2,155],"107":67,"114":[2,155],"123":[2,155],"124":[2,155],"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,270],"25":[1,271],"73":[1,269]},{"6":[2,51],"12":168,"25":[2,51],"26":[2,51],"27":169,"28":[1,71],"29":170,"30":[1,69],"31":[1,70],"38":272,"39":167,"41":171,"42":172,"44":[1,46],"73":[2,51],"84":[1,114],"97":[1,53]},{"8":273,"9":118,"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,274],"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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,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],"67":[2,80],"68":[2,80],"69":[2,80],"70":[2,80],"73":[2,80],"75":[2,80],"79":[2,80],"80":[2,80],"81":[2,80],"86":[2,80],"88":[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]},{"26":[1,275],"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,259],"25":[1,260],"81":[1,276]},{"6":[2,62],"25":[2,62],"26":[2,62],"52":[2,62],"81":[2,62],"86":[2,62]},{"5":277,"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,278],"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":279,"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":280,"25":[1,5]},{"1":[2,127],"6":[2,127],"25":[2,127],"26":[2,127],"47":[2,127],"52":[2,127],"55":[2,127],"68":[2,127],"73":[2,127],"81":[2,127],"86":[2,127],"88":[2,127],"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":281,"25":[1,5]},{"26":[1,282],"117":[1,283],"118":252,"119":[1,214]},{"1":[2,163],"6":[2,163],"25":[2,163],"26":[2,163],"47":[2,163],"52":[2,163],"55":[2,163],"68":[2,163],"73":[2,163],"81":[2,163],"86":[2,163],"88":[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":284,"25":[1,5]},{"26":[2,166],"117":[2,166],"119":[2,166]},{"5":285,"25":[1,5],"52":[1,286]},{"25":[2,123],"52":[2,123],"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,92],"6":[2,92],"25":[2,92],"26":[2,92],"47":[2,92],"52":[2,92],"55":[2,92],"68":[2,92],"73":[2,92],"81":[2,92],"86":[2,92],"88":[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,95],"5":287,"6":[2,95],"25":[1,5],"26":[2,95],"47":[2,95],"52":[2,95],"55":[2,95],"60":93,"63":[1,95],"64":[1,96],"65":[1,97],"66":98,"67":[1,99],"68":[2,95],"69":[1,100],"70":[1,101],"73":[2,95],"76":92,"79":[1,94],"80":[2,101],"81":[2,95],"86":[2,95],"88":[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]},{"86":[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]},{"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],"67":[2,109],"68":[2,109],"69":[2,109],"70":[2,109],"73":[2,109],"79":[2,109],"80":[2,109],"81":[2,109],"86":[2,109],"88":[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]},{"8":198,"9":118,"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":147,"59":36,"61":26,"62":27,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[1,54],"90":289,"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":198,"9":118,"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,146],"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":147,"59":36,"61":26,"62":27,"71":[1,68],"74":[1,43],"78":[1,28],"82":290,"83":[1,55],"84":[1,56],"85":[1,54],"90":145,"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,117],"25":[2,117],"26":[2,117],"52":[2,117],"81":[2,117],"86":[2,117]},{"6":[1,259],"25":[1,260],"26":[1,291]},{"1":[2,133],"6":[2,133],"25":[2,133],"26":[2,133],"47":[2,133],"52":[2,133],"55":[2,133],"68":[2,133],"73":[2,133],"81":[2,133],"86":[2,133],"88":[2,133],"98":[2,133],"99":86,"100":[1,63],"101":[2,133],"102":[1,64],"105":87,"106":[1,66],"107":67,"114":[2,133],"123":[2,133],"124":[2,133],"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,135],"6":[2,135],"25":[2,135],"26":[2,135],"47":[2,135],"52":[2,135],"55":[2,135],"68":[2,135],"73":[2,135],"81":[2,135],"86":[2,135],"88":[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]},{"112":[2,153],"113":[2,153]},{"8":292,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":293,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":294,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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],"67":[2,83],"68":[2,83],"69":[2,83],"70":[2,83],"73":[2,83],"79":[2,83],"80":[2,83],"81":[2,83],"86":[2,83],"88":[2,83],"98":[2,83],"100":[2,83],"101":[2,83],"102":[2,83],"106":[2,83],"112":[2,83],"113":[2,83],"114":[2,83],"123":[2,83],"124":[2,83],"126":[2,83],"127":[2,83],"130":[2,83],"131":[2,83],"132":[2,83],"133":[2,83],"134":[2,83],"135":[2,83]},{"12":168,"27":169,"28":[1,71],"29":170,"30":[1,69],"31":[1,70],"38":295,"39":167,"41":171,"42":172,"44":[1,46],"84":[1,114],"97":[1,53]},{"6":[2,84],"12":168,"25":[2,84],"26":[2,84],"27":169,"28":[1,71],"29":170,"30":[1,69],"31":[1,70],"38":166,"39":167,"41":171,"42":172,"44":[1,46],"52":[2,84],"72":296,"84":[1,114],"97":[1,53]},{"6":[2,86],"25":[2,86],"26":[2,86],"52":[2,86],"73":[2,86]},{"6":[2,36],"25":[2,36],"26":[2,36],"52":[2,36],"73":[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":297,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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,34],"6":[2,34],"25":[2,34],"26":[2,34],"47":[2,34],"52":[2,34],"55":[2,34],"68":[2,34],"73":[2,34],"81":[2,34],"86":[2,34],"88":[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,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],"67":[2,104],"68":[2,104],"69":[2,104],"70":[2,104],"73":[2,104],"79":[2,104],"80":[2,104],"81":[2,104],"86":[2,104],"88":[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]},{"1":[2,46],"6":[2,46],"25":[2,46],"26":[2,46],"47":[2,46],"52":[2,46],"55":[2,46],"68":[2,46],"73":[2,46],"81":[2,46],"86":[2,46],"88":[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,194],"6":[2,194],"25":[2,194],"26":[2,194],"47":[2,194],"52":[2,194],"55":[2,194],"68":[2,194],"73":[2,194],"81":[2,194],"86":[2,194],"88":[2,194],"98":[2,194],"100":[2,194],"101":[2,194],"102":[2,194],"106":[2,194],"114":[2,194],"123":[2,194],"124":[2,194],"126":[2,194],"127":[2,194],"130":[2,194],"131":[2,194],"132":[2,194],"133":[2,194],"134":[2,194],"135":[2,194]},{"1":[2,171],"6":[2,171],"25":[2,171],"26":[2,171],"47":[2,171],"52":[2,171],"55":[2,171],"68":[2,171],"73":[2,171],"81":[2,171],"86":[2,171],"88":[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,128],"6":[2,128],"25":[2,128],"26":[2,128],"47":[2,128],"52":[2,128],"55":[2,128],"68":[2,128],"73":[2,128],"81":[2,128],"86":[2,128],"88":[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]},{"1":[2,129],"6":[2,129],"25":[2,129],"26":[2,129],"47":[2,129],"52":[2,129],"55":[2,129],"68":[2,129],"73":[2,129],"81":[2,129],"86":[2,129],"88":[2,129],"94":[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,161],"6":[2,161],"25":[2,161],"26":[2,161],"47":[2,161],"52":[2,161],"55":[2,161],"68":[2,161],"73":[2,161],"81":[2,161],"86":[2,161],"88":[2,161],"98":[2,161],"100":[2,161],"101":[2,161],"102":[2,161],"106":[2,161],"114":[2,161],"123":[2,161],"124":[2,161],"126":[2,161],"127":[2,161],"130":[2,161],"131":[2,161],"132":[2,161],"133":[2,161],"134":[2,161],"135":[2,161]},{"5":298,"25":[1,5]},{"26":[1,299]},{"6":[1,300],"26":[2,167],"117":[2,167],"119":[2,167]},{"8":301,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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,96],"6":[2,96],"25":[2,96],"26":[2,96],"47":[2,96],"52":[2,96],"55":[2,96],"68":[2,96],"73":[2,96],"81":[2,96],"86":[2,96],"88":[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]},{"1":[2,112],"6":[2,112],"25":[2,112],"26":[2,112],"47":[2,112],"52":[2,112],"55":[2,112],"63":[2,112],"64":[2,112],"65":[2,112],"67":[2,112],"68":[2,112],"69":[2,112],"70":[2,112],"73":[2,112],"79":[2,112],"80":[2,112],"81":[2,112],"86":[2,112],"88":[2,112],"98":[2,112],"100":[2,112],"101":[2,112],"102":[2,112],"106":[2,112],"114":[2,112],"123":[2,112],"124":[2,112],"126":[2,112],"127":[2,112],"130":[2,112],"131":[2,112],"132":[2,112],"133":[2,112],"134":[2,112],"135":[2,112]},{"6":[2,118],"25":[2,118],"26":[2,118],"52":[2,118],"81":[2,118],"86":[2,118]},{"6":[2,50],"25":[2,50],"26":[2,50],"51":302,"52":[1,224]},{"6":[2,119],"25":[2,119],"26":[2,119],"52":[2,119],"81":[2,119],"86":[2,119]},{"1":[2,156],"6":[2,156],"25":[2,156],"26":[2,156],"47":[2,156],"52":[2,156],"55":[2,156],"68":[2,156],"73":[2,156],"81":[2,156],"86":[2,156],"88":[2,156],"98":[2,156],"99":86,"100":[2,156],"101":[2,156],"102":[2,156],"105":87,"106":[2,156],"107":67,"114":[1,303],"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,158],"6":[2,158],"25":[2,158],"26":[2,158],"47":[2,158],"52":[2,158],"55":[2,158],"68":[2,158],"73":[2,158],"81":[2,158],"86":[2,158],"88":[2,158],"98":[2,158],"99":86,"100":[2,158],"101":[1,304],"102":[2,158],"105":87,"106":[2,158],"107":67,"114":[2,158],"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,157],"6":[2,157],"25":[2,157],"26":[2,157],"47":[2,157],"52":[2,157],"55":[2,157],"68":[2,157],"73":[2,157],"81":[2,157],"86":[2,157],"88":[2,157],"98":[2,157],"99":86,"100":[2,157],"101":[2,157],"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":[2,87],"25":[2,87],"26":[2,87],"52":[2,87],"73":[2,87]},{"6":[2,50],"25":[2,50],"26":[2,50],"51":305,"52":[1,235]},{"26":[1,306],"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,307]},{"1":[2,164],"6":[2,164],"25":[2,164],"26":[2,164],"47":[2,164],"52":[2,164],"55":[2,164],"68":[2,164],"73":[2,164],"81":[2,164],"86":[2,164],"88":[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]},{"26":[2,168],"117":[2,168],"119":[2,168]},{"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]},{"6":[1,259],"25":[1,260],"26":[1,308]},{"8":309,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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":310,"9":118,"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,"71":[1,68],"74":[1,43],"78":[1,28],"83":[1,55],"84":[1,56],"85":[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,270],"25":[1,271],"26":[1,311]},{"6":[2,37],"25":[2,37],"26":[2,37],"52":[2,37],"73":[2,37]},{"1":[2,162],"6":[2,162],"25":[2,162],"26":[2,162],"47":[2,162],"52":[2,162],"55":[2,162],"68":[2,162],"73":[2,162],"81":[2,162],"86":[2,162],"88":[2,162],"98":[2,162],"100":[2,162],"101":[2,162],"102":[2,162],"106":[2,162],"114":[2,162],"123":[2,162],"124":[2,162],"126":[2,162],"127":[2,162],"130":[2,162],"131":[2,162],"132":[2,162],"133":[2,162],"134":[2,162],"135":[2,162]},{"6":[2,120],"25":[2,120],"26":[2,120],"52":[2,120],"81":[2,120],"86":[2,120]},{"1":[2,159],"6":[2,159],"25":[2,159],"26":[2,159],"47":[2,159],"52":[2,159],"55":[2,159],"68":[2,159],"73":[2,159],"81":[2,159],"86":[2,159],"88":[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]},{"1":[2,160],"6":[2,160],"25":[2,160],"26":[2,160],"47":[2,160],"52":[2,160],"55":[2,160],"68":[2,160],"73":[2,160],"81":[2,160],"86":[2,160],"88":[2,160],"98":[2,160],"99":86,"100":[2,160],"101":[2,160],"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]},{"6":[2,88],"25":[2,88],"26":[2,88],"52":[2,88],"73":[2,88]}], ++defaultActions: {"57":[2,48],"58":[2,49],"73":[2,3],"94":[2,102]}, + parseError: function parseError(str, hash) { + throw new Error(str); + }, +diff --git a/src/coffee-script.coffee b/src/coffee-script.coffee +index 1082e3e..7464585 100755 +--- a/src/coffee-script.coffee ++++ b/src/coffee-script.coffee +@@ -43,7 +43,7 @@ exports.tokens = (code, options) -> + # or traverse it by using `.traverse()` with a callback. + exports.nodes = (source, options) -> + if typeof source is 'string' +- parser.parse lexer.tokenize code, options ++ parser.parse lexer.tokenize source, options + else + parser.parse source + +diff --git a/src/grammar.coffee b/src/grammar.coffee +index 1d55d68..d987e16 100644 +--- a/src/grammar.coffee ++++ b/src/grammar.coffee +@@ -233,6 +233,7 @@ grammar = + o 'Assignable' + o 'Literal', -> new Value $1 + o 'Parenthetical', -> new Value $1 ++ o 'Range', -> new Value $1 + o 'This' + ] + +@@ -320,6 +321,24 @@ grammar = + o '[ ArgList OptComma ]', -> new Arr $2 + ] + ++ # 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. +@@ -397,49 +416,48 @@ grammar = + # 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 ++ 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] + ] + +- # 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 ++ ForBody: [ ++ o 'FOR Range', -> source: new Value($2), vars: [] ++ o 'ForStart ForSource', -> $2.raw = $1.raw; $2.vars = $1; $2 + ] + +- 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 ++ ForStart: [ ++ o 'FOR ForVariables', -> $2 ++ o 'FOR ALL ForVariables', -> $3.raw = yes; $3 + ] + +- ForOf: [ +- o 'FOROF Expression', -> object: on, source: $2 +- o 'FOROF Expression WHEN Expression', -> object: on, source: $2, guard: $4 ++ # 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 + ] + +- 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 ++ # 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 ++ 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: [ +@@ -545,7 +563,7 @@ operators = [ + ['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'] + ] +diff --git a/src/lexer.coffee b/src/lexer.coffee +index c04d199..c742502 100644 +--- a/src/lexer.coffee ++++ b/src/lexer.coffee +@@ -41,7 +41,6 @@ exports.Lexer = class Lexer + @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, + # short-circuiting if any of them succeed. Their order determines precedence: +@@ -79,15 +78,6 @@ exports.Lexer = class Lexer + 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' +@@ -552,7 +542,7 @@ OPERATOR = /// ^ ( + | ([-+:])\1 # doubles + | ([&|<>])\2=? # logic / shift + | \?\. # soak access +- | \.{3} # splat ++ | \.{2,3} # range or splat + ) /// + + WHITESPACE = /^[^\n\S]+/ +diff --git a/src/nodes.coffee b/src/nodes.coffee +index 9fd4405..fe3a0be 100644 +--- a/src/nodes.coffee ++++ b/src/nodes.coffee +@@ -186,9 +186,12 @@ exports.Expressions = class Expressions extends Base + # 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. +@@ -342,6 +345,9 @@ exports.Value = class Value extends Base + 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() + +@@ -559,6 +565,95 @@ exports.Index = class Index extends Base + isComplex: -> + @index.isComplex() + ++#### Range ++ ++# 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. ++exports.Range = class Range extends Base ++ ++ children: ['from', 'to'] ++ ++ constructor: (@from, @to, tag) -> ++ @exclusive = tag is 'exclusive' ++ @equals = if @exclusive then '' else '=' ++ ++ # 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. ++ 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 ++ ++ # When compiled normally, the range returns the contents of the *for loop* ++ # needed to iterate over the values in the range. Used by comprehensions. ++ 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}" ++ ++ # Compile a simple range comprehension, with integers. ++ 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}--"}" ++ ++ # When used as a value, expand the range into the equivalent array. ++ # 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)" ++ ++#### Slice ++ ++# 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. ++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})" ++ + #### Obj + + # An object literal, nothing fancy. +@@ -866,6 +961,25 @@ exports.Assign = class Assign extends Base + [left, rite] = @variable.cacheReference o + new Op(@context.slice(0, -1), left, new Assign(rite, @value, '=')).compile o + ++ # Compile the assignment from an array splice literal, using JavaScript's ++ # `Array#splice` method. ++ 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})" ++ ++ # 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. ++ compileConditional: (o) -> ++ [left, rite] = @variable.cacheReference o ++ return new Op(@context.slice(0, -1), left, new Assign(rite, @value)).compile o ++ + #### Code + + # A function definition. This is the only node that creates a new Scope. +@@ -1280,15 +1394,19 @@ exports.Parens = class Parens extends Base + # the current index of the loop as a second parameter. Unlike Ruby blocks, + # you can map and filter in a single pass. + 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 + +@@ -1298,91 +1416,60 @@ exports.For = class For extends Base + + containsPureStatement: While::containsPureStatement + +- compileReturnValue: (val, o) -> +- return '\n' + new Return(new Literal val).compile o if @returns +- return '\n' + val if val +- '' +- + # 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. + 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 +- 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}--" ++ 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 ++ scope.find(name, immediate: yes) if name and not @pattern ++ scope.find(index, immediate: yes) if index ++ rvar = scope.freeVariable 'results' if @returns ++ ivar = (if @range then name else index) or scope.freeVariable 'i' ++ varPart = '' ++ guardPart = '' ++ unstepPart = '' ++ body = Expressions.wrap [@body] ++ 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) ++ sourcePart = "#{@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 ++ resultPart = "#{@tab}#{rvar} = [];\n" ++ returnResult = '\n' + (new Return(new Literal(rvar)).compile o, LEVEL_PAREN) ++ body = Push.wrap rvar, body if @returns ++ if @guard ++ body = Expressions.wrap [new If @guard, body] ++ varPart = "#{idt1}#{namePart};\n" if namePart ++ if forPart and name is ivar ++ unstepPart = if @step then "#{name} -= #{ @step.compile(o) };" else "#{name}--;" ++ unstepPart = "\n#{@tab}" + unstepPart + 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 ++ body = body.compile merge o, indent: idt1, top: true ++ vars = if @range then name else "#{name}, #{ivar}" ++ """ ++ #{sourcePart or ''}#{resultPart or ''}#{@tab}for (#{forPart}) {#{guardPart} ++ #{varPart}#{body} ++ #{@tab}}#{unstepPart}#{returnResult or ''} ++ """ + + pluckDirectCall: (o, body, name, index) -> + defs = '' +@@ -1526,8 +1613,7 @@ exports.If = class If extends Base + 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()] ++ exps.push new Call new Value(new Literal(name), [new Accessor new Literal 'push']), [exps.pop()] + + #### Closure + +-- +2.9.3 + diff --git a/gnu/packages/patches/coffeescript-backport-static-value-syntax.patch b/gnu/packages/patches/coffeescript-backport-static-value-syntax.patch new file mode 100644 index 000000000..bce6a8988 --- /dev/null +++ b/gnu/packages/patches/coffeescript-backport-static-value-syntax.patch @@ -0,0 +1,74 @@ +From afbb21937455a87f46d33ebca44ddc5ee68a5683 Mon Sep 17 00:00:00 2001 +From: Jelle Licht +Date: Sun, 21 Aug 2016 08:42:28 +0200 +Subject: [PATCH] [BACKPORT] adding back '@static: value' syntax for classes +To: guix-devel@gnu.org + +--- + lib/parser.js | 6 +++--- + src/grammar.coffee | 2 +- + src/nodes.coffee | 3 ++- + 3 files changed, 6 insertions(+), 5 deletions(-) + +diff --git a/lib/parser.js b/lib/parser.js +index 6fad8a5..5b5f6de 100755 +--- a/lib/parser.js ++++ b/lib/parser.js +@@ -2,9 +2,9 @@ + var parser = (function(){ + var parser = {trace: function trace() { }, + yy: {}, +-symbols_: {"error":2,"Root":3,"TERMINATOR":4,"Body":5,"Block":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"Throw":11,"BREAK":12,"CONTINUE":13,"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,"OptFuncExist":77,"Arguments":78,"SUPER":79,"FUNC_EXIST":80,"CALL_START":81,"CALL_END":82,"ArgList":83,"THIS":84,"@":85,"[":86,"]":87,"Arg":88,"SimpleArgs":89,"TRY":90,"Catch":91,"FINALLY":92,"CATCH":93,"THROW":94,"(":95,")":96,"WhileSource":97,"WHILE":98,"WHEN":99,"UNTIL":100,"Loop":101,"LOOP":102,"ForBody":103,"ForValue":104,"ForIn":105,"FORIN":106,"BY":107,"ForOf":108,"FOROF":109,"ForTo":110,"TO":111,"FOR":112,"ALL":113,"FROM":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}, ++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,"Parenthetical":43,"ThisProperty":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,"OptFuncExist":77,"Arguments":78,"SUPER":79,"FUNC_EXIST":80,"CALL_START":81,"CALL_END":82,"ArgList":83,"THIS":84,"@":85,"[":86,"]":87,"Arg":88,"SimpleArgs":89,"TRY":90,"Catch":91,"FINALLY":92,"CATCH":93,"THROW":94,"(":95,")":96,"WhileSource":97,"WHILE":98,"WHEN":99,"UNTIL":100,"Loop":101,"LOOP":102,"ForBody":103,"ForValue":104,"ForIn":105,"FORIN":106,"BY":107,"ForOf":108,"FOROF":109,"ForTo":110,"TO":111,"FOR":112,"ALL":113,"FROM":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","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","79":"SUPER","80":"FUNC_EXIST","81":"CALL_START","82":"CALL_END","84":"THIS","85":"@","86":"[","87":"]","90":"TRY","92":"FINALLY","93":"CATCH","94":"THROW","95":"(","96":")","98":"WHILE","99":"WHEN","100":"UNTIL","102":"LOOP","106":"FORIN","107":"BY","109":"FOROF","111":"TO","112":"FOR","113":"ALL","114":"FROM","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,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],[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,1],[26,2],[26,3],[26,4],[26,2],[26,3],[26,4],[26,5],[17,3],[17,3],[17,1],[17,2],[77,0],[77,1],[78,2],[78,4],[63,1],[63,1],[43,2],[58,2],[58,4],[83,1],[83,3],[83,4],[83,4],[83,6],[88,1],[88,1],[89,1],[89,3],[22,2],[22,3],[22,4],[22,5],[91,3],[11,2],[44,3],[97,2],[97,4],[97,2],[97,4],[23,2],[23,2],[23,2],[23,1],[101,2],[101,2],[24,2],[24,2],[24,2],[104,1],[104,1],[104,1],[105,2],[105,4],[105,4],[105,6],[108,2],[108,4],[110,2],[110,4],[110,4],[110,6],[103,3],[103,5],[103,3],[103,5],[103,4],[103,6],[103,5],[25,5],[25,7],[25,4],[25,6],[116,1],[116,2],[118,3],[118,4],[120,3],[120,3],[120,5],[120,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]], ++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],[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],[41,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,1],[26,2],[26,3],[26,4],[26,2],[26,3],[26,4],[26,5],[17,3],[17,3],[17,1],[17,2],[77,0],[77,1],[78,2],[78,4],[63,1],[63,1],[44,2],[58,2],[58,4],[83,1],[83,3],[83,4],[83,4],[83,6],[88,1],[88,1],[89,1],[89,3],[22,2],[22,3],[22,4],[22,5],[91,3],[11,2],[43,3],[97,2],[97,4],[97,2],[97,4],[23,2],[23,2],[23,2],[23,1],[101,2],[101,2],[24,2],[24,2],[24,2],[104,1],[104,1],[104,1],[105,2],[105,4],[105,4],[105,6],[108,2],[108,4],[110,2],[110,4],[110,4],[110,6],[103,3],[103,5],[103,3],[103,5],[103,4],[103,6],[103,5],[25,5],[25,7],[25,4],[25,6],[116,1],[116,2],[118,3],[118,4],[120,3],[120,3],[120,5],[120,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 anonymous(yytext,yyleng,yylineno,yy) { + + var $$ = arguments[5],$0=arguments[5].length; +@@ -481,7 +481,7 @@ case 195:this.$ = new yy.Extends($$[$0-3+1-1], $$[$0-3+3-1]); + break; + } + }, +-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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[3]},{"1":[2,2]},{"1":[2,3],"4":[1,73]},{"4":[1,74]},{"1":[2,5],"4":[2,5],"28":[2,5]},{"5":75,"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,76],"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,8],"4":[2,8],"28":[2,8],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,9],"4":[2,9],"28":[2,9],"97":91,"98":[1,64],"100":[1,65],"103":92,"112":[1,67],"123":[1,89],"124":[1,90]},{"1":[2,16],"4":[2,16],"27":[2,16],"28":[2,16],"49":[2,16],"54":[2,16],"57":[2,16],"62":94,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"69":[2,16],"70":[1,101],"71":[1,102],"74":[2,16],"77":93,"80":[1,95],"81":[2,103],"82":[2,16],"87":[2,16],"96":[2,16],"98":[2,16],"99":[2,16],"100":[2,16],"107":[2,16],"111":[2,16],"112":[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],"4":[2,17],"27":[2,17],"28":[2,17],"49":[2,17],"54":[2,17],"57":[2,17],"62":104,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"69":[2,17],"70":[1,101],"71":[1,102],"74":[2,17],"77":103,"80":[1,95],"81":[2,103],"82":[2,17],"87":[2,17],"96":[2,17],"98":[2,17],"99":[2,17],"100":[2,17],"107":[2,17],"111":[2,17],"112":[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],"4":[2,18],"27":[2,18],"28":[2,18],"49":[2,18],"54":[2,18],"57":[2,18],"69":[2,18],"74":[2,18],"82":[2,18],"87":[2,18],"96":[2,18],"98":[2,18],"99":[2,18],"100":[2,18],"107":[2,18],"111":[2,18],"112":[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],"4":[2,19],"27":[2,19],"28":[2,19],"49":[2,19],"54":[2,19],"57":[2,19],"69":[2,19],"74":[2,19],"82":[2,19],"87":[2,19],"96":[2,19],"98":[2,19],"99":[2,19],"100":[2,19],"107":[2,19],"111":[2,19],"112":[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],"4":[2,20],"27":[2,20],"28":[2,20],"49":[2,20],"54":[2,20],"57":[2,20],"69":[2,20],"74":[2,20],"82":[2,20],"87":[2,20],"96":[2,20],"98":[2,20],"99":[2,20],"100":[2,20],"107":[2,20],"111":[2,20],"112":[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],"4":[2,21],"27":[2,21],"28":[2,21],"49":[2,21],"54":[2,21],"57":[2,21],"69":[2,21],"74":[2,21],"82":[2,21],"87":[2,21],"96":[2,21],"98":[2,21],"99":[2,21],"100":[2,21],"107":[2,21],"111":[2,21],"112":[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],"4":[2,22],"27":[2,22],"28":[2,22],"49":[2,22],"54":[2,22],"57":[2,22],"69":[2,22],"74":[2,22],"82":[2,22],"87":[2,22],"96":[2,22],"98":[2,22],"99":[2,22],"100":[2,22],"107":[2,22],"111":[2,22],"112":[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],"4":[2,23],"27":[2,23],"28":[2,23],"49":[2,23],"54":[2,23],"57":[2,23],"69":[2,23],"74":[2,23],"82":[2,23],"87":[2,23],"96":[2,23],"98":[2,23],"99":[2,23],"100":[2,23],"107":[2,23],"111":[2,23],"112":[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,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],"82":[2,24],"87":[2,24],"96":[2,24],"98":[2,24],"99":[2,24],"100":[2,24],"107":[2,24],"111":[2,24],"112":[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,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],"82":[2,25],"87":[2,25],"96":[2,25],"98":[2,25],"99":[2,25],"100":[2,25],"107":[2,25],"111":[2,25],"112":[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,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],"82":[2,26],"87":[2,26],"96":[2,26],"98":[2,26],"99":[2,26],"100":[2,26],"107":[2,26],"111":[2,26],"112":[2,26],"123":[2,26],"124":[2,26],"126":[2,26],"127":[2,26],"130":[2,26],"131":[2,26],"132":[2,26],"133":[2,26],"134":[2,26],"135":[2,26]},{"1":[2,10],"4":[2,10],"28":[2,10],"98":[2,10],"100":[2,10],"112":[2,10],"123":[2,10],"124":[2,10]},{"1":[2,11],"4":[2,11],"28":[2,11],"98":[2,11],"100":[2,11],"112":[2,11],"123":[2,11],"124":[2,11]},{"1":[2,12],"4":[2,12],"28":[2,12],"98":[2,12],"100":[2,12],"112":[2,12],"123":[2,12],"124":[2,12]},{"1":[2,13],"4":[2,13],"28":[2,13],"98":[2,13],"100":[2,13],"112":[2,13],"123":[2,13],"124":[2,13]},{"1":[2,14],"4":[2,14],"28":[2,14],"98":[2,14],"100":[2,14],"112":[2,14],"123":[2,14],"124":[2,14]},{"1":[2,15],"4":[2,15],"28":[2,15],"98":[2,15],"100":[2,15],"112":[2,15],"123":[2,15],"124":[2,15]},{"1":[2,73],"4":[2,73],"27":[2,73],"28":[2,73],"39":[1,105],"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],"80":[2,73],"81":[2,73],"82":[2,73],"87":[2,73],"96":[2,73],"98":[2,73],"99":[2,73],"100":[2,73],"107":[2,73],"111":[2,73],"112":[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],"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],"80":[2,74],"81":[2,74],"82":[2,74],"87":[2,74],"96":[2,74],"98":[2,74],"99":[2,74],"100":[2,74],"107":[2,74],"111":[2,74],"112":[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,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],"80":[2,75],"81":[2,75],"82":[2,75],"87":[2,75],"96":[2,75],"98":[2,75],"99":[2,75],"100":[2,75],"107":[2,75],"111":[2,75],"112":[2,75],"123":[2,75],"124":[2,75],"126":[2,75],"127":[2,75],"130":[2,75],"131":[2,75],"132":[2,75],"133":[2,75],"134":[2,75],"135":[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],"80":[2,76],"81":[2,76],"82":[2,76],"87":[2,76],"96":[2,76],"98":[2,76],"99":[2,76],"100":[2,76],"107":[2,76],"111":[2,76],"112":[2,76],"123":[2,76],"124":[2,76],"126":[2,76],"127":[2,76],"130":[2,76],"131":[2,76],"132":[2,76],"133":[2,76],"134":[2,76],"135":[2,76]},{"1":[2,101],"4":[2,101],"27":[2,101],"28":[2,101],"49":[2,101],"54":[2,101],"57":[2,101],"64":[2,101],"65":[2,101],"66":[2,101],"68":[2,101],"69":[2,101],"70":[2,101],"71":[2,101],"74":[2,101],"78":106,"80":[2,101],"81":[1,107],"82":[2,101],"87":[2,101],"96":[2,101],"98":[2,101],"99":[2,101],"100":[2,101],"107":[2,101],"111":[2,101],"112":[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]},{"29":111,"30":[1,72],"43":112,"48":108,"49":[2,55],"54":[2,55],"55":109,"56":110,"58":113,"59":114,"72":[1,69],"85":[1,115],"86":[1,68]},{"6":116,"27":[1,6]},{"8":117,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":119,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":120,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"16":122,"17":123,"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":124,"43":61,"44":28,"58":49,"59":50,"61":121,"63":29,"72":[1,69],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"95":[1,55]},{"16":122,"17":123,"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":124,"43":61,"44":28,"58":49,"59":50,"61":125,"63":29,"72":[1,69],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"95":[1,55]},{"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":[1,129],"80":[2,70],"81":[2,70],"82":[2,70],"87":[2,70],"96":[2,70],"98":[2,70],"99":[2,70],"100":[2,70],"107":[2,70],"111":[2,70],"112":[2,70],"123":[2,70],"124":[2,70],"126":[2,70],"127":[2,70],"128":[1,126],"129":[1,127],"130":[2,70],"131":[2,70],"132":[2,70],"133":[2,70],"134":[2,70],"135":[2,70],"136":[1,128]},{"1":[2,173],"4":[2,173],"27":[2,173],"28":[2,173],"49":[2,173],"54":[2,173],"57":[2,173],"69":[2,173],"74":[2,173],"82":[2,173],"87":[2,173],"96":[2,173],"98":[2,173],"99":[2,173],"100":[2,173],"107":[2,173],"111":[2,173],"112":[2,173],"117":[1,130],"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]},{"6":131,"27":[1,6]},{"6":132,"27":[1,6]},{"1":[2,135],"4":[2,135],"27":[2,135],"28":[2,135],"49":[2,135],"54":[2,135],"57":[2,135],"69":[2,135],"74":[2,135],"82":[2,135],"87":[2,135],"96":[2,135],"98":[2,135],"99":[2,135],"100":[2,135],"107":[2,135],"111":[2,135],"112":[2,135],"123":[2,135],"124":[2,135],"126":[2,135],"127":[2,135],"130":[2,135],"131":[2,135],"132":[2,135],"133":[2,135],"134":[2,135],"135":[2,135]},{"6":133,"27":[1,6]},{"8":134,"9":118,"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,135],"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,91],"4":[2,91],"6":136,"16":122,"17":123,"27":[1,6],"28":[2,91],"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":124,"43":61,"44":28,"49":[2,91],"54":[2,91],"57":[2,91],"58":49,"59":50,"61":138,"63":29,"69":[2,91],"72":[1,69],"74":[2,91],"76":[1,137],"79":[1,30],"82":[2,91],"84":[1,56],"85":[1,57],"86":[1,68],"87":[2,91],"95":[1,55],"96":[2,91],"98":[2,91],"99":[2,91],"100":[2,91],"107":[2,91],"111":[2,91],"112":[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]},{"1":[2,47],"4":[2,47],"8":139,"9":118,"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,47],"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[2,47],"100":[2,47],"101":42,"102":[1,66],"103":43,"112":[2,47],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"123":[2,47],"124":[2,47],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":140,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,48],"4":[2,48],"27":[2,48],"28":[2,48],"54":[2,48],"74":[2,48],"98":[2,48],"100":[2,48],"112":[2,48],"123":[2,48],"124":[2,48]},{"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],"80":[2,71],"81":[2,71],"82":[2,71],"87":[2,71],"96":[2,71],"98":[2,71],"99":[2,71],"100":[2,71],"107":[2,71],"111":[2,71],"112":[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],"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],"80":[2,72],"81":[2,72],"82":[2,72],"87":[2,72],"96":[2,72],"98":[2,72],"99":[2,72],"100":[2,72],"107":[2,72],"111":[2,72],"112":[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,32],"4":[2,32],"27":[2,32],"28":[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],"80":[2,32],"81":[2,32],"82":[2,32],"87":[2,32],"96":[2,32],"98":[2,32],"99":[2,32],"100":[2,32],"107":[2,32],"111":[2,32],"112":[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]},{"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],"80":[2,33],"81":[2,33],"82":[2,33],"87":[2,33],"96":[2,33],"98":[2,33],"99":[2,33],"100":[2,33],"107":[2,33],"111":[2,33],"112":[2,33],"123":[2,33],"124":[2,33],"126":[2,33],"127":[2,33],"130":[2,33],"131":[2,33],"132":[2,33],"133":[2,33],"134":[2,33],"135":[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],"80":[2,34],"81":[2,34],"82":[2,34],"87":[2,34],"96":[2,34],"98":[2,34],"99":[2,34],"100":[2,34],"107":[2,34],"111":[2,34],"112":[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,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],"80":[2,35],"81":[2,35],"82":[2,35],"87":[2,35],"96":[2,35],"98":[2,35],"99":[2,35],"100":[2,35],"107":[2,35],"111":[2,35],"112":[2,35],"123":[2,35],"124":[2,35],"126":[2,35],"127":[2,35],"130":[2,35],"131":[2,35],"132":[2,35],"133":[2,35],"134":[2,35],"135":[2,35]},{"8":141,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"80":[2,107],"81":[2,107],"82":[2,107],"87":[2,107],"96":[2,107],"98":[2,107],"99":[2,107],"100":[2,107],"107":[2,107],"111":[2,107],"112":[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]},{"1":[2,108],"4":[2,108],"27":[2,108],"28":[2,108],"29":142,"30":[1,72],"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],"80":[2,108],"81":[2,108],"82":[2,108],"87":[2,108],"96":[2,108],"98":[2,108],"99":[2,108],"100":[2,108],"107":[2,108],"111":[2,108],"112":[2,108],"123":[2,108],"124":[2,108],"126":[2,108],"127":[2,108],"130":[2,108],"131":[2,108],"132":[2,108],"133":[2,108],"134":[2,108],"135":[2,108]},{"27":[2,51]},{"27":[2,52]},{"1":[2,66],"4":[2,66],"27":[2,66],"28":[2,66],"39":[2,66],"49":[2,66],"54":[2,66],"57":[2,66],"64":[2,66],"65":[2,66],"66":[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],"96":[2,66],"98":[2,66],"99":[2,66],"100":[2,66],"107":[2,66],"111":[2,66],"112":[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]},{"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],"80":[2,69],"81":[2,69],"82":[2,69],"87":[2,69],"96":[2,69],"98":[2,69],"99":[2,69],"100":[2,69],"107":[2,69],"111":[2,69],"112":[2,69],"123":[2,69],"124":[2,69],"126":[2,69],"127":[2,69],"128":[2,69],"129":[2,69],"130":[2,69],"131":[2,69],"132":[2,69],"133":[2,69],"134":[2,69],"135":[2,69],"136":[2,69]},{"8":143,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":144,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":145,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":146,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"6":147,"8":148,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"29":150,"30":[1,72],"58":152,"59":153,"72":[1,69],"86":[1,68],"104":149,"113":[1,151]},{"8":158,"9":118,"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,157],"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":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"83":155,"84":[1,56],"85":[1,57],"86":[1,68],"87":[1,154],"88":156,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"4":[2,86],"15":164,"27":[2,86],"29":165,"30":[1,72],"31":166,"32":[1,70],"33":[1,71],"40":161,"41":162,"43":163,"44":167,"46":[1,48],"54":[2,86],"73":160,"74":[2,86],"85":[1,115],"95":[1,55]},{"1":[2,30],"4":[2,30],"27":[2,30],"28":[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],"80":[2,30],"81":[2,30],"82":[2,30],"87":[2,30],"96":[2,30],"98":[2,30],"99":[2,30],"100":[2,30],"107":[2,30],"111":[2,30],"112":[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],"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],"80":[2,31],"81":[2,31],"82":[2,31],"87":[2,31],"96":[2,31],"98":[2,31],"99":[2,31],"100":[2,31],"107":[2,31],"111":[2,31],"112":[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,29],"4":[2,29],"27":[2,29],"28":[2,29],"39":[2,29],"42":[2,29],"49":[2,29],"54":[2,29],"57":[2,29],"64":[2,29],"65":[2,29],"66":[2,29],"68":[2,29],"69":[2,29],"70":[2,29],"71":[2,29],"74":[2,29],"76":[2,29],"80":[2,29],"81":[2,29],"82":[2,29],"87":[2,29],"96":[2,29],"98":[2,29],"99":[2,29],"100":[2,29],"106":[2,29],"107":[2,29],"109":[2,29],"111":[2,29],"112":[2,29],"114":[2,29],"123":[2,29],"124":[2,29],"126":[2,29],"127":[2,29],"128":[2,29],"129":[2,29],"130":[2,29],"131":[2,29],"132":[2,29],"133":[2,29],"134":[2,29],"135":[2,29],"136":[2,29]},{"1":[2,7],"4":[2,7],"7":168,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,4]},{"4":[1,73],"28":[1,169]},{"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],"82":[2,28],"87":[2,28],"92":[2,28],"93":[2,28],"96":[2,28],"98":[2,28],"99":[2,28],"100":[2,28],"107":[2,28],"111":[2,28],"112":[2,28],"117":[2,28],"119":[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,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],"82":[2,185],"87":[2,185],"96":[2,185],"98":[2,185],"99":[2,185],"100":[2,185],"107":[2,185],"111":[2,185],"112":[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]},{"8":170,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":171,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":172,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":173,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":174,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":175,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":176,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":177,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":178,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,134],"4":[2,134],"27":[2,134],"28":[2,134],"49":[2,134],"54":[2,134],"57":[2,134],"69":[2,134],"74":[2,134],"82":[2,134],"87":[2,134],"96":[2,134],"98":[2,134],"99":[2,134],"100":[2,134],"107":[2,134],"111":[2,134],"112":[2,134],"123":[2,134],"124":[2,134],"126":[2,134],"127":[2,134],"130":[2,134],"131":[2,134],"132":[2,134],"133":[2,134],"134":[2,134],"135":[2,134]},{"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],"82":[2,139],"87":[2,139],"96":[2,139],"98":[2,139],"99":[2,139],"100":[2,139],"107":[2,139],"111":[2,139],"112":[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]},{"8":179,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":180,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,133],"87":[2,133],"96":[2,133],"98":[2,133],"99":[2,133],"100":[2,133],"107":[2,133],"111":[2,133],"112":[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,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],"82":[2,138],"87":[2,138],"96":[2,138],"98":[2,138],"99":[2,138],"100":[2,138],"107":[2,138],"111":[2,138],"112":[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]},{"78":181,"81":[1,107]},{"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],"80":[2,67],"81":[2,67],"82":[2,67],"87":[2,67],"96":[2,67],"98":[2,67],"99":[2,67],"100":[2,67],"107":[2,67],"111":[2,67],"112":[2,67],"123":[2,67],"124":[2,67],"126":[2,67],"127":[2,67],"128":[2,67],"129":[2,67],"130":[2,67],"131":[2,67],"132":[2,67],"133":[2,67],"134":[2,67],"135":[2,67],"136":[2,67]},{"81":[2,104]},{"29":182,"30":[1,72]},{"29":183,"30":[1,72]},{"1":[2,80],"4":[2,80],"27":[2,80],"28":[2,80],"29":184,"30":[1,72],"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],"80":[2,80],"81":[2,80],"82":[2,80],"87":[2,80],"96":[2,80],"98":[2,80],"99":[2,80],"100":[2,80],"107":[2,80],"111":[2,80],"112":[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]},{"1":[2,81],"4":[2,81],"27":[2,81],"28":[2,81],"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],"80":[2,81],"81":[2,81],"82":[2,81],"87":[2,81],"96":[2,81],"98":[2,81],"99":[2,81],"100":[2,81],"107":[2,81],"111":[2,81],"112":[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":185,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"67":186,"68":[1,100],"70":[1,101],"71":[1,102]},{"67":187,"68":[1,100],"70":[1,101],"71":[1,102]},{"78":188,"81":[1,107]},{"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],"80":[2,68],"81":[2,68],"82":[2,68],"87":[2,68],"96":[2,68],"98":[2,68],"99":[2,68],"100":[2,68],"107":[2,68],"111":[2,68],"112":[2,68],"123":[2,68],"124":[2,68],"126":[2,68],"127":[2,68],"128":[2,68],"129":[2,68],"130":[2,68],"131":[2,68],"132":[2,68],"133":[2,68],"134":[2,68],"135":[2,68],"136":[2,68]},{"8":189,"9":118,"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,190],"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,102],"4":[2,102],"27":[2,102],"28":[2,102],"49":[2,102],"54":[2,102],"57":[2,102],"64":[2,102],"65":[2,102],"66":[2,102],"68":[2,102],"69":[2,102],"70":[2,102],"71":[2,102],"74":[2,102],"80":[2,102],"81":[2,102],"82":[2,102],"87":[2,102],"96":[2,102],"98":[2,102],"99":[2,102],"100":[2,102],"107":[2,102],"111":[2,102],"112":[2,102],"123":[2,102],"124":[2,102],"126":[2,102],"127":[2,102],"130":[2,102],"131":[2,102],"132":[2,102],"133":[2,102],"134":[2,102],"135":[2,102]},{"8":158,"9":118,"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,157],"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":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"82":[1,191],"83":192,"84":[1,56],"85":[1,57],"86":[1,68],"88":156,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"49":[1,193],"54":[1,194]},{"49":[2,56],"54":[2,56]},{"39":[1,196],"49":[2,58],"54":[2,58],"57":[1,195]},{"39":[2,61],"49":[2,61],"54":[2,61],"57":[2,61]},{"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]},{"29":142,"30":[1,72]},{"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],"82":[2,50],"87":[2,50],"96":[2,50],"98":[2,50],"99":[2,50],"100":[2,50],"107":[2,50],"111":[2,50],"112":[2,50],"123":[2,50],"124":[2,50],"126":[2,50],"127":[2,50],"130":[2,50],"131":[2,50],"132":[2,50],"133":[2,50],"134":[2,50],"135":[2,50]},{"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],"82":[2,178],"87":[2,178],"96":[2,178],"97":87,"98":[2,178],"99":[2,178],"100":[2,178],"103":88,"107":[2,178],"111":[2,178],"112":[2,178],"123":[2,178],"124":[2,178],"126":[2,178],"127":[2,178],"130":[1,77],"131":[2,178],"132":[2,178],"133":[2,178],"134":[2,178],"135":[2,178]},{"97":91,"98":[1,64],"100":[1,65],"103":92,"112":[1,67],"123":[1,89],"124":[1,90]},{"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],"82":[2,179],"87":[2,179],"96":[2,179],"97":87,"98":[2,179],"99":[2,179],"100":[2,179],"103":88,"107":[2,179],"111":[2,179],"112":[2,179],"123":[2,179],"124":[2,179],"126":[2,179],"127":[2,179],"130":[1,77],"131":[2,179],"132":[2,179],"133":[2,179],"134":[2,179],"135":[2,179]},{"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],"82":[2,180],"87":[2,180],"96":[2,180],"97":87,"98":[2,180],"99":[2,180],"100":[2,180],"103":88,"107":[2,180],"111":[2,180],"112":[2,180],"123":[2,180],"124":[2,180],"126":[2,180],"127":[2,180],"130":[1,77],"131":[2,180],"132":[2,180],"133":[2,180],"134":[2,180],"135":[2,180]},{"1":[2,181],"4":[2,181],"27":[2,181],"28":[2,181],"49":[2,181],"54":[2,181],"57":[2,181],"64":[2,70],"65":[2,70],"66":[2,70],"68":[2,70],"69":[2,181],"70":[2,70],"71":[2,70],"74":[2,181],"80":[2,70],"81":[2,70],"82":[2,181],"87":[2,181],"96":[2,181],"98":[2,181],"99":[2,181],"100":[2,181],"107":[2,181],"111":[2,181],"112":[2,181],"123":[2,181],"124":[2,181],"126":[2,181],"127":[2,181],"130":[2,181],"131":[2,181],"132":[2,181],"133":[2,181],"134":[2,181],"135":[2,181]},{"62":94,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"70":[1,101],"71":[1,102],"77":93,"80":[1,95],"81":[2,103]},{"62":104,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"70":[1,101],"71":[1,102],"77":103,"80":[1,95],"81":[2,103]},{"1":[2,73],"4":[2,73],"27":[2,73],"28":[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],"80":[2,73],"81":[2,73],"82":[2,73],"87":[2,73],"96":[2,73],"98":[2,73],"99":[2,73],"100":[2,73],"107":[2,73],"111":[2,73],"112":[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,182],"4":[2,182],"27":[2,182],"28":[2,182],"49":[2,182],"54":[2,182],"57":[2,182],"64":[2,70],"65":[2,70],"66":[2,70],"68":[2,70],"69":[2,182],"70":[2,70],"71":[2,70],"74":[2,182],"80":[2,70],"81":[2,70],"82":[2,182],"87":[2,182],"96":[2,182],"98":[2,182],"99":[2,182],"100":[2,182],"107":[2,182],"111":[2,182],"112":[2,182],"123":[2,182],"124":[2,182],"126":[2,182],"127":[2,182],"130":[2,182],"131":[2,182],"132":[2,182],"133":[2,182],"134":[2,182],"135":[2,182]},{"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],"82":[2,183],"87":[2,183],"96":[2,183],"98":[2,183],"99":[2,183],"100":[2,183],"107":[2,183],"111":[2,183],"112":[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]},{"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],"82":[2,184],"87":[2,184],"96":[2,184],"98":[2,184],"99":[2,184],"100":[2,184],"107":[2,184],"111":[2,184],"112":[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]},{"8":197,"9":118,"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,198],"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":199,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"6":201,"27":[1,6],"121":[1,200]},{"1":[2,121],"4":[2,121],"27":[2,121],"28":[2,121],"49":[2,121],"54":[2,121],"57":[2,121],"69":[2,121],"74":[2,121],"82":[2,121],"87":[2,121],"91":202,"92":[1,203],"93":[1,204],"96":[2,121],"98":[2,121],"99":[2,121],"100":[2,121],"107":[2,121],"111":[2,121],"112":[2,121],"123":[2,121],"124":[2,121],"126":[2,121],"127":[2,121],"130":[2,121],"131":[2,121],"132":[2,121],"133":[2,121],"134":[2,121],"135":[2,121]},{"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],"82":[2,132],"87":[2,132],"96":[2,132],"98":[2,132],"99":[2,132],"100":[2,132],"107":[2,132],"111":[2,132],"112":[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]},{"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],"82":[2,140],"87":[2,140],"96":[2,140],"98":[2,140],"99":[2,140],"100":[2,140],"107":[2,140],"111":[2,140],"112":[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]},{"27":[1,205],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"116":206,"118":207,"119":[1,208]},{"1":[2,92],"4":[2,92],"27":[2,92],"28":[2,92],"49":[2,92],"54":[2,92],"57":[2,92],"69":[2,92],"74":[2,92],"82":[2,92],"87":[2,92],"96":[2,92],"98":[2,92],"99":[2,92],"100":[2,92],"107":[2,92],"111":[2,92],"112":[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]},{"16":209,"17":123,"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":124,"43":61,"44":28,"58":49,"59":50,"61":210,"63":29,"72":[1,69],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"95":[1,55]},{"1":[2,95],"4":[2,95],"6":211,"27":[1,6],"28":[2,95],"49":[2,95],"54":[2,95],"57":[2,95],"64":[2,70],"65":[2,70],"66":[2,70],"68":[2,70],"69":[2,95],"70":[2,70],"71":[2,70],"74":[2,95],"76":[1,212],"80":[2,70],"81":[2,70],"82":[2,95],"87":[2,95],"96":[2,95],"98":[2,95],"99":[2,95],"100":[2,95],"107":[2,95],"111":[2,95],"112":[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]},{"1":[2,46],"4":[2,46],"28":[2,46],"97":87,"98":[2,46],"100":[2,46],"103":88,"112":[2,46],"123":[2,46],"124":[2,46],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,126],"4":[2,126],"28":[2,126],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[2,126],"124":[2,126],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"96":[1,213],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,109],"4":[2,109],"27":[2,109],"28":[2,109],"39":[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],"76":[2,109],"80":[2,109],"81":[2,109],"82":[2,109],"87":[2,109],"96":[2,109],"98":[2,109],"99":[2,109],"100":[2,109],"107":[2,109],"111":[2,109],"112":[2,109],"123":[2,109],"124":[2,109],"126":[2,109],"127":[2,109],"128":[2,109],"129":[2,109],"130":[2,109],"131":[2,109],"132":[2,109],"133":[2,109],"134":[2,109],"135":[2,109],"136":[2,109]},{"6":214,"27":[1,6],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"6":215,"27":[1,6],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,128],"4":[2,128],"27":[2,128],"28":[2,128],"49":[2,128],"54":[2,128],"57":[2,128],"69":[2,128],"74":[2,128],"82":[2,128],"87":[2,128],"96":[2,128],"97":87,"98":[1,64],"99":[1,216],"100":[1,65],"103":88,"107":[2,128],"111":[2,128],"112":[1,67],"123":[2,128],"124":[2,128],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,130],"87":[2,130],"96":[2,130],"97":87,"98":[1,64],"99":[1,217],"100":[1,65],"103":88,"107":[2,130],"111":[2,130],"112":[1,67],"123":[2,130],"124":[2,130],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,136],"87":[2,136],"96":[2,136],"98":[2,136],"99":[2,136],"100":[2,136],"107":[2,136],"111":[2,136],"112":[2,136],"123":[2,136],"124":[2,136],"126":[2,136],"127":[2,136],"130":[2,136],"131":[2,136],"132":[2,136],"133":[2,136],"134":[2,136],"135":[2,136]},{"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],"82":[2,137],"87":[2,137],"96":[2,137],"97":87,"98":[1,64],"99":[2,137],"100":[1,65],"103":88,"107":[2,137],"111":[2,137],"112":[1,67],"123":[2,137],"124":[2,137],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"54":[1,219],"105":218,"106":[1,220]},{"54":[2,141],"106":[2,141],"108":221,"109":[1,223],"114":[1,222]},{"29":224,"30":[1,72]},{"54":[2,142],"106":[2,142],"109":[2,142]},{"54":[2,143],"106":[2,143],"109":[2,143]},{"1":[2,110],"4":[2,110],"27":[2,110],"28":[2,110],"39":[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],"80":[2,110],"81":[2,110],"82":[2,110],"87":[2,110],"96":[2,110],"98":[2,110],"99":[2,110],"100":[2,110],"106":[2,110],"107":[2,110],"109":[2,110],"111":[2,110],"112":[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]},{"4":[2,53],"27":[2,53],"53":225,"54":[1,226],"87":[2,53]},{"4":[2,112],"27":[2,112],"28":[2,112],"54":[2,112],"82":[2,112],"87":[2,112]},{"8":158,"9":118,"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,157],"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":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"83":227,"84":[1,56],"85":[1,57],"86":[1,68],"88":156,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"4":[2,117],"27":[2,117],"28":[2,117],"54":[2,117],"57":[1,228],"82":[2,117],"87":[2,117],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"4":[2,118],"27":[2,118],"28":[2,118],"54":[2,118],"82":[2,118],"87":[2,118]},{"4":[2,53],"27":[2,53],"53":229,"54":[1,230],"74":[2,53]},{"4":[2,87],"27":[2,87],"28":[2,87],"54":[2,87],"74":[2,87]},{"4":[2,38],"27":[2,38],"28":[2,38],"42":[1,231],"54":[2,38],"74":[2,38]},{"4":[2,41],"27":[2,41],"28":[2,41],"54":[2,41],"74":[2,41]},{"4":[2,42],"27":[2,42],"28":[2,42],"54":[2,42],"74":[2,42]},{"4":[2,43],"27":[2,43],"28":[2,43],"42":[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]},{"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],"82":[2,27],"87":[2,27],"92":[2,27],"93":[2,27],"96":[2,27],"98":[2,27],"99":[2,27],"100":[2,27],"107":[2,27],"111":[2,27],"112":[2,27],"117":[2,27],"119":[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,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],"82":[2,186],"87":[2,186],"96":[2,186],"97":87,"98":[2,186],"99":[2,186],"100":[2,186],"103":88,"107":[2,186],"111":[2,186],"112":[2,186],"123":[2,186],"124":[2,186],"126":[2,186],"127":[2,186],"130":[1,77],"131":[1,80],"132":[2,186],"133":[2,186],"134":[2,186],"135":[2,186]},{"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],"82":[2,187],"87":[2,187],"96":[2,187],"97":87,"98":[2,187],"99":[2,187],"100":[2,187],"103":88,"107":[2,187],"111":[2,187],"112":[2,187],"123":[2,187],"124":[2,187],"126":[2,187],"127":[2,187],"130":[1,77],"131":[1,80],"132":[2,187],"133":[2,187],"134":[2,187],"135":[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],"82":[2,188],"87":[2,188],"96":[2,188],"97":87,"98":[2,188],"99":[2,188],"100":[2,188],"103":88,"107":[2,188],"111":[2,188],"112":[2,188],"123":[2,188],"124":[2,188],"126":[2,188],"127":[2,188],"130":[1,77],"131":[2,188],"132":[2,188],"133":[2,188],"134":[2,188],"135":[2,188]},{"1":[2,189],"4":[2,189],"27":[2,189],"28":[2,189],"49":[2,189],"54":[2,189],"57":[2,189],"69":[2,189],"74":[2,189],"82":[2,189],"87":[2,189],"96":[2,189],"97":87,"98":[2,189],"99":[2,189],"100":[2,189],"103":88,"107":[2,189],"111":[2,189],"112":[2,189],"123":[2,189],"124":[2,189],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[2,189],"133":[2,189],"134":[2,189],"135":[2,189]},{"1":[2,190],"4":[2,190],"27":[2,190],"28":[2,190],"49":[2,190],"54":[2,190],"57":[2,190],"69":[2,190],"74":[2,190],"82":[2,190],"87":[2,190],"96":[2,190],"97":87,"98":[2,190],"99":[2,190],"100":[2,190],"103":88,"107":[2,190],"111":[2,190],"112":[2,190],"123":[2,190],"124":[2,190],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[2,190],"134":[2,190],"135":[1,84]},{"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],"82":[2,191],"87":[2,191],"96":[2,191],"97":87,"98":[2,191],"99":[2,191],"100":[2,191],"103":88,"107":[2,191],"111":[2,191],"112":[2,191],"123":[2,191],"124":[2,191],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[2,191],"135":[1,84]},{"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],"82":[2,192],"87":[2,192],"96":[2,192],"97":87,"98":[2,192],"99":[2,192],"100":[2,192],"103":88,"107":[2,192],"111":[2,192],"112":[2,192],"123":[2,192],"124":[2,192],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[2,192],"134":[2,192],"135":[2,192]},{"1":[2,175],"4":[2,175],"27":[2,175],"28":[2,175],"49":[2,175],"54":[2,175],"57":[2,175],"69":[2,175],"74":[2,175],"82":[2,175],"87":[2,175],"96":[2,175],"97":87,"98":[1,64],"99":[2,175],"100":[1,65],"103":88,"107":[2,175],"111":[2,175],"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,177],"87":[2,177],"96":[2,177],"97":87,"98":[1,64],"99":[2,177],"100":[1,65],"103":88,"107":[2,177],"111":[2,177],"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,174],"4":[2,174],"27":[2,174],"28":[2,174],"49":[2,174],"54":[2,174],"57":[2,174],"69":[2,174],"74":[2,174],"82":[2,174],"87":[2,174],"96":[2,174],"97":87,"98":[1,64],"99":[2,174],"100":[1,65],"103":88,"107":[2,174],"111":[2,174],"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,176],"4":[2,176],"27":[2,176],"28":[2,176],"49":[2,176],"54":[2,176],"57":[2,176],"69":[2,176],"74":[2,176],"82":[2,176],"87":[2,176],"96":[2,176],"97":87,"98":[1,64],"99":[2,176],"100":[1,65],"103":88,"107":[2,176],"111":[2,176],"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,99],"4":[2,99],"27":[2,99],"28":[2,99],"49":[2,99],"54":[2,99],"57":[2,99],"64":[2,99],"65":[2,99],"66":[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],"96":[2,99],"98":[2,99],"99":[2,99],"100":[2,99],"107":[2,99],"111":[2,99],"112":[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,77],"4":[2,77],"27":[2,77],"28":[2,77],"39":[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],"76":[2,77],"80":[2,77],"81":[2,77],"82":[2,77],"87":[2,77],"96":[2,77],"98":[2,77],"99":[2,77],"100":[2,77],"107":[2,77],"111":[2,77],"112":[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]},{"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],"80":[2,78],"81":[2,78],"82":[2,78],"87":[2,78],"96":[2,78],"98":[2,78],"99":[2,78],"100":[2,78],"107":[2,78],"111":[2,78],"112":[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],"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],"80":[2,79],"81":[2,79],"82":[2,79],"87":[2,79],"96":[2,79],"98":[2,79],"99":[2,79],"100":[2,79],"107":[2,79],"111":[2,79],"112":[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]},{"69":[1,232],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"80":[2,83],"81":[2,83],"82":[2,83],"87":[2,83],"96":[2,83],"98":[2,83],"99":[2,83],"100":[2,83],"107":[2,83],"111":[2,83],"112":[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,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],"80":[2,84],"81":[2,84],"82":[2,84],"87":[2,84],"96":[2,84],"98":[2,84],"99":[2,84],"100":[2,84],"107":[2,84],"111":[2,84],"112":[2,84],"123":[2,84],"124":[2,84],"126":[2,84],"127":[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]},{"1":[2,100],"4":[2,100],"27":[2,100],"28":[2,100],"49":[2,100],"54":[2,100],"57":[2,100],"64":[2,100],"65":[2,100],"66":[2,100],"68":[2,100],"69":[2,100],"70":[2,100],"71":[2,100],"74":[2,100],"80":[2,100],"81":[2,100],"82":[2,100],"87":[2,100],"96":[2,100],"98":[2,100],"99":[2,100],"100":[2,100],"107":[2,100],"111":[2,100],"112":[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]},{"1":[2,36],"4":[2,36],"27":[2,36],"28":[2,36],"49":[2,36],"54":[2,36],"57":[2,36],"69":[2,36],"74":[2,36],"82":[2,36],"87":[2,36],"96":[2,36],"97":87,"98":[2,36],"99":[2,36],"100":[2,36],"103":88,"107":[2,36],"111":[2,36],"112":[2,36],"123":[2,36],"124":[2,36],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"8":233,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,105],"4":[2,105],"27":[2,105],"28":[2,105],"49":[2,105],"54":[2,105],"57":[2,105],"64":[2,105],"65":[2,105],"66":[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],"96":[2,105],"98":[2,105],"99":[2,105],"100":[2,105],"107":[2,105],"111":[2,105],"112":[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]},{"4":[2,53],"27":[2,53],"53":234,"54":[1,226],"82":[2,53]},{"50":235,"51":[1,58],"52":[1,59]},{"29":111,"30":[1,72],"43":112,"55":236,"56":110,"58":113,"59":114,"72":[1,69],"85":[1,115],"86":[1,68]},{"49":[2,59],"54":[2,59]},{"8":237,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,193],"87":[2,193],"96":[2,193],"97":87,"98":[2,193],"99":[2,193],"100":[2,193],"103":88,"107":[2,193],"111":[2,193],"112":[2,193],"123":[2,193],"124":[2,193],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"8":238,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,195],"87":[2,195],"96":[2,195],"97":87,"98":[2,195],"99":[2,195],"100":[2,195],"103":88,"107":[2,195],"111":[2,195],"112":[2,195],"123":[2,195],"124":[2,195],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"8":239,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,172],"87":[2,172],"96":[2,172],"98":[2,172],"99":[2,172],"100":[2,172],"107":[2,172],"111":[2,172],"112":[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]},{"1":[2,122],"4":[2,122],"27":[2,122],"28":[2,122],"49":[2,122],"54":[2,122],"57":[2,122],"69":[2,122],"74":[2,122],"82":[2,122],"87":[2,122],"92":[1,240],"96":[2,122],"98":[2,122],"99":[2,122],"100":[2,122],"107":[2,122],"111":[2,122],"112":[2,122],"123":[2,122],"124":[2,122],"126":[2,122],"127":[2,122],"130":[2,122],"131":[2,122],"132":[2,122],"133":[2,122],"134":[2,122],"135":[2,122]},{"6":241,"27":[1,6]},{"29":242,"30":[1,72]},{"116":243,"118":207,"119":[1,208]},{"28":[1,244],"117":[1,245],"118":246,"119":[1,208]},{"28":[2,165],"117":[2,165],"119":[2,165]},{"8":248,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"89":247,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,93],"4":[2,93],"6":249,"27":[1,6],"28":[2,93],"49":[2,93],"54":[2,93],"57":[2,93],"62":94,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"69":[2,93],"70":[1,101],"71":[1,102],"74":[2,93],"77":93,"80":[1,95],"81":[2,103],"82":[2,93],"87":[2,93],"96":[2,93],"98":[2,93],"99":[2,93],"100":[2,93],"107":[2,93],"111":[2,93],"112":[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,70],"4":[2,70],"27":[2,70],"28":[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],"80":[2,70],"81":[2,70],"82":[2,70],"87":[2,70],"96":[2,70],"98":[2,70],"99":[2,70],"100":[2,70],"107":[2,70],"111":[2,70],"112":[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,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],"82":[2,96],"87":[2,96],"96":[2,96],"98":[2,96],"99":[2,96],"100":[2,96],"107":[2,96],"111":[2,96],"112":[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]},{"16":250,"17":123,"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":124,"43":61,"44":28,"58":49,"59":50,"61":210,"63":29,"72":[1,69],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"95":[1,55]},{"1":[2,127],"4":[2,127],"27":[2,127],"28":[2,127],"42":[2,127],"49":[2,127],"54":[2,127],"57":[2,127],"64":[2,127],"65":[2,127],"66":[2,127],"68":[2,127],"69":[2,127],"70":[2,127],"71":[2,127],"74":[2,127],"80":[2,127],"81":[2,127],"82":[2,127],"87":[2,127],"96":[2,127],"98":[2,127],"99":[2,127],"100":[2,127],"107":[2,127],"111":[2,127],"112":[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]},{"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],"82":[2,169],"87":[2,169],"96":[2,169],"98":[2,169],"99":[2,169],"100":[2,169],"107":[2,169],"111":[2,169],"112":[2,169],"117":[2,169],"123":[2,169],"124":[2,169],"126":[2,169],"127":[2,169],"130":[2,169],"131":[2,169],"132":[2,169],"133":[2,169],"134":[2,169],"135":[2,169]},{"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],"82":[2,170],"87":[2,170],"96":[2,170],"98":[2,170],"99":[2,170],"100":[2,170],"107":[2,170],"111":[2,170],"112":[2,170],"117":[2,170],"123":[2,170],"124":[2,170],"126":[2,170],"127":[2,170],"130":[2,170],"131":[2,170],"132":[2,170],"133":[2,170],"134":[2,170],"135":[2,170]},{"8":251,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":252,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,154],"87":[2,154],"96":[2,154],"98":[2,154],"99":[2,154],"100":[2,154],"107":[2,154],"111":[2,154],"112":[2,154],"123":[2,154],"124":[2,154],"126":[2,154],"127":[2,154],"130":[2,154],"131":[2,154],"132":[2,154],"133":[2,154],"134":[2,154],"135":[2,154]},{"29":253,"30":[1,72],"58":152,"59":153,"72":[1,69],"86":[1,68],"104":254},{"8":255,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,156],"87":[2,156],"96":[2,156],"98":[2,156],"99":[2,156],"100":[2,156],"107":[2,156],"111":[2,156],"112":[2,156],"123":[2,156],"124":[2,156],"126":[2,156],"127":[2,156],"130":[2,156],"131":[2,156],"132":[2,156],"133":[2,156],"134":[2,156],"135":[2,156]},{"8":256,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":257,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"54":[1,259],"108":258,"109":[1,223]},{"4":[1,261],"27":[1,262],"87":[1,260]},{"4":[2,54],"8":158,"9":118,"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,54],"28":[2,54],"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":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"82":[2,54],"84":[1,56],"85":[1,57],"86":[1,68],"87":[2,54],"88":263,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"4":[2,53],"27":[2,53],"28":[2,53],"53":264,"54":[1,226]},{"4":[2,65],"27":[2,65],"28":[2,65],"54":[2,65],"82":[2,65],"87":[2,65]},{"4":[1,266],"27":[1,267],"74":[1,265]},{"4":[2,54],"15":164,"27":[2,54],"28":[2,54],"29":165,"30":[1,72],"31":166,"32":[1,70],"33":[1,71],"40":268,"41":162,"43":163,"44":167,"46":[1,48],"74":[2,54],"85":[1,115],"95":[1,55]},{"8":269,"9":118,"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,270],"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"80":[2,82],"81":[2,82],"82":[2,82],"87":[2,82],"96":[2,82],"98":[2,82],"99":[2,82],"100":[2,82],"107":[2,82],"111":[2,82],"112":[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]},{"28":[1,271],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"4":[1,261],"27":[1,262],"82":[1,272]},{"6":273,"27":[1,6]},{"49":[2,57],"54":[2,57]},{"49":[2,60],"54":[2,60],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"28":[1,274],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"6":275,"27":[1,6],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"6":276,"27":[1,6]},{"1":[2,123],"4":[2,123],"27":[2,123],"28":[2,123],"49":[2,123],"54":[2,123],"57":[2,123],"69":[2,123],"74":[2,123],"82":[2,123],"87":[2,123],"96":[2,123],"98":[2,123],"99":[2,123],"100":[2,123],"107":[2,123],"111":[2,123],"112":[2,123],"123":[2,123],"124":[2,123],"126":[2,123],"127":[2,123],"130":[2,123],"131":[2,123],"132":[2,123],"133":[2,123],"134":[2,123],"135":[2,123]},{"6":277,"27":[1,6]},{"28":[1,278],"117":[1,279],"118":246,"119":[1,208]},{"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],"82":[2,163],"87":[2,163],"96":[2,163],"98":[2,163],"99":[2,163],"100":[2,163],"107":[2,163],"111":[2,163],"112":[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]},{"6":280,"27":[1,6]},{"28":[2,166],"117":[2,166],"119":[2,166]},{"6":281,"27":[1,6],"54":[1,282]},{"27":[2,119],"54":[2,119],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,94],"87":[2,94],"96":[2,94],"98":[2,94],"99":[2,94],"100":[2,94],"107":[2,94],"111":[2,94],"112":[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,97],"4":[2,97],"6":283,"27":[1,6],"28":[2,97],"49":[2,97],"54":[2,97],"57":[2,97],"62":94,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"69":[2,97],"70":[1,101],"71":[1,102],"74":[2,97],"77":93,"80":[1,95],"81":[2,103],"82":[2,97],"87":[2,97],"96":[2,97],"98":[2,97],"99":[2,97],"100":[2,97],"107":[2,97],"111":[2,97],"112":[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,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],"82":[2,129],"87":[2,129],"96":[2,129],"97":87,"98":[1,64],"99":[2,129],"100":[1,65],"103":88,"107":[2,129],"111":[2,129],"112":[1,67],"123":[2,129],"124":[2,129],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,131],"87":[2,131],"96":[2,131],"97":87,"98":[1,64],"99":[2,131],"100":[1,65],"103":88,"107":[2,131],"111":[2,131],"112":[1,67],"123":[2,131],"124":[2,131],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"105":284,"106":[1,220],"109":[2,141]},{"108":285,"109":[1,223]},{"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],"82":[2,144],"87":[2,144],"96":[2,144],"97":87,"98":[1,64],"99":[1,286],"100":[1,65],"103":88,"107":[1,287],"111":[2,144],"112":[1,67],"123":[2,144],"124":[2,144],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"97":87,"98":[1,64],"100":[1,65],"103":88,"110":288,"111":[1,289],"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,148],"87":[2,148],"96":[2,148],"97":87,"98":[1,64],"99":[1,290],"100":[1,65],"103":88,"107":[2,148],"111":[2,148],"112":[1,67],"123":[2,148],"124":[2,148],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,158],"87":[2,158],"96":[2,158],"98":[2,158],"99":[2,158],"100":[2,158],"107":[2,158],"111":[2,158],"112":[2,158],"123":[2,158],"124":[2,158],"126":[2,158],"127":[2,158],"130":[2,158],"131":[2,158],"132":[2,158],"133":[2,158],"134":[2,158],"135":[2,158]},{"29":292,"30":[1,72],"58":152,"59":153,"72":[1,69],"86":[1,68],"104":291},{"1":[2,111],"4":[2,111],"27":[2,111],"28":[2,111],"39":[2,111],"49":[2,111],"54":[2,111],"57":[2,111],"64":[2,111],"65":[2,111],"66":[2,111],"68":[2,111],"69":[2,111],"70":[2,111],"71":[2,111],"74":[2,111],"80":[2,111],"81":[2,111],"82":[2,111],"87":[2,111],"96":[2,111],"98":[2,111],"99":[2,111],"100":[2,111],"106":[2,111],"107":[2,111],"109":[2,111],"111":[2,111],"112":[2,111],"123":[2,111],"124":[2,111],"126":[2,111],"127":[2,111],"130":[2,111],"131":[2,111],"132":[2,111],"133":[2,111],"134":[2,111],"135":[2,111]},{"8":158,"9":118,"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":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"88":293,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":158,"9":118,"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,157],"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":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"83":294,"84":[1,56],"85":[1,57],"86":[1,68],"88":156,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"4":[2,113],"27":[2,113],"28":[2,113],"54":[2,113],"82":[2,113],"87":[2,113]},{"4":[1,261],"27":[1,262],"28":[1,295]},{"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],"80":[2,85],"81":[2,85],"82":[2,85],"87":[2,85],"96":[2,85],"98":[2,85],"99":[2,85],"100":[2,85],"106":[2,85],"107":[2,85],"109":[2,85],"111":[2,85],"112":[2,85],"123":[2,85],"124":[2,85],"126":[2,85],"127":[2,85],"130":[2,85],"131":[2,85],"132":[2,85],"133":[2,85],"134":[2,85],"135":[2,85]},{"15":164,"29":165,"30":[1,72],"31":166,"32":[1,70],"33":[1,71],"40":296,"41":162,"43":163,"44":167,"46":[1,48],"85":[1,115],"95":[1,55]},{"4":[2,86],"15":164,"27":[2,86],"28":[2,86],"29":165,"30":[1,72],"31":166,"32":[1,70],"33":[1,71],"40":161,"41":162,"43":163,"44":167,"46":[1,48],"54":[2,86],"73":297,"85":[1,115],"95":[1,55]},{"4":[2,88],"27":[2,88],"28":[2,88],"54":[2,88],"74":[2,88]},{"4":[2,39],"27":[2,39],"28":[2,39],"54":[2,39],"74":[2,39],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"8":298,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,37],"87":[2,37],"96":[2,37],"98":[2,37],"99":[2,37],"100":[2,37],"107":[2,37],"111":[2,37],"112":[2,37],"123":[2,37],"124":[2,37],"126":[2,37],"127":[2,37],"130":[2,37],"131":[2,37],"132":[2,37],"133":[2,37],"134":[2,37],"135":[2,37]},{"1":[2,106],"4":[2,106],"27":[2,106],"28":[2,106],"49":[2,106],"54":[2,106],"57":[2,106],"64":[2,106],"65":[2,106],"66":[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],"96":[2,106],"98":[2,106],"99":[2,106],"100":[2,106],"107":[2,106],"111":[2,106],"112":[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,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],"82":[2,49],"87":[2,49],"96":[2,49],"98":[2,49],"99":[2,49],"100":[2,49],"107":[2,49],"111":[2,49],"112":[2,49],"123":[2,49],"124":[2,49],"126":[2,49],"127":[2,49],"130":[2,49],"131":[2,49],"132":[2,49],"133":[2,49],"134":[2,49],"135":[2,49]},{"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],"82":[2,194],"87":[2,194],"96":[2,194],"98":[2,194],"99":[2,194],"100":[2,194],"107":[2,194],"111":[2,194],"112":[2,194],"123":[2,194],"124":[2,194],"126":[2,194],"127":[2,194],"130":[2,194],"131":[2,194],"132":[2,194],"133":[2,194],"134":[2,194],"135":[2,194]},{"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],"82":[2,171],"87":[2,171],"96":[2,171],"98":[2,171],"99":[2,171],"100":[2,171],"107":[2,171],"111":[2,171],"112":[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,124],"4":[2,124],"27":[2,124],"28":[2,124],"49":[2,124],"54":[2,124],"57":[2,124],"69":[2,124],"74":[2,124],"82":[2,124],"87":[2,124],"96":[2,124],"98":[2,124],"99":[2,124],"100":[2,124],"107":[2,124],"111":[2,124],"112":[2,124],"123":[2,124],"124":[2,124],"126":[2,124],"127":[2,124],"130":[2,124],"131":[2,124],"132":[2,124],"133":[2,124],"134":[2,124],"135":[2,124]},{"1":[2,125],"4":[2,125],"27":[2,125],"28":[2,125],"49":[2,125],"54":[2,125],"57":[2,125],"69":[2,125],"74":[2,125],"82":[2,125],"87":[2,125],"92":[2,125],"96":[2,125],"98":[2,125],"99":[2,125],"100":[2,125],"107":[2,125],"111":[2,125],"112":[2,125],"123":[2,125],"124":[2,125],"126":[2,125],"127":[2,125],"130":[2,125],"131":[2,125],"132":[2,125],"133":[2,125],"134":[2,125],"135":[2,125]},{"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],"82":[2,161],"87":[2,161],"96":[2,161],"98":[2,161],"99":[2,161],"100":[2,161],"107":[2,161],"111":[2,161],"112":[2,161],"123":[2,161],"124":[2,161],"126":[2,161],"127":[2,161],"130":[2,161],"131":[2,161],"132":[2,161],"133":[2,161],"134":[2,161],"135":[2,161]},{"6":299,"27":[1,6]},{"28":[1,300]},{"4":[1,301],"28":[2,167],"117":[2,167],"119":[2,167]},{"8":302,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,98],"4":[2,98],"27":[2,98],"28":[2,98],"49":[2,98],"54":[2,98],"57":[2,98],"69":[2,98],"74":[2,98],"82":[2,98],"87":[2,98],"96":[2,98],"98":[2,98],"99":[2,98],"100":[2,98],"107":[2,98],"111":[2,98],"112":[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,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],"82":[2,155],"87":[2,155],"96":[2,155],"98":[2,155],"99":[2,155],"100":[2,155],"107":[2,155],"111":[2,155],"112":[2,155],"123":[2,155],"124":[2,155],"126":[2,155],"127":[2,155],"130":[2,155],"131":[2,155],"132":[2,155],"133":[2,155],"134":[2,155],"135":[2,155]},{"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],"82":[2,157],"87":[2,157],"96":[2,157],"98":[2,157],"99":[2,157],"100":[2,157],"107":[2,157],"111":[2,157],"112":[2,157],"123":[2,157],"124":[2,157],"126":[2,157],"127":[2,157],"130":[2,157],"131":[2,157],"132":[2,157],"133":[2,157],"134":[2,157],"135":[2,157]},{"8":303,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":304,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,160],"87":[2,160],"96":[2,160],"98":[2,160],"99":[2,160],"100":[2,160],"107":[2,160],"111":[2,160],"112":[2,160],"123":[2,160],"124":[2,160],"126":[2,160],"127":[2,160],"130":[2,160],"131":[2,160],"132":[2,160],"133":[2,160],"134":[2,160],"135":[2,160]},{"8":305,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":306,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"108":307,"109":[1,223]},{"109":[2,141]},{"4":[2,114],"27":[2,114],"28":[2,114],"54":[2,114],"82":[2,114],"87":[2,114]},{"4":[2,53],"27":[2,53],"28":[2,53],"53":308,"54":[1,226]},{"4":[2,115],"27":[2,115],"28":[2,115],"54":[2,115],"82":[2,115],"87":[2,115]},{"4":[2,89],"27":[2,89],"28":[2,89],"54":[2,89],"74":[2,89]},{"4":[2,53],"27":[2,53],"28":[2,53],"53":309,"54":[1,230]},{"28":[1,310],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"28":[1,311]},{"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],"82":[2,164],"87":[2,164],"96":[2,164],"98":[2,164],"99":[2,164],"100":[2,164],"107":[2,164],"111":[2,164],"112":[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]},{"28":[2,168],"117":[2,168],"119":[2,168]},{"27":[2,120],"54":[2,120],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,145],"87":[2,145],"96":[2,145],"97":87,"98":[1,64],"99":[2,145],"100":[1,65],"103":88,"107":[2,145],"111":[2,145],"112":[1,67],"123":[2,145],"124":[2,145],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,146],"87":[2,146],"96":[2,146],"97":87,"98":[1,64],"99":[1,312],"100":[1,65],"103":88,"107":[2,146],"111":[2,146],"112":[1,67],"123":[2,146],"124":[2,146],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,150],"4":[2,150],"27":[2,150],"28":[2,150],"49":[2,150],"54":[2,150],"57":[2,150],"69":[2,150],"74":[2,150],"82":[2,150],"87":[2,150],"96":[2,150],"97":87,"98":[1,64],"99":[1,313],"100":[1,65],"103":88,"107":[1,314],"111":[2,150],"112":[1,67],"123":[2,150],"124":[2,150],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,149],"4":[2,149],"27":[2,149],"28":[2,149],"49":[2,149],"54":[2,149],"57":[2,149],"69":[2,149],"74":[2,149],"82":[2,149],"87":[2,149],"96":[2,149],"97":87,"98":[1,64],"99":[2,149],"100":[1,65],"103":88,"107":[2,149],"111":[2,149],"112":[1,67],"123":[2,149],"124":[2,149],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,159],"87":[2,159],"96":[2,159],"98":[2,159],"99":[2,159],"100":[2,159],"107":[2,159],"111":[2,159],"112":[2,159],"123":[2,159],"124":[2,159],"126":[2,159],"127":[2,159],"130":[2,159],"131":[2,159],"132":[2,159],"133":[2,159],"134":[2,159],"135":[2,159]},{"4":[1,261],"27":[1,262],"28":[1,315]},{"4":[1,266],"27":[1,267],"28":[1,316]},{"4":[2,40],"27":[2,40],"28":[2,40],"54":[2,40],"74":[2,40]},{"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],"82":[2,162],"87":[2,162],"96":[2,162],"98":[2,162],"99":[2,162],"100":[2,162],"107":[2,162],"111":[2,162],"112":[2,162],"123":[2,162],"124":[2,162],"126":[2,162],"127":[2,162],"130":[2,162],"131":[2,162],"132":[2,162],"133":[2,162],"134":[2,162],"135":[2,162]},{"8":317,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":318,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":319,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"4":[2,116],"27":[2,116],"28":[2,116],"54":[2,116],"82":[2,116],"87":[2,116]},{"4":[2,90],"27":[2,90],"28":[2,90],"54":[2,90],"74":[2,90]},{"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],"82":[2,147],"87":[2,147],"96":[2,147],"97":87,"98":[1,64],"99":[2,147],"100":[1,65],"103":88,"107":[2,147],"111":[2,147],"112":[1,67],"123":[2,147],"124":[2,147],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,151],"4":[2,151],"27":[2,151],"28":[2,151],"49":[2,151],"54":[2,151],"57":[2,151],"69":[2,151],"74":[2,151],"82":[2,151],"87":[2,151],"96":[2,151],"97":87,"98":[1,64],"99":[2,151],"100":[1,65],"103":88,"107":[2,151],"111":[2,151],"112":[1,67],"123":[2,151],"124":[2,151],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,152],"87":[2,152],"96":[2,152],"97":87,"98":[1,64],"99":[1,320],"100":[1,65],"103":88,"107":[2,152],"111":[2,152],"112":[1,67],"123":[2,152],"124":[2,152],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"8":321,"9":118,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,153],"87":[2,153],"96":[2,153],"97":87,"98":[1,64],"99":[2,153],"100":[1,65],"103":88,"107":[2,153],"111":[2,153],"112":[1,67],"123":[2,153],"124":[2,153],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]}], ++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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[3]},{"1":[2,2]},{"1":[2,3],"4":[1,73]},{"4":[1,74]},{"1":[2,5],"4":[2,5],"28":[2,5]},{"5":75,"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,76],"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,8],"4":[2,8],"28":[2,8],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,9],"4":[2,9],"28":[2,9],"97":91,"98":[1,64],"100":[1,65],"103":92,"112":[1,67],"123":[1,89],"124":[1,90]},{"1":[2,16],"4":[2,16],"27":[2,16],"28":[2,16],"49":[2,16],"54":[2,16],"57":[2,16],"62":94,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"69":[2,16],"70":[1,101],"71":[1,102],"74":[2,16],"77":93,"80":[1,95],"81":[2,103],"82":[2,16],"87":[2,16],"96":[2,16],"98":[2,16],"99":[2,16],"100":[2,16],"107":[2,16],"111":[2,16],"112":[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],"4":[2,17],"27":[2,17],"28":[2,17],"49":[2,17],"54":[2,17],"57":[2,17],"62":104,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"69":[2,17],"70":[1,101],"71":[1,102],"74":[2,17],"77":103,"80":[1,95],"81":[2,103],"82":[2,17],"87":[2,17],"96":[2,17],"98":[2,17],"99":[2,17],"100":[2,17],"107":[2,17],"111":[2,17],"112":[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],"4":[2,18],"27":[2,18],"28":[2,18],"49":[2,18],"54":[2,18],"57":[2,18],"69":[2,18],"74":[2,18],"82":[2,18],"87":[2,18],"96":[2,18],"98":[2,18],"99":[2,18],"100":[2,18],"107":[2,18],"111":[2,18],"112":[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],"4":[2,19],"27":[2,19],"28":[2,19],"49":[2,19],"54":[2,19],"57":[2,19],"69":[2,19],"74":[2,19],"82":[2,19],"87":[2,19],"96":[2,19],"98":[2,19],"99":[2,19],"100":[2,19],"107":[2,19],"111":[2,19],"112":[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],"4":[2,20],"27":[2,20],"28":[2,20],"49":[2,20],"54":[2,20],"57":[2,20],"69":[2,20],"74":[2,20],"82":[2,20],"87":[2,20],"96":[2,20],"98":[2,20],"99":[2,20],"100":[2,20],"107":[2,20],"111":[2,20],"112":[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],"4":[2,21],"27":[2,21],"28":[2,21],"49":[2,21],"54":[2,21],"57":[2,21],"69":[2,21],"74":[2,21],"82":[2,21],"87":[2,21],"96":[2,21],"98":[2,21],"99":[2,21],"100":[2,21],"107":[2,21],"111":[2,21],"112":[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],"4":[2,22],"27":[2,22],"28":[2,22],"49":[2,22],"54":[2,22],"57":[2,22],"69":[2,22],"74":[2,22],"82":[2,22],"87":[2,22],"96":[2,22],"98":[2,22],"99":[2,22],"100":[2,22],"107":[2,22],"111":[2,22],"112":[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],"4":[2,23],"27":[2,23],"28":[2,23],"49":[2,23],"54":[2,23],"57":[2,23],"69":[2,23],"74":[2,23],"82":[2,23],"87":[2,23],"96":[2,23],"98":[2,23],"99":[2,23],"100":[2,23],"107":[2,23],"111":[2,23],"112":[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,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],"82":[2,24],"87":[2,24],"96":[2,24],"98":[2,24],"99":[2,24],"100":[2,24],"107":[2,24],"111":[2,24],"112":[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,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],"82":[2,25],"87":[2,25],"96":[2,25],"98":[2,25],"99":[2,25],"100":[2,25],"107":[2,25],"111":[2,25],"112":[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,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],"82":[2,26],"87":[2,26],"96":[2,26],"98":[2,26],"99":[2,26],"100":[2,26],"107":[2,26],"111":[2,26],"112":[2,26],"123":[2,26],"124":[2,26],"126":[2,26],"127":[2,26],"130":[2,26],"131":[2,26],"132":[2,26],"133":[2,26],"134":[2,26],"135":[2,26]},{"1":[2,10],"4":[2,10],"28":[2,10],"98":[2,10],"100":[2,10],"112":[2,10],"123":[2,10],"124":[2,10]},{"1":[2,11],"4":[2,11],"28":[2,11],"98":[2,11],"100":[2,11],"112":[2,11],"123":[2,11],"124":[2,11]},{"1":[2,12],"4":[2,12],"28":[2,12],"98":[2,12],"100":[2,12],"112":[2,12],"123":[2,12],"124":[2,12]},{"1":[2,13],"4":[2,13],"28":[2,13],"98":[2,13],"100":[2,13],"112":[2,13],"123":[2,13],"124":[2,13]},{"1":[2,14],"4":[2,14],"28":[2,14],"98":[2,14],"100":[2,14],"112":[2,14],"123":[2,14],"124":[2,14]},{"1":[2,15],"4":[2,15],"28":[2,15],"98":[2,15],"100":[2,15],"112":[2,15],"123":[2,15],"124":[2,15]},{"1":[2,73],"4":[2,73],"27":[2,73],"28":[2,73],"39":[1,105],"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],"80":[2,73],"81":[2,73],"82":[2,73],"87":[2,73],"96":[2,73],"98":[2,73],"99":[2,73],"100":[2,73],"107":[2,73],"111":[2,73],"112":[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],"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],"80":[2,74],"81":[2,74],"82":[2,74],"87":[2,74],"96":[2,74],"98":[2,74],"99":[2,74],"100":[2,74],"107":[2,74],"111":[2,74],"112":[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,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],"80":[2,75],"81":[2,75],"82":[2,75],"87":[2,75],"96":[2,75],"98":[2,75],"99":[2,75],"100":[2,75],"107":[2,75],"111":[2,75],"112":[2,75],"123":[2,75],"124":[2,75],"126":[2,75],"127":[2,75],"130":[2,75],"131":[2,75],"132":[2,75],"133":[2,75],"134":[2,75],"135":[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],"80":[2,76],"81":[2,76],"82":[2,76],"87":[2,76],"96":[2,76],"98":[2,76],"99":[2,76],"100":[2,76],"107":[2,76],"111":[2,76],"112":[2,76],"123":[2,76],"124":[2,76],"126":[2,76],"127":[2,76],"130":[2,76],"131":[2,76],"132":[2,76],"133":[2,76],"134":[2,76],"135":[2,76]},{"1":[2,101],"4":[2,101],"27":[2,101],"28":[2,101],"49":[2,101],"54":[2,101],"57":[2,101],"64":[2,101],"65":[2,101],"66":[2,101],"68":[2,101],"69":[2,101],"70":[2,101],"71":[2,101],"74":[2,101],"78":106,"80":[2,101],"81":[1,107],"82":[2,101],"87":[2,101],"96":[2,101],"98":[2,101],"99":[2,101],"100":[2,101],"107":[2,101],"111":[2,101],"112":[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]},{"29":111,"30":[1,72],"44":112,"48":108,"49":[2,55],"54":[2,55],"55":109,"56":110,"58":113,"59":114,"72":[1,69],"85":[1,115],"86":[1,68]},{"6":116,"27":[1,6]},{"8":117,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":119,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":120,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"16":122,"17":123,"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":124,"43":28,"44":61,"58":49,"59":50,"61":121,"63":29,"72":[1,69],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"95":[1,55]},{"16":122,"17":123,"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":124,"43":28,"44":61,"58":49,"59":50,"61":125,"63":29,"72":[1,69],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"95":[1,55]},{"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":[1,129],"80":[2,70],"81":[2,70],"82":[2,70],"87":[2,70],"96":[2,70],"98":[2,70],"99":[2,70],"100":[2,70],"107":[2,70],"111":[2,70],"112":[2,70],"123":[2,70],"124":[2,70],"126":[2,70],"127":[2,70],"128":[1,126],"129":[1,127],"130":[2,70],"131":[2,70],"132":[2,70],"133":[2,70],"134":[2,70],"135":[2,70],"136":[1,128]},{"1":[2,173],"4":[2,173],"27":[2,173],"28":[2,173],"49":[2,173],"54":[2,173],"57":[2,173],"69":[2,173],"74":[2,173],"82":[2,173],"87":[2,173],"96":[2,173],"98":[2,173],"99":[2,173],"100":[2,173],"107":[2,173],"111":[2,173],"112":[2,173],"117":[1,130],"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]},{"6":131,"27":[1,6]},{"6":132,"27":[1,6]},{"1":[2,135],"4":[2,135],"27":[2,135],"28":[2,135],"49":[2,135],"54":[2,135],"57":[2,135],"69":[2,135],"74":[2,135],"82":[2,135],"87":[2,135],"96":[2,135],"98":[2,135],"99":[2,135],"100":[2,135],"107":[2,135],"111":[2,135],"112":[2,135],"123":[2,135],"124":[2,135],"126":[2,135],"127":[2,135],"130":[2,135],"131":[2,135],"132":[2,135],"133":[2,135],"134":[2,135],"135":[2,135]},{"6":133,"27":[1,6]},{"8":134,"9":118,"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,135],"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,91],"4":[2,91],"6":136,"16":122,"17":123,"27":[1,6],"28":[2,91],"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":124,"43":28,"44":61,"49":[2,91],"54":[2,91],"57":[2,91],"58":49,"59":50,"61":138,"63":29,"69":[2,91],"72":[1,69],"74":[2,91],"76":[1,137],"79":[1,30],"82":[2,91],"84":[1,56],"85":[1,57],"86":[1,68],"87":[2,91],"95":[1,55],"96":[2,91],"98":[2,91],"99":[2,91],"100":[2,91],"107":[2,91],"111":[2,91],"112":[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]},{"1":[2,47],"4":[2,47],"8":139,"9":118,"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,47],"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[2,47],"100":[2,47],"101":42,"102":[1,66],"103":43,"112":[2,47],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"123":[2,47],"124":[2,47],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":140,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,48],"4":[2,48],"27":[2,48],"28":[2,48],"54":[2,48],"74":[2,48],"98":[2,48],"100":[2,48],"112":[2,48],"123":[2,48],"124":[2,48]},{"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],"80":[2,71],"81":[2,71],"82":[2,71],"87":[2,71],"96":[2,71],"98":[2,71],"99":[2,71],"100":[2,71],"107":[2,71],"111":[2,71],"112":[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],"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],"80":[2,72],"81":[2,72],"82":[2,72],"87":[2,72],"96":[2,72],"98":[2,72],"99":[2,72],"100":[2,72],"107":[2,72],"111":[2,72],"112":[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,32],"4":[2,32],"27":[2,32],"28":[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],"80":[2,32],"81":[2,32],"82":[2,32],"87":[2,32],"96":[2,32],"98":[2,32],"99":[2,32],"100":[2,32],"107":[2,32],"111":[2,32],"112":[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]},{"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],"80":[2,33],"81":[2,33],"82":[2,33],"87":[2,33],"96":[2,33],"98":[2,33],"99":[2,33],"100":[2,33],"107":[2,33],"111":[2,33],"112":[2,33],"123":[2,33],"124":[2,33],"126":[2,33],"127":[2,33],"130":[2,33],"131":[2,33],"132":[2,33],"133":[2,33],"134":[2,33],"135":[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],"80":[2,34],"81":[2,34],"82":[2,34],"87":[2,34],"96":[2,34],"98":[2,34],"99":[2,34],"100":[2,34],"107":[2,34],"111":[2,34],"112":[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,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],"80":[2,35],"81":[2,35],"82":[2,35],"87":[2,35],"96":[2,35],"98":[2,35],"99":[2,35],"100":[2,35],"107":[2,35],"111":[2,35],"112":[2,35],"123":[2,35],"124":[2,35],"126":[2,35],"127":[2,35],"130":[2,35],"131":[2,35],"132":[2,35],"133":[2,35],"134":[2,35],"135":[2,35]},{"8":141,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"80":[2,107],"81":[2,107],"82":[2,107],"87":[2,107],"96":[2,107],"98":[2,107],"99":[2,107],"100":[2,107],"107":[2,107],"111":[2,107],"112":[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]},{"1":[2,108],"4":[2,108],"27":[2,108],"28":[2,108],"29":142,"30":[1,72],"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],"80":[2,108],"81":[2,108],"82":[2,108],"87":[2,108],"96":[2,108],"98":[2,108],"99":[2,108],"100":[2,108],"107":[2,108],"111":[2,108],"112":[2,108],"123":[2,108],"124":[2,108],"126":[2,108],"127":[2,108],"130":[2,108],"131":[2,108],"132":[2,108],"133":[2,108],"134":[2,108],"135":[2,108]},{"27":[2,51]},{"27":[2,52]},{"1":[2,66],"4":[2,66],"27":[2,66],"28":[2,66],"39":[2,66],"49":[2,66],"54":[2,66],"57":[2,66],"64":[2,66],"65":[2,66],"66":[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],"96":[2,66],"98":[2,66],"99":[2,66],"100":[2,66],"107":[2,66],"111":[2,66],"112":[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]},{"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],"80":[2,69],"81":[2,69],"82":[2,69],"87":[2,69],"96":[2,69],"98":[2,69],"99":[2,69],"100":[2,69],"107":[2,69],"111":[2,69],"112":[2,69],"123":[2,69],"124":[2,69],"126":[2,69],"127":[2,69],"128":[2,69],"129":[2,69],"130":[2,69],"131":[2,69],"132":[2,69],"133":[2,69],"134":[2,69],"135":[2,69],"136":[2,69]},{"8":143,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":144,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":145,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":146,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"6":147,"8":148,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"29":150,"30":[1,72],"58":152,"59":153,"72":[1,69],"86":[1,68],"104":149,"113":[1,151]},{"8":158,"9":118,"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,157],"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":28,"44":61,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"60":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"83":155,"84":[1,56],"85":[1,57],"86":[1,68],"87":[1,154],"88":156,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"4":[2,86],"15":163,"27":[2,86],"29":164,"30":[1,72],"31":165,"32":[1,70],"33":[1,71],"40":161,"41":162,"43":166,"44":167,"46":[1,48],"54":[2,86],"73":160,"74":[2,86],"85":[1,115],"95":[1,55]},{"1":[2,30],"4":[2,30],"27":[2,30],"28":[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],"80":[2,30],"81":[2,30],"82":[2,30],"87":[2,30],"96":[2,30],"98":[2,30],"99":[2,30],"100":[2,30],"107":[2,30],"111":[2,30],"112":[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],"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],"80":[2,31],"81":[2,31],"82":[2,31],"87":[2,31],"96":[2,31],"98":[2,31],"99":[2,31],"100":[2,31],"107":[2,31],"111":[2,31],"112":[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,29],"4":[2,29],"27":[2,29],"28":[2,29],"39":[2,29],"42":[2,29],"49":[2,29],"54":[2,29],"57":[2,29],"64":[2,29],"65":[2,29],"66":[2,29],"68":[2,29],"69":[2,29],"70":[2,29],"71":[2,29],"74":[2,29],"76":[2,29],"80":[2,29],"81":[2,29],"82":[2,29],"87":[2,29],"96":[2,29],"98":[2,29],"99":[2,29],"100":[2,29],"106":[2,29],"107":[2,29],"109":[2,29],"111":[2,29],"112":[2,29],"114":[2,29],"123":[2,29],"124":[2,29],"126":[2,29],"127":[2,29],"128":[2,29],"129":[2,29],"130":[2,29],"131":[2,29],"132":[2,29],"133":[2,29],"134":[2,29],"135":[2,29],"136":[2,29]},{"1":[2,7],"4":[2,7],"7":168,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,4]},{"4":[1,73],"28":[1,169]},{"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],"82":[2,28],"87":[2,28],"92":[2,28],"93":[2,28],"96":[2,28],"98":[2,28],"99":[2,28],"100":[2,28],"107":[2,28],"111":[2,28],"112":[2,28],"117":[2,28],"119":[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,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],"82":[2,185],"87":[2,185],"96":[2,185],"98":[2,185],"99":[2,185],"100":[2,185],"107":[2,185],"111":[2,185],"112":[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]},{"8":170,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":171,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":172,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":173,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":174,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":175,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":176,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":177,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":178,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,134],"4":[2,134],"27":[2,134],"28":[2,134],"49":[2,134],"54":[2,134],"57":[2,134],"69":[2,134],"74":[2,134],"82":[2,134],"87":[2,134],"96":[2,134],"98":[2,134],"99":[2,134],"100":[2,134],"107":[2,134],"111":[2,134],"112":[2,134],"123":[2,134],"124":[2,134],"126":[2,134],"127":[2,134],"130":[2,134],"131":[2,134],"132":[2,134],"133":[2,134],"134":[2,134],"135":[2,134]},{"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],"82":[2,139],"87":[2,139],"96":[2,139],"98":[2,139],"99":[2,139],"100":[2,139],"107":[2,139],"111":[2,139],"112":[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]},{"8":179,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":180,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,133],"87":[2,133],"96":[2,133],"98":[2,133],"99":[2,133],"100":[2,133],"107":[2,133],"111":[2,133],"112":[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,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],"82":[2,138],"87":[2,138],"96":[2,138],"98":[2,138],"99":[2,138],"100":[2,138],"107":[2,138],"111":[2,138],"112":[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]},{"78":181,"81":[1,107]},{"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],"80":[2,67],"81":[2,67],"82":[2,67],"87":[2,67],"96":[2,67],"98":[2,67],"99":[2,67],"100":[2,67],"107":[2,67],"111":[2,67],"112":[2,67],"123":[2,67],"124":[2,67],"126":[2,67],"127":[2,67],"128":[2,67],"129":[2,67],"130":[2,67],"131":[2,67],"132":[2,67],"133":[2,67],"134":[2,67],"135":[2,67],"136":[2,67]},{"81":[2,104]},{"29":182,"30":[1,72]},{"29":183,"30":[1,72]},{"1":[2,80],"4":[2,80],"27":[2,80],"28":[2,80],"29":184,"30":[1,72],"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],"80":[2,80],"81":[2,80],"82":[2,80],"87":[2,80],"96":[2,80],"98":[2,80],"99":[2,80],"100":[2,80],"107":[2,80],"111":[2,80],"112":[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]},{"1":[2,81],"4":[2,81],"27":[2,81],"28":[2,81],"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],"80":[2,81],"81":[2,81],"82":[2,81],"87":[2,81],"96":[2,81],"98":[2,81],"99":[2,81],"100":[2,81],"107":[2,81],"111":[2,81],"112":[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":185,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"67":186,"68":[1,100],"70":[1,101],"71":[1,102]},{"67":187,"68":[1,100],"70":[1,101],"71":[1,102]},{"78":188,"81":[1,107]},{"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],"80":[2,68],"81":[2,68],"82":[2,68],"87":[2,68],"96":[2,68],"98":[2,68],"99":[2,68],"100":[2,68],"107":[2,68],"111":[2,68],"112":[2,68],"123":[2,68],"124":[2,68],"126":[2,68],"127":[2,68],"128":[2,68],"129":[2,68],"130":[2,68],"131":[2,68],"132":[2,68],"133":[2,68],"134":[2,68],"135":[2,68],"136":[2,68]},{"8":189,"9":118,"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,190],"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,102],"4":[2,102],"27":[2,102],"28":[2,102],"49":[2,102],"54":[2,102],"57":[2,102],"64":[2,102],"65":[2,102],"66":[2,102],"68":[2,102],"69":[2,102],"70":[2,102],"71":[2,102],"74":[2,102],"80":[2,102],"81":[2,102],"82":[2,102],"87":[2,102],"96":[2,102],"98":[2,102],"99":[2,102],"100":[2,102],"107":[2,102],"111":[2,102],"112":[2,102],"123":[2,102],"124":[2,102],"126":[2,102],"127":[2,102],"130":[2,102],"131":[2,102],"132":[2,102],"133":[2,102],"134":[2,102],"135":[2,102]},{"8":158,"9":118,"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,157],"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":28,"44":61,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"60":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"82":[1,191],"83":192,"84":[1,56],"85":[1,57],"86":[1,68],"88":156,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"49":[1,193],"54":[1,194]},{"49":[2,56],"54":[2,56]},{"39":[1,196],"49":[2,58],"54":[2,58],"57":[1,195]},{"39":[2,61],"49":[2,61],"54":[2,61],"57":[2,61]},{"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]},{"29":142,"30":[1,72]},{"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],"82":[2,50],"87":[2,50],"96":[2,50],"98":[2,50],"99":[2,50],"100":[2,50],"107":[2,50],"111":[2,50],"112":[2,50],"123":[2,50],"124":[2,50],"126":[2,50],"127":[2,50],"130":[2,50],"131":[2,50],"132":[2,50],"133":[2,50],"134":[2,50],"135":[2,50]},{"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],"82":[2,178],"87":[2,178],"96":[2,178],"97":87,"98":[2,178],"99":[2,178],"100":[2,178],"103":88,"107":[2,178],"111":[2,178],"112":[2,178],"123":[2,178],"124":[2,178],"126":[2,178],"127":[2,178],"130":[1,77],"131":[2,178],"132":[2,178],"133":[2,178],"134":[2,178],"135":[2,178]},{"97":91,"98":[1,64],"100":[1,65],"103":92,"112":[1,67],"123":[1,89],"124":[1,90]},{"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],"82":[2,179],"87":[2,179],"96":[2,179],"97":87,"98":[2,179],"99":[2,179],"100":[2,179],"103":88,"107":[2,179],"111":[2,179],"112":[2,179],"123":[2,179],"124":[2,179],"126":[2,179],"127":[2,179],"130":[1,77],"131":[2,179],"132":[2,179],"133":[2,179],"134":[2,179],"135":[2,179]},{"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],"82":[2,180],"87":[2,180],"96":[2,180],"97":87,"98":[2,180],"99":[2,180],"100":[2,180],"103":88,"107":[2,180],"111":[2,180],"112":[2,180],"123":[2,180],"124":[2,180],"126":[2,180],"127":[2,180],"130":[1,77],"131":[2,180],"132":[2,180],"133":[2,180],"134":[2,180],"135":[2,180]},{"1":[2,181],"4":[2,181],"27":[2,181],"28":[2,181],"49":[2,181],"54":[2,181],"57":[2,181],"64":[2,70],"65":[2,70],"66":[2,70],"68":[2,70],"69":[2,181],"70":[2,70],"71":[2,70],"74":[2,181],"80":[2,70],"81":[2,70],"82":[2,181],"87":[2,181],"96":[2,181],"98":[2,181],"99":[2,181],"100":[2,181],"107":[2,181],"111":[2,181],"112":[2,181],"123":[2,181],"124":[2,181],"126":[2,181],"127":[2,181],"130":[2,181],"131":[2,181],"132":[2,181],"133":[2,181],"134":[2,181],"135":[2,181]},{"62":94,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"70":[1,101],"71":[1,102],"77":93,"80":[1,95],"81":[2,103]},{"62":104,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"70":[1,101],"71":[1,102],"77":103,"80":[1,95],"81":[2,103]},{"1":[2,73],"4":[2,73],"27":[2,73],"28":[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],"80":[2,73],"81":[2,73],"82":[2,73],"87":[2,73],"96":[2,73],"98":[2,73],"99":[2,73],"100":[2,73],"107":[2,73],"111":[2,73],"112":[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,182],"4":[2,182],"27":[2,182],"28":[2,182],"49":[2,182],"54":[2,182],"57":[2,182],"64":[2,70],"65":[2,70],"66":[2,70],"68":[2,70],"69":[2,182],"70":[2,70],"71":[2,70],"74":[2,182],"80":[2,70],"81":[2,70],"82":[2,182],"87":[2,182],"96":[2,182],"98":[2,182],"99":[2,182],"100":[2,182],"107":[2,182],"111":[2,182],"112":[2,182],"123":[2,182],"124":[2,182],"126":[2,182],"127":[2,182],"130":[2,182],"131":[2,182],"132":[2,182],"133":[2,182],"134":[2,182],"135":[2,182]},{"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],"82":[2,183],"87":[2,183],"96":[2,183],"98":[2,183],"99":[2,183],"100":[2,183],"107":[2,183],"111":[2,183],"112":[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]},{"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],"82":[2,184],"87":[2,184],"96":[2,184],"98":[2,184],"99":[2,184],"100":[2,184],"107":[2,184],"111":[2,184],"112":[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]},{"8":197,"9":118,"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,198],"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":199,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"6":201,"27":[1,6],"121":[1,200]},{"1":[2,121],"4":[2,121],"27":[2,121],"28":[2,121],"49":[2,121],"54":[2,121],"57":[2,121],"69":[2,121],"74":[2,121],"82":[2,121],"87":[2,121],"91":202,"92":[1,203],"93":[1,204],"96":[2,121],"98":[2,121],"99":[2,121],"100":[2,121],"107":[2,121],"111":[2,121],"112":[2,121],"123":[2,121],"124":[2,121],"126":[2,121],"127":[2,121],"130":[2,121],"131":[2,121],"132":[2,121],"133":[2,121],"134":[2,121],"135":[2,121]},{"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],"82":[2,132],"87":[2,132],"96":[2,132],"98":[2,132],"99":[2,132],"100":[2,132],"107":[2,132],"111":[2,132],"112":[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]},{"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],"82":[2,140],"87":[2,140],"96":[2,140],"98":[2,140],"99":[2,140],"100":[2,140],"107":[2,140],"111":[2,140],"112":[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]},{"27":[1,205],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"116":206,"118":207,"119":[1,208]},{"1":[2,92],"4":[2,92],"27":[2,92],"28":[2,92],"49":[2,92],"54":[2,92],"57":[2,92],"69":[2,92],"74":[2,92],"82":[2,92],"87":[2,92],"96":[2,92],"98":[2,92],"99":[2,92],"100":[2,92],"107":[2,92],"111":[2,92],"112":[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]},{"16":209,"17":123,"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":124,"43":28,"44":61,"58":49,"59":50,"61":210,"63":29,"72":[1,69],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"95":[1,55]},{"1":[2,95],"4":[2,95],"6":211,"27":[1,6],"28":[2,95],"49":[2,95],"54":[2,95],"57":[2,95],"64":[2,70],"65":[2,70],"66":[2,70],"68":[2,70],"69":[2,95],"70":[2,70],"71":[2,70],"74":[2,95],"76":[1,212],"80":[2,70],"81":[2,70],"82":[2,95],"87":[2,95],"96":[2,95],"98":[2,95],"99":[2,95],"100":[2,95],"107":[2,95],"111":[2,95],"112":[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]},{"1":[2,46],"4":[2,46],"28":[2,46],"97":87,"98":[2,46],"100":[2,46],"103":88,"112":[2,46],"123":[2,46],"124":[2,46],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,126],"4":[2,126],"28":[2,126],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[2,126],"124":[2,126],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"96":[1,213],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,109],"4":[2,109],"27":[2,109],"28":[2,109],"39":[2,109],"42":[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],"76":[2,109],"80":[2,109],"81":[2,109],"82":[2,109],"87":[2,109],"96":[2,109],"98":[2,109],"99":[2,109],"100":[2,109],"107":[2,109],"111":[2,109],"112":[2,109],"123":[2,109],"124":[2,109],"126":[2,109],"127":[2,109],"128":[2,109],"129":[2,109],"130":[2,109],"131":[2,109],"132":[2,109],"133":[2,109],"134":[2,109],"135":[2,109],"136":[2,109]},{"6":214,"27":[1,6],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"6":215,"27":[1,6],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,128],"4":[2,128],"27":[2,128],"28":[2,128],"49":[2,128],"54":[2,128],"57":[2,128],"69":[2,128],"74":[2,128],"82":[2,128],"87":[2,128],"96":[2,128],"97":87,"98":[1,64],"99":[1,216],"100":[1,65],"103":88,"107":[2,128],"111":[2,128],"112":[1,67],"123":[2,128],"124":[2,128],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,130],"87":[2,130],"96":[2,130],"97":87,"98":[1,64],"99":[1,217],"100":[1,65],"103":88,"107":[2,130],"111":[2,130],"112":[1,67],"123":[2,130],"124":[2,130],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,136],"87":[2,136],"96":[2,136],"98":[2,136],"99":[2,136],"100":[2,136],"107":[2,136],"111":[2,136],"112":[2,136],"123":[2,136],"124":[2,136],"126":[2,136],"127":[2,136],"130":[2,136],"131":[2,136],"132":[2,136],"133":[2,136],"134":[2,136],"135":[2,136]},{"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],"82":[2,137],"87":[2,137],"96":[2,137],"97":87,"98":[1,64],"99":[2,137],"100":[1,65],"103":88,"107":[2,137],"111":[2,137],"112":[1,67],"123":[2,137],"124":[2,137],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"54":[1,219],"105":218,"106":[1,220]},{"54":[2,141],"106":[2,141],"108":221,"109":[1,223],"114":[1,222]},{"29":224,"30":[1,72]},{"54":[2,142],"106":[2,142],"109":[2,142]},{"54":[2,143],"106":[2,143],"109":[2,143]},{"1":[2,110],"4":[2,110],"27":[2,110],"28":[2,110],"39":[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],"80":[2,110],"81":[2,110],"82":[2,110],"87":[2,110],"96":[2,110],"98":[2,110],"99":[2,110],"100":[2,110],"106":[2,110],"107":[2,110],"109":[2,110],"111":[2,110],"112":[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]},{"4":[2,53],"27":[2,53],"53":225,"54":[1,226],"87":[2,53]},{"4":[2,112],"27":[2,112],"28":[2,112],"54":[2,112],"82":[2,112],"87":[2,112]},{"8":158,"9":118,"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,157],"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":28,"44":61,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"60":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"83":227,"84":[1,56],"85":[1,57],"86":[1,68],"88":156,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"4":[2,117],"27":[2,117],"28":[2,117],"54":[2,117],"57":[1,228],"82":[2,117],"87":[2,117],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"4":[2,118],"27":[2,118],"28":[2,118],"54":[2,118],"82":[2,118],"87":[2,118]},{"4":[2,53],"27":[2,53],"53":229,"54":[1,230],"74":[2,53]},{"4":[2,87],"27":[2,87],"28":[2,87],"54":[2,87],"74":[2,87]},{"4":[2,38],"27":[2,38],"28":[2,38],"42":[1,231],"54":[2,38],"74":[2,38]},{"4":[2,41],"27":[2,41],"28":[2,41],"54":[2,41],"74":[2,41]},{"4":[2,42],"27":[2,42],"28":[2,42],"42":[2,42],"54":[2,42],"74":[2,42]},{"4":[2,43],"27":[2,43],"28":[2,43],"42":[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]},{"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],"82":[2,27],"87":[2,27],"92":[2,27],"93":[2,27],"96":[2,27],"98":[2,27],"99":[2,27],"100":[2,27],"107":[2,27],"111":[2,27],"112":[2,27],"117":[2,27],"119":[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,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],"82":[2,186],"87":[2,186],"96":[2,186],"97":87,"98":[2,186],"99":[2,186],"100":[2,186],"103":88,"107":[2,186],"111":[2,186],"112":[2,186],"123":[2,186],"124":[2,186],"126":[2,186],"127":[2,186],"130":[1,77],"131":[1,80],"132":[2,186],"133":[2,186],"134":[2,186],"135":[2,186]},{"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],"82":[2,187],"87":[2,187],"96":[2,187],"97":87,"98":[2,187],"99":[2,187],"100":[2,187],"103":88,"107":[2,187],"111":[2,187],"112":[2,187],"123":[2,187],"124":[2,187],"126":[2,187],"127":[2,187],"130":[1,77],"131":[1,80],"132":[2,187],"133":[2,187],"134":[2,187],"135":[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],"82":[2,188],"87":[2,188],"96":[2,188],"97":87,"98":[2,188],"99":[2,188],"100":[2,188],"103":88,"107":[2,188],"111":[2,188],"112":[2,188],"123":[2,188],"124":[2,188],"126":[2,188],"127":[2,188],"130":[1,77],"131":[2,188],"132":[2,188],"133":[2,188],"134":[2,188],"135":[2,188]},{"1":[2,189],"4":[2,189],"27":[2,189],"28":[2,189],"49":[2,189],"54":[2,189],"57":[2,189],"69":[2,189],"74":[2,189],"82":[2,189],"87":[2,189],"96":[2,189],"97":87,"98":[2,189],"99":[2,189],"100":[2,189],"103":88,"107":[2,189],"111":[2,189],"112":[2,189],"123":[2,189],"124":[2,189],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[2,189],"133":[2,189],"134":[2,189],"135":[2,189]},{"1":[2,190],"4":[2,190],"27":[2,190],"28":[2,190],"49":[2,190],"54":[2,190],"57":[2,190],"69":[2,190],"74":[2,190],"82":[2,190],"87":[2,190],"96":[2,190],"97":87,"98":[2,190],"99":[2,190],"100":[2,190],"103":88,"107":[2,190],"111":[2,190],"112":[2,190],"123":[2,190],"124":[2,190],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[2,190],"134":[2,190],"135":[1,84]},{"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],"82":[2,191],"87":[2,191],"96":[2,191],"97":87,"98":[2,191],"99":[2,191],"100":[2,191],"103":88,"107":[2,191],"111":[2,191],"112":[2,191],"123":[2,191],"124":[2,191],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[2,191],"135":[1,84]},{"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],"82":[2,192],"87":[2,192],"96":[2,192],"97":87,"98":[2,192],"99":[2,192],"100":[2,192],"103":88,"107":[2,192],"111":[2,192],"112":[2,192],"123":[2,192],"124":[2,192],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[2,192],"134":[2,192],"135":[2,192]},{"1":[2,175],"4":[2,175],"27":[2,175],"28":[2,175],"49":[2,175],"54":[2,175],"57":[2,175],"69":[2,175],"74":[2,175],"82":[2,175],"87":[2,175],"96":[2,175],"97":87,"98":[1,64],"99":[2,175],"100":[1,65],"103":88,"107":[2,175],"111":[2,175],"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,177],"87":[2,177],"96":[2,177],"97":87,"98":[1,64],"99":[2,177],"100":[1,65],"103":88,"107":[2,177],"111":[2,177],"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,174],"4":[2,174],"27":[2,174],"28":[2,174],"49":[2,174],"54":[2,174],"57":[2,174],"69":[2,174],"74":[2,174],"82":[2,174],"87":[2,174],"96":[2,174],"97":87,"98":[1,64],"99":[2,174],"100":[1,65],"103":88,"107":[2,174],"111":[2,174],"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,176],"4":[2,176],"27":[2,176],"28":[2,176],"49":[2,176],"54":[2,176],"57":[2,176],"69":[2,176],"74":[2,176],"82":[2,176],"87":[2,176],"96":[2,176],"97":87,"98":[1,64],"99":[2,176],"100":[1,65],"103":88,"107":[2,176],"111":[2,176],"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,99],"4":[2,99],"27":[2,99],"28":[2,99],"49":[2,99],"54":[2,99],"57":[2,99],"64":[2,99],"65":[2,99],"66":[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],"96":[2,99],"98":[2,99],"99":[2,99],"100":[2,99],"107":[2,99],"111":[2,99],"112":[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,77],"4":[2,77],"27":[2,77],"28":[2,77],"39":[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],"76":[2,77],"80":[2,77],"81":[2,77],"82":[2,77],"87":[2,77],"96":[2,77],"98":[2,77],"99":[2,77],"100":[2,77],"107":[2,77],"111":[2,77],"112":[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]},{"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],"80":[2,78],"81":[2,78],"82":[2,78],"87":[2,78],"96":[2,78],"98":[2,78],"99":[2,78],"100":[2,78],"107":[2,78],"111":[2,78],"112":[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],"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],"80":[2,79],"81":[2,79],"82":[2,79],"87":[2,79],"96":[2,79],"98":[2,79],"99":[2,79],"100":[2,79],"107":[2,79],"111":[2,79],"112":[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]},{"69":[1,232],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"80":[2,83],"81":[2,83],"82":[2,83],"87":[2,83],"96":[2,83],"98":[2,83],"99":[2,83],"100":[2,83],"107":[2,83],"111":[2,83],"112":[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,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],"80":[2,84],"81":[2,84],"82":[2,84],"87":[2,84],"96":[2,84],"98":[2,84],"99":[2,84],"100":[2,84],"107":[2,84],"111":[2,84],"112":[2,84],"123":[2,84],"124":[2,84],"126":[2,84],"127":[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]},{"1":[2,100],"4":[2,100],"27":[2,100],"28":[2,100],"49":[2,100],"54":[2,100],"57":[2,100],"64":[2,100],"65":[2,100],"66":[2,100],"68":[2,100],"69":[2,100],"70":[2,100],"71":[2,100],"74":[2,100],"80":[2,100],"81":[2,100],"82":[2,100],"87":[2,100],"96":[2,100],"98":[2,100],"99":[2,100],"100":[2,100],"107":[2,100],"111":[2,100],"112":[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]},{"1":[2,36],"4":[2,36],"27":[2,36],"28":[2,36],"49":[2,36],"54":[2,36],"57":[2,36],"69":[2,36],"74":[2,36],"82":[2,36],"87":[2,36],"96":[2,36],"97":87,"98":[2,36],"99":[2,36],"100":[2,36],"103":88,"107":[2,36],"111":[2,36],"112":[2,36],"123":[2,36],"124":[2,36],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"8":233,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,105],"4":[2,105],"27":[2,105],"28":[2,105],"49":[2,105],"54":[2,105],"57":[2,105],"64":[2,105],"65":[2,105],"66":[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],"96":[2,105],"98":[2,105],"99":[2,105],"100":[2,105],"107":[2,105],"111":[2,105],"112":[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]},{"4":[2,53],"27":[2,53],"53":234,"54":[1,226],"82":[2,53]},{"50":235,"51":[1,58],"52":[1,59]},{"29":111,"30":[1,72],"44":112,"55":236,"56":110,"58":113,"59":114,"72":[1,69],"85":[1,115],"86":[1,68]},{"49":[2,59],"54":[2,59]},{"8":237,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,193],"87":[2,193],"96":[2,193],"97":87,"98":[2,193],"99":[2,193],"100":[2,193],"103":88,"107":[2,193],"111":[2,193],"112":[2,193],"123":[2,193],"124":[2,193],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"8":238,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,195],"87":[2,195],"96":[2,195],"97":87,"98":[2,195],"99":[2,195],"100":[2,195],"103":88,"107":[2,195],"111":[2,195],"112":[2,195],"123":[2,195],"124":[2,195],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"8":239,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,172],"87":[2,172],"96":[2,172],"98":[2,172],"99":[2,172],"100":[2,172],"107":[2,172],"111":[2,172],"112":[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]},{"1":[2,122],"4":[2,122],"27":[2,122],"28":[2,122],"49":[2,122],"54":[2,122],"57":[2,122],"69":[2,122],"74":[2,122],"82":[2,122],"87":[2,122],"92":[1,240],"96":[2,122],"98":[2,122],"99":[2,122],"100":[2,122],"107":[2,122],"111":[2,122],"112":[2,122],"123":[2,122],"124":[2,122],"126":[2,122],"127":[2,122],"130":[2,122],"131":[2,122],"132":[2,122],"133":[2,122],"134":[2,122],"135":[2,122]},{"6":241,"27":[1,6]},{"29":242,"30":[1,72]},{"116":243,"118":207,"119":[1,208]},{"28":[1,244],"117":[1,245],"118":246,"119":[1,208]},{"28":[2,165],"117":[2,165],"119":[2,165]},{"8":248,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"89":247,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,93],"4":[2,93],"6":249,"27":[1,6],"28":[2,93],"49":[2,93],"54":[2,93],"57":[2,93],"62":94,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"69":[2,93],"70":[1,101],"71":[1,102],"74":[2,93],"77":93,"80":[1,95],"81":[2,103],"82":[2,93],"87":[2,93],"96":[2,93],"98":[2,93],"99":[2,93],"100":[2,93],"107":[2,93],"111":[2,93],"112":[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,70],"4":[2,70],"27":[2,70],"28":[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],"80":[2,70],"81":[2,70],"82":[2,70],"87":[2,70],"96":[2,70],"98":[2,70],"99":[2,70],"100":[2,70],"107":[2,70],"111":[2,70],"112":[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,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],"82":[2,96],"87":[2,96],"96":[2,96],"98":[2,96],"99":[2,96],"100":[2,96],"107":[2,96],"111":[2,96],"112":[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]},{"16":250,"17":123,"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":124,"43":28,"44":61,"58":49,"59":50,"61":210,"63":29,"72":[1,69],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"95":[1,55]},{"1":[2,127],"4":[2,127],"27":[2,127],"28":[2,127],"42":[2,127],"49":[2,127],"54":[2,127],"57":[2,127],"64":[2,127],"65":[2,127],"66":[2,127],"68":[2,127],"69":[2,127],"70":[2,127],"71":[2,127],"74":[2,127],"80":[2,127],"81":[2,127],"82":[2,127],"87":[2,127],"96":[2,127],"98":[2,127],"99":[2,127],"100":[2,127],"107":[2,127],"111":[2,127],"112":[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]},{"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],"82":[2,169],"87":[2,169],"96":[2,169],"98":[2,169],"99":[2,169],"100":[2,169],"107":[2,169],"111":[2,169],"112":[2,169],"117":[2,169],"123":[2,169],"124":[2,169],"126":[2,169],"127":[2,169],"130":[2,169],"131":[2,169],"132":[2,169],"133":[2,169],"134":[2,169],"135":[2,169]},{"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],"82":[2,170],"87":[2,170],"96":[2,170],"98":[2,170],"99":[2,170],"100":[2,170],"107":[2,170],"111":[2,170],"112":[2,170],"117":[2,170],"123":[2,170],"124":[2,170],"126":[2,170],"127":[2,170],"130":[2,170],"131":[2,170],"132":[2,170],"133":[2,170],"134":[2,170],"135":[2,170]},{"8":251,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":252,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,154],"87":[2,154],"96":[2,154],"98":[2,154],"99":[2,154],"100":[2,154],"107":[2,154],"111":[2,154],"112":[2,154],"123":[2,154],"124":[2,154],"126":[2,154],"127":[2,154],"130":[2,154],"131":[2,154],"132":[2,154],"133":[2,154],"134":[2,154],"135":[2,154]},{"29":253,"30":[1,72],"58":152,"59":153,"72":[1,69],"86":[1,68],"104":254},{"8":255,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,156],"87":[2,156],"96":[2,156],"98":[2,156],"99":[2,156],"100":[2,156],"107":[2,156],"111":[2,156],"112":[2,156],"123":[2,156],"124":[2,156],"126":[2,156],"127":[2,156],"130":[2,156],"131":[2,156],"132":[2,156],"133":[2,156],"134":[2,156],"135":[2,156]},{"8":256,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":257,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"54":[1,259],"108":258,"109":[1,223]},{"4":[1,261],"27":[1,262],"87":[1,260]},{"4":[2,54],"8":158,"9":118,"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,54],"28":[2,54],"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":28,"44":61,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"60":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"82":[2,54],"84":[1,56],"85":[1,57],"86":[1,68],"87":[2,54],"88":263,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"4":[2,53],"27":[2,53],"28":[2,53],"53":264,"54":[1,226]},{"4":[2,65],"27":[2,65],"28":[2,65],"54":[2,65],"82":[2,65],"87":[2,65]},{"4":[1,266],"27":[1,267],"74":[1,265]},{"4":[2,54],"15":163,"27":[2,54],"28":[2,54],"29":164,"30":[1,72],"31":165,"32":[1,70],"33":[1,71],"40":268,"41":162,"43":166,"44":167,"46":[1,48],"74":[2,54],"85":[1,115],"95":[1,55]},{"8":269,"9":118,"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,270],"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"80":[2,82],"81":[2,82],"82":[2,82],"87":[2,82],"96":[2,82],"98":[2,82],"99":[2,82],"100":[2,82],"107":[2,82],"111":[2,82],"112":[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]},{"28":[1,271],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"4":[1,261],"27":[1,262],"82":[1,272]},{"6":273,"27":[1,6]},{"49":[2,57],"54":[2,57]},{"49":[2,60],"54":[2,60],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"28":[1,274],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"6":275,"27":[1,6],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"6":276,"27":[1,6]},{"1":[2,123],"4":[2,123],"27":[2,123],"28":[2,123],"49":[2,123],"54":[2,123],"57":[2,123],"69":[2,123],"74":[2,123],"82":[2,123],"87":[2,123],"96":[2,123],"98":[2,123],"99":[2,123],"100":[2,123],"107":[2,123],"111":[2,123],"112":[2,123],"123":[2,123],"124":[2,123],"126":[2,123],"127":[2,123],"130":[2,123],"131":[2,123],"132":[2,123],"133":[2,123],"134":[2,123],"135":[2,123]},{"6":277,"27":[1,6]},{"28":[1,278],"117":[1,279],"118":246,"119":[1,208]},{"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],"82":[2,163],"87":[2,163],"96":[2,163],"98":[2,163],"99":[2,163],"100":[2,163],"107":[2,163],"111":[2,163],"112":[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]},{"6":280,"27":[1,6]},{"28":[2,166],"117":[2,166],"119":[2,166]},{"6":281,"27":[1,6],"54":[1,282]},{"27":[2,119],"54":[2,119],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,94],"87":[2,94],"96":[2,94],"98":[2,94],"99":[2,94],"100":[2,94],"107":[2,94],"111":[2,94],"112":[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,97],"4":[2,97],"6":283,"27":[1,6],"28":[2,97],"49":[2,97],"54":[2,97],"57":[2,97],"62":94,"64":[1,96],"65":[1,97],"66":[1,98],"67":99,"68":[1,100],"69":[2,97],"70":[1,101],"71":[1,102],"74":[2,97],"77":93,"80":[1,95],"81":[2,103],"82":[2,97],"87":[2,97],"96":[2,97],"98":[2,97],"99":[2,97],"100":[2,97],"107":[2,97],"111":[2,97],"112":[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,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],"82":[2,129],"87":[2,129],"96":[2,129],"97":87,"98":[1,64],"99":[2,129],"100":[1,65],"103":88,"107":[2,129],"111":[2,129],"112":[1,67],"123":[2,129],"124":[2,129],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,131],"87":[2,131],"96":[2,131],"97":87,"98":[1,64],"99":[2,131],"100":[1,65],"103":88,"107":[2,131],"111":[2,131],"112":[1,67],"123":[2,131],"124":[2,131],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"105":284,"106":[1,220],"109":[2,141]},{"108":285,"109":[1,223]},{"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],"82":[2,144],"87":[2,144],"96":[2,144],"97":87,"98":[1,64],"99":[1,286],"100":[1,65],"103":88,"107":[1,287],"111":[2,144],"112":[1,67],"123":[2,144],"124":[2,144],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"97":87,"98":[1,64],"100":[1,65],"103":88,"110":288,"111":[1,289],"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,148],"87":[2,148],"96":[2,148],"97":87,"98":[1,64],"99":[1,290],"100":[1,65],"103":88,"107":[2,148],"111":[2,148],"112":[1,67],"123":[2,148],"124":[2,148],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,158],"87":[2,158],"96":[2,158],"98":[2,158],"99":[2,158],"100":[2,158],"107":[2,158],"111":[2,158],"112":[2,158],"123":[2,158],"124":[2,158],"126":[2,158],"127":[2,158],"130":[2,158],"131":[2,158],"132":[2,158],"133":[2,158],"134":[2,158],"135":[2,158]},{"29":292,"30":[1,72],"58":152,"59":153,"72":[1,69],"86":[1,68],"104":291},{"1":[2,111],"4":[2,111],"27":[2,111],"28":[2,111],"39":[2,111],"49":[2,111],"54":[2,111],"57":[2,111],"64":[2,111],"65":[2,111],"66":[2,111],"68":[2,111],"69":[2,111],"70":[2,111],"71":[2,111],"74":[2,111],"80":[2,111],"81":[2,111],"82":[2,111],"87":[2,111],"96":[2,111],"98":[2,111],"99":[2,111],"100":[2,111],"106":[2,111],"107":[2,111],"109":[2,111],"111":[2,111],"112":[2,111],"123":[2,111],"124":[2,111],"126":[2,111],"127":[2,111],"130":[2,111],"131":[2,111],"132":[2,111],"133":[2,111],"134":[2,111],"135":[2,111]},{"8":158,"9":118,"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":28,"44":61,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"60":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"88":293,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":158,"9":118,"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,157],"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":28,"44":61,"45":[1,46],"46":[1,48],"47":[1,31],"50":32,"51":[1,58],"52":[1,59],"58":49,"59":50,"60":159,"61":38,"63":29,"72":[1,69],"75":[1,45],"79":[1,30],"83":294,"84":[1,56],"85":[1,57],"86":[1,68],"88":156,"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"4":[2,113],"27":[2,113],"28":[2,113],"54":[2,113],"82":[2,113],"87":[2,113]},{"4":[1,261],"27":[1,262],"28":[1,295]},{"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],"80":[2,85],"81":[2,85],"82":[2,85],"87":[2,85],"96":[2,85],"98":[2,85],"99":[2,85],"100":[2,85],"106":[2,85],"107":[2,85],"109":[2,85],"111":[2,85],"112":[2,85],"123":[2,85],"124":[2,85],"126":[2,85],"127":[2,85],"130":[2,85],"131":[2,85],"132":[2,85],"133":[2,85],"134":[2,85],"135":[2,85]},{"15":163,"29":164,"30":[1,72],"31":165,"32":[1,70],"33":[1,71],"40":296,"41":162,"43":166,"44":167,"46":[1,48],"85":[1,115],"95":[1,55]},{"4":[2,86],"15":163,"27":[2,86],"28":[2,86],"29":164,"30":[1,72],"31":165,"32":[1,70],"33":[1,71],"40":161,"41":162,"43":166,"44":167,"46":[1,48],"54":[2,86],"73":297,"85":[1,115],"95":[1,55]},{"4":[2,88],"27":[2,88],"28":[2,88],"54":[2,88],"74":[2,88]},{"4":[2,39],"27":[2,39],"28":[2,39],"54":[2,39],"74":[2,39],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"8":298,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,37],"87":[2,37],"96":[2,37],"98":[2,37],"99":[2,37],"100":[2,37],"107":[2,37],"111":[2,37],"112":[2,37],"123":[2,37],"124":[2,37],"126":[2,37],"127":[2,37],"130":[2,37],"131":[2,37],"132":[2,37],"133":[2,37],"134":[2,37],"135":[2,37]},{"1":[2,106],"4":[2,106],"27":[2,106],"28":[2,106],"49":[2,106],"54":[2,106],"57":[2,106],"64":[2,106],"65":[2,106],"66":[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],"96":[2,106],"98":[2,106],"99":[2,106],"100":[2,106],"107":[2,106],"111":[2,106],"112":[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,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],"82":[2,49],"87":[2,49],"96":[2,49],"98":[2,49],"99":[2,49],"100":[2,49],"107":[2,49],"111":[2,49],"112":[2,49],"123":[2,49],"124":[2,49],"126":[2,49],"127":[2,49],"130":[2,49],"131":[2,49],"132":[2,49],"133":[2,49],"134":[2,49],"135":[2,49]},{"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],"82":[2,194],"87":[2,194],"96":[2,194],"98":[2,194],"99":[2,194],"100":[2,194],"107":[2,194],"111":[2,194],"112":[2,194],"123":[2,194],"124":[2,194],"126":[2,194],"127":[2,194],"130":[2,194],"131":[2,194],"132":[2,194],"133":[2,194],"134":[2,194],"135":[2,194]},{"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],"82":[2,171],"87":[2,171],"96":[2,171],"98":[2,171],"99":[2,171],"100":[2,171],"107":[2,171],"111":[2,171],"112":[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,124],"4":[2,124],"27":[2,124],"28":[2,124],"49":[2,124],"54":[2,124],"57":[2,124],"69":[2,124],"74":[2,124],"82":[2,124],"87":[2,124],"96":[2,124],"98":[2,124],"99":[2,124],"100":[2,124],"107":[2,124],"111":[2,124],"112":[2,124],"123":[2,124],"124":[2,124],"126":[2,124],"127":[2,124],"130":[2,124],"131":[2,124],"132":[2,124],"133":[2,124],"134":[2,124],"135":[2,124]},{"1":[2,125],"4":[2,125],"27":[2,125],"28":[2,125],"49":[2,125],"54":[2,125],"57":[2,125],"69":[2,125],"74":[2,125],"82":[2,125],"87":[2,125],"92":[2,125],"96":[2,125],"98":[2,125],"99":[2,125],"100":[2,125],"107":[2,125],"111":[2,125],"112":[2,125],"123":[2,125],"124":[2,125],"126":[2,125],"127":[2,125],"130":[2,125],"131":[2,125],"132":[2,125],"133":[2,125],"134":[2,125],"135":[2,125]},{"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],"82":[2,161],"87":[2,161],"96":[2,161],"98":[2,161],"99":[2,161],"100":[2,161],"107":[2,161],"111":[2,161],"112":[2,161],"123":[2,161],"124":[2,161],"126":[2,161],"127":[2,161],"130":[2,161],"131":[2,161],"132":[2,161],"133":[2,161],"134":[2,161],"135":[2,161]},{"6":299,"27":[1,6]},{"28":[1,300]},{"4":[1,301],"28":[2,167],"117":[2,167],"119":[2,167]},{"8":302,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"1":[2,98],"4":[2,98],"27":[2,98],"28":[2,98],"49":[2,98],"54":[2,98],"57":[2,98],"69":[2,98],"74":[2,98],"82":[2,98],"87":[2,98],"96":[2,98],"98":[2,98],"99":[2,98],"100":[2,98],"107":[2,98],"111":[2,98],"112":[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,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],"82":[2,155],"87":[2,155],"96":[2,155],"98":[2,155],"99":[2,155],"100":[2,155],"107":[2,155],"111":[2,155],"112":[2,155],"123":[2,155],"124":[2,155],"126":[2,155],"127":[2,155],"130":[2,155],"131":[2,155],"132":[2,155],"133":[2,155],"134":[2,155],"135":[2,155]},{"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],"82":[2,157],"87":[2,157],"96":[2,157],"98":[2,157],"99":[2,157],"100":[2,157],"107":[2,157],"111":[2,157],"112":[2,157],"123":[2,157],"124":[2,157],"126":[2,157],"127":[2,157],"130":[2,157],"131":[2,157],"132":[2,157],"133":[2,157],"134":[2,157],"135":[2,157]},{"8":303,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":304,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,160],"87":[2,160],"96":[2,160],"98":[2,160],"99":[2,160],"100":[2,160],"107":[2,160],"111":[2,160],"112":[2,160],"123":[2,160],"124":[2,160],"126":[2,160],"127":[2,160],"130":[2,160],"131":[2,160],"132":[2,160],"133":[2,160],"134":[2,160],"135":[2,160]},{"8":305,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":306,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"108":307,"109":[1,223]},{"109":[2,141]},{"4":[2,114],"27":[2,114],"28":[2,114],"54":[2,114],"82":[2,114],"87":[2,114]},{"4":[2,53],"27":[2,53],"28":[2,53],"53":308,"54":[1,226]},{"4":[2,115],"27":[2,115],"28":[2,115],"54":[2,115],"82":[2,115],"87":[2,115]},{"4":[2,89],"27":[2,89],"28":[2,89],"54":[2,89],"74":[2,89]},{"4":[2,53],"27":[2,53],"28":[2,53],"53":309,"54":[1,230]},{"28":[1,310],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"28":[1,311]},{"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],"82":[2,164],"87":[2,164],"96":[2,164],"98":[2,164],"99":[2,164],"100":[2,164],"107":[2,164],"111":[2,164],"112":[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]},{"28":[2,168],"117":[2,168],"119":[2,168]},{"27":[2,120],"54":[2,120],"97":87,"98":[1,64],"100":[1,65],"103":88,"112":[1,67],"123":[1,85],"124":[1,86],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,145],"87":[2,145],"96":[2,145],"97":87,"98":[1,64],"99":[2,145],"100":[1,65],"103":88,"107":[2,145],"111":[2,145],"112":[1,67],"123":[2,145],"124":[2,145],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,146],"87":[2,146],"96":[2,146],"97":87,"98":[1,64],"99":[1,312],"100":[1,65],"103":88,"107":[2,146],"111":[2,146],"112":[1,67],"123":[2,146],"124":[2,146],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,150],"4":[2,150],"27":[2,150],"28":[2,150],"49":[2,150],"54":[2,150],"57":[2,150],"69":[2,150],"74":[2,150],"82":[2,150],"87":[2,150],"96":[2,150],"97":87,"98":[1,64],"99":[1,313],"100":[1,65],"103":88,"107":[1,314],"111":[2,150],"112":[1,67],"123":[2,150],"124":[2,150],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,149],"4":[2,149],"27":[2,149],"28":[2,149],"49":[2,149],"54":[2,149],"57":[2,149],"69":[2,149],"74":[2,149],"82":[2,149],"87":[2,149],"96":[2,149],"97":87,"98":[1,64],"99":[2,149],"100":[1,65],"103":88,"107":[2,149],"111":[2,149],"112":[1,67],"123":[2,149],"124":[2,149],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,159],"87":[2,159],"96":[2,159],"98":[2,159],"99":[2,159],"100":[2,159],"107":[2,159],"111":[2,159],"112":[2,159],"123":[2,159],"124":[2,159],"126":[2,159],"127":[2,159],"130":[2,159],"131":[2,159],"132":[2,159],"133":[2,159],"134":[2,159],"135":[2,159]},{"4":[1,261],"27":[1,262],"28":[1,315]},{"4":[1,266],"27":[1,267],"28":[1,316]},{"4":[2,40],"27":[2,40],"28":[2,40],"54":[2,40],"74":[2,40]},{"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],"82":[2,162],"87":[2,162],"96":[2,162],"98":[2,162],"99":[2,162],"100":[2,162],"107":[2,162],"111":[2,162],"112":[2,162],"123":[2,162],"124":[2,162],"126":[2,162],"127":[2,162],"130":[2,162],"131":[2,162],"132":[2,162],"133":[2,162],"134":[2,162],"135":[2,162]},{"8":317,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":318,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"8":319,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"4":[2,116],"27":[2,116],"28":[2,116],"54":[2,116],"82":[2,116],"87":[2,116]},{"4":[2,90],"27":[2,90],"28":[2,90],"54":[2,90],"74":[2,90]},{"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],"82":[2,147],"87":[2,147],"96":[2,147],"97":87,"98":[1,64],"99":[2,147],"100":[1,65],"103":88,"107":[2,147],"111":[2,147],"112":[1,67],"123":[2,147],"124":[2,147],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"1":[2,151],"4":[2,151],"27":[2,151],"28":[2,151],"49":[2,151],"54":[2,151],"57":[2,151],"69":[2,151],"74":[2,151],"82":[2,151],"87":[2,151],"96":[2,151],"97":87,"98":[1,64],"99":[2,151],"100":[1,65],"103":88,"107":[2,151],"111":[2,151],"112":[1,67],"123":[2,151],"124":[2,151],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"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],"82":[2,152],"87":[2,152],"96":[2,152],"97":87,"98":[1,64],"99":[1,320],"100":[1,65],"103":88,"107":[2,152],"111":[2,152],"112":[1,67],"123":[2,152],"124":[2,152],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]},{"8":321,"9":118,"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":28,"44":61,"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],"79":[1,30],"84":[1,56],"85":[1,57],"86":[1,68],"90":[1,40],"94":[1,47],"95":[1,55],"97":41,"98":[1,64],"100":[1,65],"101":42,"102":[1,66],"103":43,"112":[1,67],"115":[1,44],"120":39,"121":[1,62],"122":[1,63],"125":[1,33],"126":[1,34],"127":[1,35],"128":[1,36],"129":[1,37]},{"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],"82":[2,153],"87":[2,153],"96":[2,153],"97":87,"98":[1,64],"99":[2,153],"100":[1,65],"103":88,"107":[2,153],"111":[2,153],"112":[1,67],"123":[2,153],"124":[2,153],"126":[1,79],"127":[1,78],"130":[1,77],"131":[1,80],"132":[1,81],"133":[1,82],"134":[1,83],"135":[1,84]}], + defaultActions: {"2":[2,2],"58":[2,51],"59":[2,52],"74":[2,4],"95":[2,104],"292":[2,141]}, + parseError: function parseError(str, hash) { + throw new Error(str); +diff --git a/src/grammar.coffee b/src/grammar.coffee +index dc86b2e..abe58e3 100644 +--- a/src/grammar.coffee ++++ b/src/grammar.coffee +@@ -146,7 +146,6 @@ grammar = + o 'ObjAssignable : Expression', -> new Assign new Value($1), $3, 'object' + o 'ObjAssignable : + INDENT Expression OUTDENT', -> new Assign new Value($1), $4, 'object' +- o 'ThisProperty' + o 'Comment' + ] + +@@ -154,6 +153,7 @@ grammar = + o 'Identifier' + o 'AlphaNumeric' + o 'Parenthetical' ++ o 'ThisProperty' + ] + + # A return statement from a function body. +diff --git a/src/nodes.coffee b/src/nodes.coffee +index add0b8f..8ff1aa0 100644 +--- a/src/nodes.coffee ++++ b/src/nodes.coffee +@@ -695,7 +695,8 @@ exports.Class = class Class extends Base + base = assign.variable.base + delete assign.context + func = assign.value +- assign.variable = new Value(lname, [new Accessor(base, 'proto')]) ++ unless assign.variable.this ++ assign.variable = new Value(lname, [new Accessor(base, 'proto')]) + if func instanceof Code and func.bound + boundFuncs.push base + func.bound = no +-- +2.9.3 +