diff --git a/.dockerignore b/.dockerignore
index 2f7896d1d1..8357df11b9 100644
--- a/.dockerignore
+++ b/.dockerignore
@@ -1 +1 @@
-target/
+**target*
\ No newline at end of file
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000000..f511aad460
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,16 @@
+root = true
+[*]
+indent_style=tab
+indent_size=tab
+tab_width=4
+end_of_line=lf
+charset=utf-8
+trim_trailing_whitespace=true
+max_line_length=120
+insert_final_newline=true
+
+[*.yml]
+indent_style=space
+indent_size=2
+tab_width=8
+end_of_line=lf
diff --git a/.gitignore b/.gitignore
index dbaa0c705f..58b9ee32cb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,9 +2,6 @@
# will have compiled files and executables
**/target/
-# Cargo lock file for native runtime - only used for cargo test
-./Cargo.lock
-
# These are backup files generated by rustfmt
**/*.rs.bk
@@ -17,4 +14,5 @@ joystream_runtime.wasm
# Vim
.*.sw*
-**/Cargo.lock
\ No newline at end of file
+# Visual Studio Code
+.vscode
diff --git a/.travis.yml b/.travis.yml
index 6a87108095..5798a3f78a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,22 +2,87 @@ language: rust
rust:
- 1.42.0
-# Caching saves a lot of time but often causes stalled builds...
-# disabled for now
-# look into solution here: https://levans.fr/rust_travis_cache.html
-# cache:
-# - cargo
-before_script:
- - rustup component add rustfmt --toolchain 1.41.1-x86_64-unknown-linux-gnu
+matrix:
+ include:
+ - os: linux
+ env: TARGET=x86_64-unknown-linux-gnu
+ - os: linux
+ env: TARGET=arm-unknown-linux-gnueabihf
+ services: docker
+ - os: osx
+ env: TARGET=x86_64-apple-darwin
+
+before_install:
+ - rustup component add rustfmt
+ - cargo fmt --all -- --check
+ - rustup default stable
- rustup update nightly
- rustup target add wasm32-unknown-unknown --toolchain nightly
- - cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force
+ - cargo test --verbose --all
+
+install:
+ - |
+ if [ "$TARGET" = "arm-unknown-linux-gnueabihf" ]
+ then
+ docker pull joystream/rust-raspberry
+ fi
script:
- # Ensure all checked in code is cargo-fmt'ed
- - cargo fmt --all -- --check
- # Native build and unit tests check
- - cargo test --verbose --all
- # WASM build check
- - cargo build
+ - |
+ if [ "$TARGET" = "arm-unknown-linux-gnueabihf" ]
+ then
+ docker run -u root \
+ --volume ${TRAVIS_BUILD_DIR}:/home/cross/project \
+ joystream/rust-raspberry \
+ build --release
+ sudo chmod a+r ${TRAVIS_BUILD_DIR}/target/${TARGET}/release/joystream-node
+ else
+ cargo build --release --target=${TARGET}
+ fi
+
+before_deploy:
+ - cp ./target/${TARGET}/release/joystream-node .
+ - |
+ if [ "$TARGET" = "arm-unknown-linux-gnueabihf" ]
+ then
+ export FILENAME="joystream-node-armv7-linux-gnueabihf"
+ else
+ export FILENAME=`./joystream-node --version | sed -e "s/ /-/g"`
+ fi
+ - tar -cf ${FILENAME}.tar ./joystream-node
+ - gzip ${FILENAME}.tar
+
+deploy:
+ - provider: releases
+ api_key:
+ secure: QTna4XzKmPrXNA5KnYfLsH8cAKxESLdFbQ5HJ6nvB9reE10SVtg8lZ+ShL+no7TACNBUNt09Qv9HNgs6JcNRJ9QMHEJHKIbMyjplhBtZ+W3l0k+6TL0yeKHZ/OvddDF+vDbpN+y4xBfOf0xqZcNH3lZJTms/NPBn/KT5DpQ3JZ8bibdMP2HSCazfvHLwj38OuLX6VWbFcmN2RAmUR9AXYvk5wWYVw8g1VDzTCxjH1G+dGWH1L9+ZDgFfv7BNSNhPc6V9GghgLVZ+37r/STzTTAQ/gPv+yruglEWUhSAngFfVYUegvTmIeQLi/V+g0tKUS+l7eNX08xz6eZcn0+/32V7P+oEN/dhU84E0kgmiOsiUEGI/KFM+qw9TyX3GtD67UmG5TZrD7OUMIu1qCuPSetsTOK2kvpwlYAn+j5iFB30Uz4hXhOH5dib2zz2I7cYHi1kvzeNQqQOPNDCmaO48bcbRIaeqMAHdsb6scGzh/+CD2V2HOmHlhd+4o1PpX6hAMwmOXAu3bMDi4zlB9Hb1cSZnsYNBHawkD6y45QGepFKpGW/6u5VRPeMK62Gm9wu815C36B4mVg6CVqtZMbk0WYPIk6zfoTft3i04YthKbRO96a5VD9LssVbiSYnudXuZJjSllSZVCi9AKS8JVIS2jC2z+tWkquAesSrwztriRcs=
+ file: ${FILENAME}.tar.gz
+ on:
+ tags: true
+ repo: Joystream/substrate-node-joystream
+ draft: true
+ overwrite: true
+ skip_cleanup: true
+ - provider: releases
+ api_key:
+ secure: QTna4XzKmPrXNA5KnYfLsH8cAKxESLdFbQ5HJ6nvB9reE10SVtg8lZ+ShL+no7TACNBUNt09Qv9HNgs6JcNRJ9QMHEJHKIbMyjplhBtZ+W3l0k+6TL0yeKHZ/OvddDF+vDbpN+y4xBfOf0xqZcNH3lZJTms/NPBn/KT5DpQ3JZ8bibdMP2HSCazfvHLwj38OuLX6VWbFcmN2RAmUR9AXYvk5wWYVw8g1VDzTCxjH1G+dGWH1L9+ZDgFfv7BNSNhPc6V9GghgLVZ+37r/STzTTAQ/gPv+yruglEWUhSAngFfVYUegvTmIeQLi/V+g0tKUS+l7eNX08xz6eZcn0+/32V7P+oEN/dhU84E0kgmiOsiUEGI/KFM+qw9TyX3GtD67UmG5TZrD7OUMIu1qCuPSetsTOK2kvpwlYAn+j5iFB30Uz4hXhOH5dib2zz2I7cYHi1kvzeNQqQOPNDCmaO48bcbRIaeqMAHdsb6scGzh/+CD2V2HOmHlhd+4o1PpX6hAMwmOXAu3bMDi4zlB9Hb1cSZnsYNBHawkD6y45QGepFKpGW/6u5VRPeMK62Gm9wu815C36B4mVg6CVqtZMbk0WYPIk6zfoTft3i04YthKbRO96a5VD9LssVbiSYnudXuZJjSllSZVCi9AKS8JVIS2jC2z+tWkquAesSrwztriRcs=
+ file: ${FILENAME}.tar.gz
+ on:
+ branch: development
+ repo: Joystream/substrate-node-joystream
+ draft: true
+ prerelease: true
+ overwrite: true
+ skip_cleanup: true
+ - provider: releases
+ api_key:
+ secure: ZoEXp8g+yZOEG8JZ1Fg6tWnW3aYDfupFbZflEejYaAdXhj1nw7G9N10ZX5VDdb/O1iFx8BhfFymQxk0ynxNC8c52LzOjKIhXEporxgvEPdnoPS/N1JhfsOUV0ragwZDLv2tFVi2AT0K4w8WJFJDzrK4qHOMMQgVbVQZtFmDL1whHdfBD5FyFyKmMdZdWBtTGy4s7X0LnmxjNB4/3AMa540T3LowZ5H66MYZkQmAbtg8ib93WomVanhS23vbjNaH9x1Kmzxd2B3pCSgI8uaxBrpmzINvAeSusYVJQt0EF/cAPXmq0+JmGoocvcS1ecg/SNZoKUNmeElB4ns/obg/QAyE+fyQtyl+iDYBilhFLm5xRMUnqkpyeUUD3u824i/Z+/tfLvtm5Egg1QAiXtIIJMeAj1nN8OIeSlHR4phnSTA3jl2PZw9QYidtV9WCqHC0qxtpkYSKkC8ItaefScPB1AuvOvVx8xvnIxfR/tXvL8Y3Y2BvhiLgpky9JkbdMln1b0m0E5c4vyGCEVqHqpbxM63VJkpct8sVx0atGvipWEelVjz5XpkxW2PYbgg4EKUzl3FiYcXwf5Y/ykxaZNZt7I4gv9nz2KkVwUCCPqdwWF7ww1shFWW5tCoCmJuUESOdPFx0jQ7LVWz7SDLDsqvvaW2c2OPxG6DIx9BiTeAE4qIQ=
+ file: "${FILENAME}.tar.gz"
+ skip_cleanup: true
+ draft: true
+ prerelease: true
+ overwrite: true
+ on:
+ repo: mnaamani/substrate-node-joystream
+ branch: deploy
\ No newline at end of file
diff --git a/Cargo.lock b/Cargo.lock
new file mode 100644
index 0000000000..8621e62937
--- /dev/null
+++ b/Cargo.lock
@@ -0,0 +1,6471 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+[[package]]
+name = "adler32"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5d2e7343e7fc9de883d1b0341e0b13970f764c14101234857d2ddafa1cb1cac2"
+
+[[package]]
+name = "aes-ctr"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d2e5b0458ea3beae0d1d8c0f3946564f8e10f90646cf78c06b4351052058d1ee"
+dependencies = [
+ "aes-soft",
+ "aesni",
+ "ctr",
+ "stream-cipher",
+]
+
+[[package]]
+name = "aes-soft"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d"
+dependencies = [
+ "block-cipher-trait",
+ "byteorder 1.3.4",
+ "opaque-debug",
+]
+
+[[package]]
+name = "aesni"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100"
+dependencies = [
+ "block-cipher-trait",
+ "opaque-debug",
+ "stream-cipher",
+]
+
+[[package]]
+name = "ahash"
+version = "0.2.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6f33b5018f120946c1dcf279194f238a9f146725593ead1c08fa47ff22b0b5d3"
+dependencies = [
+ "const-random",
+]
+
+[[package]]
+name = "aho-corasick"
+version = "0.7.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8716408b8bc624ed7f65d223ddb9ac2d044c0547b6fa4b0d554f3a9540496ada"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
+name = "ansi_term"
+version = "0.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
+dependencies = [
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "ansi_term"
+version = "0.12.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
+dependencies = [
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "app_dirs"
+version = "1.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e73a24bad9bd6a94d6395382a6c69fe071708ae4409f763c5475e14ee896313d"
+dependencies = [
+ "ole32-sys",
+ "shell32-sys",
+ "winapi 0.2.8",
+ "xdg",
+]
+
+[[package]]
+name = "arc-swap"
+version = "0.4.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d663a8e9a99154b5fb793032533f6328da35e23aac63d5c152279aa8ba356825"
+
+[[package]]
+name = "arrayref"
+version = "0.3.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
+
+[[package]]
+name = "arrayvec"
+version = "0.4.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9"
+dependencies = [
+ "nodrop",
+]
+
+[[package]]
+name = "arrayvec"
+version = "0.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
+
+[[package]]
+name = "asn1_der"
+version = "0.6.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6fce6b6a0ffdafebd82c87e79e3f40e8d2c523e5fea5566ff6b90509bf98d638"
+dependencies = [
+ "asn1_der_derive",
+]
+
+[[package]]
+name = "asn1_der_derive"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0d0864d84b8e07b145449be9a8537db86bf9de5ce03b913214694643b4743502"
+dependencies = [
+ "quote 1.0.3",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "atty"
+version = "0.2.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
+dependencies = [
+ "hermit-abi",
+ "libc",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "autocfg"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
+
+[[package]]
+name = "autocfg"
+version = "1.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
+
+[[package]]
+name = "backtrace"
+version = "0.3.46"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b1e692897359247cc6bb902933361652380af0f1b7651ae5c5013407f30e109e"
+dependencies = [
+ "backtrace-sys",
+ "cfg-if",
+ "libc",
+ "rustc-demangle",
+]
+
+[[package]]
+name = "backtrace-sys"
+version = "0.1.35"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7de8aba10a69c8e8d7622c5710229485ec32e9d55fdad160ea559c086fdcd118"
+dependencies = [
+ "cc",
+ "libc",
+]
+
+[[package]]
+name = "base58"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83"
+
+[[package]]
+name = "base64"
+version = "0.10.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
+dependencies = [
+ "byteorder 1.3.4",
+]
+
+[[package]]
+name = "bindgen"
+version = "0.47.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "df683a55b54b41d5ea8ebfaebb5aa7e6b84e3f3006a78f010dadc9ca88469260"
+dependencies = [
+ "bitflags",
+ "cexpr",
+ "cfg-if",
+ "clang-sys",
+ "clap",
+ "env_logger 0.6.2",
+ "hashbrown 0.1.8",
+ "lazy_static",
+ "log",
+ "peeking_take_while",
+ "proc-macro2 0.4.30",
+ "quote 0.6.13",
+ "regex",
+ "which",
+]
+
+[[package]]
+name = "bitflags"
+version = "1.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
+
+[[package]]
+name = "bitmask"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead"
+
+[[package]]
+name = "bitvec"
+version = "0.17.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "41262f11d771fd4a61aa3ce019fca363b4b6c282fca9da2a31186d3965a47a5c"
+dependencies = [
+ "either",
+ "radium",
+]
+
+[[package]]
+name = "blake2"
+version = "0.8.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "94cb07b0da6a73955f8fb85d24c466778e70cda767a568229b104f0264089330"
+dependencies = [
+ "byte-tools",
+ "crypto-mac",
+ "digest",
+ "opaque-debug",
+]
+
+[[package]]
+name = "blake2-rfc"
+version = "0.2.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400"
+dependencies = [
+ "arrayvec 0.4.12",
+ "constant_time_eq",
+]
+
+[[package]]
+name = "block-buffer"
+version = "0.7.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
+dependencies = [
+ "block-padding",
+ "byte-tools",
+ "byteorder 1.3.4",
+ "generic-array",
+]
+
+[[package]]
+name = "block-cipher-trait"
+version = "0.6.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774"
+dependencies = [
+ "generic-array",
+]
+
+[[package]]
+name = "block-padding"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
+dependencies = [
+ "byte-tools",
+]
+
+[[package]]
+name = "bs58"
+version = "0.2.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c95ee6bba9d950218b6cc910cf62bc9e0a171d0f4537e3627b0f54d08549b188"
+
+[[package]]
+name = "bs58"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b170cd256a3f9fa6b9edae3e44a7dfdfc77e8124dbc3e2612d75f9c3e2396dae"
+
+[[package]]
+name = "bstr"
+version = "0.2.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2889e6d50f394968c8bf4240dc3f2a7eb4680844d27308f798229ac9d4725f41"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
+name = "bumpalo"
+version = "3.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "12ae9db68ad7fac5fe51304d20f016c911539251075a214f8e663babefa35187"
+
+[[package]]
+name = "byte-slice-cast"
+version = "0.3.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b0a5e3906bcbf133e33c1d4d95afc664ad37fbdb9f6568d8043e7ea8c27d93d3"
+
+[[package]]
+name = "byte-tools"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
+
+[[package]]
+name = "byteorder"
+version = "0.5.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855"
+
+[[package]]
+name = "byteorder"
+version = "1.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
+
+[[package]]
+name = "bytes"
+version = "0.4.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
+dependencies = [
+ "byteorder 1.3.4",
+ "either",
+ "iovec",
+]
+
+[[package]]
+name = "bytes"
+version = "0.5.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "130aac562c0dd69c56b3b1cc8ffd2e17be31d0b6c25b61c96b76231aa23e39e1"
+
+[[package]]
+name = "c_linked_list"
+version = "1.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b"
+
+[[package]]
+name = "cc"
+version = "1.0.50"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd"
+dependencies = [
+ "jobserver",
+]
+
+[[package]]
+name = "cexpr"
+version = "0.3.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fce5b5fb86b0c57c20c834c1b412fd09c77c8a59b9473f86272709e78874cd1d"
+dependencies = [
+ "nom",
+]
+
+[[package]]
+name = "cfg-if"
+version = "0.1.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
+
+[[package]]
+name = "chain-spec-builder"
+version = "2.0.0-alpha.3"
+dependencies = [
+ "ansi_term 0.12.1",
+ "joystream-node",
+ "rand 0.7.3",
+ "structopt",
+ "substrate-keystore",
+ "substrate-primitives",
+ "substrate-telemetry",
+]
+
+[[package]]
+name = "chrono"
+version = "0.4.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "80094f509cf8b5ae86a4966a39b3ff66cd7e2a3e594accec3743ff3fabeab5b2"
+dependencies = [
+ "num-integer",
+ "num-traits",
+ "time",
+]
+
+[[package]]
+name = "clang-sys"
+version = "0.26.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6ef0c1bcf2e99c649104bd7a7012d8f8802684400e03db0ec0af48583c6fa0e4"
+dependencies = [
+ "glob",
+ "libc",
+ "libloading",
+]
+
+[[package]]
+name = "clap"
+version = "2.33.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
+dependencies = [
+ "ansi_term 0.11.0",
+ "atty",
+ "bitflags",
+ "strsim",
+ "textwrap",
+ "unicode-width",
+ "vec_map",
+]
+
+[[package]]
+name = "clear_on_drop"
+version = "0.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "97276801e127ffb46b66ce23f35cc96bd454fa311294bced4bbace7baa8b1d17"
+dependencies = [
+ "cc",
+]
+
+[[package]]
+name = "cloudabi"
+version = "0.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
+dependencies = [
+ "bitflags",
+]
+
+[[package]]
+name = "const-random"
+version = "0.1.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2f1af9ac737b2dd2d577701e59fd09ba34822f6f2ebdb30a7647405d9e55e16a"
+dependencies = [
+ "const-random-macro",
+ "proc-macro-hack 0.5.15",
+]
+
+[[package]]
+name = "const-random-macro"
+version = "0.1.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "25e4c606eb459dd29f7c57b2e0879f2b6f14ee130918c2b78ccb58a9624e6c7a"
+dependencies = [
+ "getrandom",
+ "proc-macro-hack 0.5.15",
+]
+
+[[package]]
+name = "constant_time_eq"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
+
+[[package]]
+name = "crc32fast"
+version = "1.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1"
+dependencies = [
+ "cfg-if",
+]
+
+[[package]]
+name = "crossbeam-channel"
+version = "0.3.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c8ec7fcd21571dc78f96cc96243cab8d8f035247c3efd16c687be154c3fa9efa"
+dependencies = [
+ "crossbeam-utils 0.6.6",
+]
+
+[[package]]
+name = "crossbeam-deque"
+version = "0.7.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285"
+dependencies = [
+ "crossbeam-epoch",
+ "crossbeam-utils 0.7.2",
+ "maybe-uninit",
+]
+
+[[package]]
+name = "crossbeam-epoch"
+version = "0.8.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
+dependencies = [
+ "autocfg 1.0.0",
+ "cfg-if",
+ "crossbeam-utils 0.7.2",
+ "lazy_static",
+ "maybe-uninit",
+ "memoffset",
+ "scopeguard 1.1.0",
+]
+
+[[package]]
+name = "crossbeam-queue"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c695eeca1e7173472a32221542ae469b3e9aac3a4fc81f7696bcad82029493db"
+dependencies = [
+ "cfg-if",
+ "crossbeam-utils 0.7.2",
+]
+
+[[package]]
+name = "crossbeam-utils"
+version = "0.6.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6"
+dependencies = [
+ "cfg-if",
+ "lazy_static",
+]
+
+[[package]]
+name = "crossbeam-utils"
+version = "0.7.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
+dependencies = [
+ "autocfg 1.0.0",
+ "cfg-if",
+ "lazy_static",
+]
+
+[[package]]
+name = "crunchy"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
+
+[[package]]
+name = "crypto-mac"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5"
+dependencies = [
+ "generic-array",
+ "subtle 1.0.0",
+]
+
+[[package]]
+name = "ct-logs"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4d3686f5fa27dbc1d76c751300376e167c5a43387f44bb451fd1c24776e49113"
+dependencies = [
+ "sct",
+]
+
+[[package]]
+name = "ctr"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "022cd691704491df67d25d006fe8eca083098253c4d43516c2206479c58c6736"
+dependencies = [
+ "block-cipher-trait",
+ "stream-cipher",
+]
+
+[[package]]
+name = "ctrlc"
+version = "3.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7a4ba686dff9fa4c1c9636ce1010b0cf98ceb421361b0bb3d6faeec43bd217a7"
+dependencies = [
+ "nix",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "cuckoofilter"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8dd43f7cfaffe0a386636a10baea2ee05cc50df3b77bea4a456c9572a939bf1f"
+dependencies = [
+ "byteorder 0.5.3",
+ "rand 0.3.23",
+]
+
+[[package]]
+name = "curve25519-dalek"
+version = "1.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8b7dcd30ba50cdf88b55b033456138b7c0ac4afdc436d82e1b79f370f24cc66d"
+dependencies = [
+ "byteorder 1.3.4",
+ "clear_on_drop",
+ "digest",
+ "rand_core 0.3.1",
+ "subtle 2.2.2",
+]
+
+[[package]]
+name = "curve25519-dalek"
+version = "2.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "26778518a7f6cffa1d25a44b602b62b979bd88adb9e99ffec546998cf3404839"
+dependencies = [
+ "byteorder 1.3.4",
+ "digest",
+ "rand_core 0.5.1",
+ "subtle 2.2.2",
+ "zeroize 1.1.0",
+]
+
+[[package]]
+name = "data-encoding"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "11c0346158a19b3627234e15596f5e465c360fcdb97d817bcb255e0510f5a788"
+
+[[package]]
+name = "derivative"
+version = "2.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1eae4d76b7cefedd1b4f8cc24378b2fbd1ac1b66e3bbebe8e2192d3be81cb355"
+dependencies = [
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "derive_more"
+version = "0.14.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6d944ac6003ed268757ef1ee686753b57efc5fcf0ebe7b64c9fc81e7e32ff839"
+dependencies = [
+ "proc-macro2 0.4.30",
+ "quote 0.6.13",
+ "rustc_version",
+ "syn 0.15.44",
+]
+
+[[package]]
+name = "derive_more"
+version = "0.15.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7a141330240c921ec6d074a3e188a7c7ef95668bb95e7d44fa0e5778ec2a7afe"
+dependencies = [
+ "lazy_static",
+ "proc-macro2 0.4.30",
+ "quote 0.6.13",
+ "regex",
+ "rustc_version",
+ "syn 0.15.44",
+]
+
+[[package]]
+name = "difference"
+version = "2.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
+
+[[package]]
+name = "digest"
+version = "0.8.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
+dependencies = [
+ "generic-array",
+]
+
+[[package]]
+name = "dns-parser"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea"
+dependencies = [
+ "byteorder 1.3.4",
+ "quick-error",
+]
+
+[[package]]
+name = "doc-comment"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
+
+[[package]]
+name = "downcast"
+version = "0.10.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4bb454f0228b18c7f4c3b0ebbee346ed9c52e7443b0999cd543ff3571205701d"
+
+[[package]]
+name = "ed25519-dalek"
+version = "0.9.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2d07e8b8a8386c3b89a7a4b329fdfa4cb545de2545e9e2ebbc3dd3929253e426"
+dependencies = [
+ "clear_on_drop",
+ "curve25519-dalek 1.2.3",
+ "failure",
+ "rand 0.6.5",
+]
+
+[[package]]
+name = "ed25519-dalek"
+version = "1.0.0-pre.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "978710b352437433c97b2bff193f2fb1dfd58a093f863dd95e225a19baa599a2"
+dependencies = [
+ "clear_on_drop",
+ "curve25519-dalek 2.0.0",
+ "rand 0.7.3",
+ "sha2",
+]
+
+[[package]]
+name = "either"
+version = "1.5.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3"
+
+[[package]]
+name = "elastic-array"
+version = "0.10.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "580f3768bd6465780d063f5b8213a2ebd506e139b345e4a81eb301ceae3d61e1"
+dependencies = [
+ "heapsize",
+]
+
+[[package]]
+name = "env_logger"
+version = "0.6.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3"
+dependencies = [
+ "atty",
+ "humantime",
+ "log",
+ "regex",
+ "termcolor",
+]
+
+[[package]]
+name = "env_logger"
+version = "0.7.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
+dependencies = [
+ "atty",
+ "humantime",
+ "log",
+ "regex",
+ "termcolor",
+]
+
+[[package]]
+name = "environmental"
+version = "1.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "516aa8d7a71cb00a1c4146f0798549b93d083d4f189b3ced8f3de6b8f11ee6c4"
+
+[[package]]
+name = "erased-serde"
+version = "0.3.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d88b6d1705e16a4d62e05ea61cc0496c2bd190f4fa8e5c1f11ce747be6bcf3d1"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "exit-future"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d8013f441e38e31c670e7f34ec8f1d5d3a2bd9d303c1ff83976ca886005e8f48"
+dependencies = [
+ "futures 0.1.29",
+ "parking_lot 0.7.1",
+]
+
+[[package]]
+name = "failure"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b8529c2421efa3066a5cbd8063d2244603824daccb6936b079010bb2aa89464b"
+dependencies = [
+ "backtrace",
+ "failure_derive",
+]
+
+[[package]]
+name = "failure_derive"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "030a733c8287d6213886dd487564ff5c8f6aae10278b3588ed177f9d18f8d231"
+dependencies = [
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+ "synstructure",
+]
+
+[[package]]
+name = "fake-simd"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
+
+[[package]]
+name = "fdlimit"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0da54a593b34c71b889ee45f5b5bb900c74148c5f7f8c6a9479ee7899f69603c"
+dependencies = [
+ "libc",
+]
+
+[[package]]
+name = "finality-grandpa"
+version = "0.9.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "34754852da8d86bc509715292c73140a5b678656d0b16132acd6737bdb5fd5f8"
+dependencies = [
+ "futures 0.1.29",
+ "hashbrown 0.6.3",
+ "log",
+ "num-traits",
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+]
+
+[[package]]
+name = "fixed-hash"
+version = "0.5.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3367952ceb191f4ab95dd5685dc163ac539e36202f9fcfd0cb22f9f9c542fefc"
+dependencies = [
+ "byteorder 1.3.4",
+ "libc",
+ "rand 0.7.3",
+ "rustc-hex",
+ "static_assertions",
+]
+
+[[package]]
+name = "fixedbitset"
+version = "0.1.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33"
+
+[[package]]
+name = "flate2"
+version = "1.0.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2cfff41391129e0a856d6d822600b8d71179d46879e310417eb9c762eb178b42"
+dependencies = [
+ "cfg-if",
+ "crc32fast",
+ "futures 0.1.29",
+ "libc",
+ "libz-sys",
+ "miniz_oxide",
+ "tokio-io",
+]
+
+[[package]]
+name = "float-cmp"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "da62c4f1b81918835a8c6a484a397775fff5953fe83529afd51b05f5c6a6617d"
+dependencies = [
+ "num-traits",
+]
+
+[[package]]
+name = "fnv"
+version = "1.0.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3"
+
+[[package]]
+name = "fork-tree"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+]
+
+[[package]]
+name = "fragile"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "05f8140122fa0d5dcb9fc8627cfce2b37cc1500f752636d46ea28bc26785c2f9"
+
+[[package]]
+name = "fs-swap"
+version = "0.2.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb"
+dependencies = [
+ "lazy_static",
+ "libc",
+ "libloading",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "fuchsia-cprng"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
+
+[[package]]
+name = "fuchsia-zircon"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
+dependencies = [
+ "bitflags",
+ "fuchsia-zircon-sys",
+]
+
+[[package]]
+name = "fuchsia-zircon-sys"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
+
+[[package]]
+name = "futures"
+version = "0.1.29"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1b980f2816d6ee8673b6517b52cb0e808a180efc92e5c19d02cdda79066703ef"
+
+[[package]]
+name = "futures"
+version = "0.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5c329ae8753502fb44ae4fc2b622fa2a94652c41e795143765ba0927f92ab780"
+dependencies = [
+ "futures-channel",
+ "futures-core",
+ "futures-executor",
+ "futures-io",
+ "futures-sink",
+ "futures-task",
+ "futures-util",
+]
+
+[[package]]
+name = "futures-channel"
+version = "0.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f0c77d04ce8edd9cb903932b608268b3fffec4163dc053b3b402bf47eac1f1a8"
+dependencies = [
+ "futures-core",
+ "futures-sink",
+]
+
+[[package]]
+name = "futures-channel-preview"
+version = "0.3.0-alpha.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d5e5f4df964fa9c1c2f8bddeb5c3611631cacd93baf810fc8bb2fb4b495c263a"
+dependencies = [
+ "futures-core-preview",
+ "futures-sink-preview",
+]
+
+[[package]]
+name = "futures-core"
+version = "0.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f25592f769825e89b92358db00d26f965761e094951ac44d3663ef25b7ac464a"
+
+[[package]]
+name = "futures-core-preview"
+version = "0.3.0-alpha.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b35b6263fb1ef523c3056565fa67b1d16f0a8604ff12b11b08c25f28a734c60a"
+
+[[package]]
+name = "futures-cpupool"
+version = "0.1.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4"
+dependencies = [
+ "futures 0.1.29",
+ "num_cpus",
+]
+
+[[package]]
+name = "futures-executor"
+version = "0.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f674f3e1bcb15b37284a90cedf55afdba482ab061c407a9c0ebbd0f3109741ba"
+dependencies = [
+ "futures-core",
+ "futures-task",
+ "futures-util",
+ "num_cpus",
+]
+
+[[package]]
+name = "futures-executor-preview"
+version = "0.3.0-alpha.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "75236e88bd9fe88e5e8bfcd175b665d0528fe03ca4c5207fabc028c8f9d93e98"
+dependencies = [
+ "futures-core-preview",
+ "futures-util-preview",
+ "num_cpus",
+]
+
+[[package]]
+name = "futures-io"
+version = "0.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a638959aa96152c7a4cddf50fcb1e3fede0583b27157c26e67d6f99904090dc6"
+
+[[package]]
+name = "futures-io-preview"
+version = "0.3.0-alpha.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f4914ae450db1921a56c91bde97a27846287d062087d4a652efc09bb3a01ebda"
+
+[[package]]
+name = "futures-macro"
+version = "0.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9a5081aa3de1f7542a794a397cde100ed903b0630152d0973479018fd85423a7"
+dependencies = [
+ "proc-macro-hack 0.5.15",
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "futures-preview"
+version = "0.3.0-alpha.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3b1dce2a0267ada5c6ff75a8ba864b4e679a9e2aa44262af7a3b5516d530d76e"
+dependencies = [
+ "futures-channel-preview",
+ "futures-core-preview",
+ "futures-executor-preview",
+ "futures-io-preview",
+ "futures-sink-preview",
+ "futures-util-preview",
+]
+
+[[package]]
+name = "futures-sink"
+version = "0.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3466821b4bc114d95b087b850a724c6f83115e929bc88f1fa98a3304a944c8a6"
+
+[[package]]
+name = "futures-sink-preview"
+version = "0.3.0-alpha.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "86f148ef6b69f75bb610d4f9a2336d4fc88c4b5b67129d1a340dd0fd362efeec"
+
+[[package]]
+name = "futures-task"
+version = "0.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7b0a34e53cf6cdcd0178aa573aed466b646eb3db769570841fda0c7ede375a27"
+
+[[package]]
+name = "futures-timer"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "878f1d2fc31355fa02ed2372e741b0c17e58373341e6a122569b4623a14a7d33"
+dependencies = [
+ "futures-core-preview",
+ "futures-util-preview",
+ "pin-utils",
+]
+
+[[package]]
+name = "futures-util"
+version = "0.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "22766cf25d64306bedf0384da004d05c9974ab104fcc4528f1236181c18004c5"
+dependencies = [
+ "futures-channel",
+ "futures-core",
+ "futures-io",
+ "futures-macro",
+ "futures-sink",
+ "futures-task",
+ "memchr",
+ "pin-utils",
+ "proc-macro-hack 0.5.15",
+ "proc-macro-nested",
+ "slab",
+]
+
+[[package]]
+name = "futures-util-preview"
+version = "0.3.0-alpha.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5ce968633c17e5f97936bd2797b6e38fb56cf16a7422319f7ec2e30d3c470e8d"
+dependencies = [
+ "futures 0.1.29",
+ "futures-channel-preview",
+ "futures-core-preview",
+ "futures-io-preview",
+ "futures-sink-preview",
+ "memchr",
+ "pin-utils",
+ "slab",
+]
+
+[[package]]
+name = "gcc"
+version = "0.3.55"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2"
+
+[[package]]
+name = "generic-array"
+version = "0.12.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
+dependencies = [
+ "typenum",
+]
+
+[[package]]
+name = "get_if_addrs"
+version = "0.5.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "abddb55a898d32925f3148bd281174a68eeb68bbfd9a5938a57b18f506ee4ef7"
+dependencies = [
+ "c_linked_list",
+ "get_if_addrs-sys",
+ "libc",
+ "winapi 0.2.8",
+]
+
+[[package]]
+name = "get_if_addrs-sys"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0d04f9fb746cf36b191c00f3ede8bde9c8e64f9f4b05ae2694a9ccf5e3f5ab48"
+dependencies = [
+ "gcc",
+ "libc",
+]
+
+[[package]]
+name = "getrandom"
+version = "0.1.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
+dependencies = [
+ "cfg-if",
+ "libc",
+ "wasi",
+]
+
+[[package]]
+name = "glob"
+version = "0.2.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb"
+
+[[package]]
+name = "globset"
+version = "0.4.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7ad1da430bd7281dde2576f44c84cc3f0f7b475e7202cd503042dff01a8c8120"
+dependencies = [
+ "aho-corasick",
+ "bstr",
+ "fnv",
+ "log",
+ "regex",
+]
+
+[[package]]
+name = "h2"
+version = "0.1.26"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462"
+dependencies = [
+ "byteorder 1.3.4",
+ "bytes 0.4.12",
+ "fnv",
+ "futures 0.1.29",
+ "http",
+ "indexmap",
+ "log",
+ "slab",
+ "string",
+ "tokio-io",
+]
+
+[[package]]
+name = "hash-db"
+version = "0.15.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d23bd4e7b5eda0d0f3a307e8b381fdc8ba9000f26fbe912250c0a4cc3956364a"
+
+[[package]]
+name = "hash256-std-hasher"
+version = "0.15.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "92c171d55b98633f4ed3860808f004099b36c1cc29c42cfc53aa8591b21efcf2"
+dependencies = [
+ "crunchy",
+]
+
+[[package]]
+name = "hashbrown"
+version = "0.1.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da"
+dependencies = [
+ "byteorder 1.3.4",
+ "scopeguard 0.3.3",
+]
+
+[[package]]
+name = "hashbrown"
+version = "0.6.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8e6073d0ca812575946eb5f35ff68dbe519907b25c42530389ff946dc84c6ead"
+dependencies = [
+ "ahash",
+ "autocfg 0.1.7",
+]
+
+[[package]]
+name = "heapsize"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1679e6ea370dee694f91f1dc469bf94cf8f52051d147aec3e1f9497c6fc22461"
+dependencies = [
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "heck"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205"
+dependencies = [
+ "unicode-segmentation",
+]
+
+[[package]]
+name = "hermit-abi"
+version = "0.1.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "725cf19794cf90aa94e65050cb4191ff5d8fa87a498383774c47b332e3af952e"
+dependencies = [
+ "libc",
+]
+
+[[package]]
+name = "hex"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
+
+[[package]]
+name = "hex"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"
+
+[[package]]
+name = "hex-literal"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ddc2928beef125e519d69ae1baa8c37ea2e0d3848545217f6db0179c5eb1d639"
+dependencies = [
+ "hex-literal-impl 0.1.2",
+ "proc-macro-hack 0.4.2",
+]
+
+[[package]]
+name = "hex-literal"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "961de220ec9a91af2e1e5bd80d02109155695e516771762381ef8581317066e0"
+dependencies = [
+ "hex-literal-impl 0.2.1",
+ "proc-macro-hack 0.5.15",
+]
+
+[[package]]
+name = "hex-literal-impl"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "520870c3213943eb8d7803e80180d12a6c7ceb4ae74602544529d1643dc4ddda"
+dependencies = [
+ "proc-macro-hack 0.4.2",
+]
+
+[[package]]
+name = "hex-literal-impl"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9d4c5c844e2fee0bf673d54c2c177f1713b3d2af2ff6e666b49cb7572e6cf42d"
+dependencies = [
+ "proc-macro-hack 0.5.15",
+]
+
+[[package]]
+name = "hmac"
+version = "0.7.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695"
+dependencies = [
+ "crypto-mac",
+ "digest",
+]
+
+[[package]]
+name = "hmac-drbg"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c6e570451493f10f6581b48cdd530413b63ea9e780f544bfd3bdcaa0d89d1a7b"
+dependencies = [
+ "digest",
+ "generic-array",
+ "hmac",
+]
+
+[[package]]
+name = "http"
+version = "0.1.21"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0"
+dependencies = [
+ "bytes 0.4.12",
+ "fnv",
+ "itoa",
+]
+
+[[package]]
+name = "http-body"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "http",
+ "tokio-buf",
+]
+
+[[package]]
+name = "httparse"
+version = "1.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9"
+
+[[package]]
+name = "humantime"
+version = "1.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
+dependencies = [
+ "quick-error",
+]
+
+[[package]]
+name = "hyper"
+version = "0.12.35"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9dbe6ed1438e1f8ad955a4701e9a944938e9519f6888d12d8558b645e247d5f6"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "futures-cpupool",
+ "h2",
+ "http",
+ "http-body",
+ "httparse",
+ "iovec",
+ "itoa",
+ "log",
+ "net2",
+ "rustc_version",
+ "time",
+ "tokio",
+ "tokio-buf",
+ "tokio-executor",
+ "tokio-io",
+ "tokio-reactor",
+ "tokio-tcp",
+ "tokio-threadpool",
+ "tokio-timer",
+ "want",
+]
+
+[[package]]
+name = "hyper-rustls"
+version = "0.17.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "719d85c7df4a7f309a77d145340a063ea929dcb2e025bae46a80345cffec2952"
+dependencies = [
+ "bytes 0.4.12",
+ "ct-logs",
+ "futures 0.1.29",
+ "hyper",
+ "rustls",
+ "tokio-io",
+ "tokio-rustls",
+ "webpki",
+ "webpki-roots 0.17.0",
+]
+
+[[package]]
+name = "idna"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
+dependencies = [
+ "matches",
+ "unicode-bidi",
+ "unicode-normalization",
+]
+
+[[package]]
+name = "idna"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
+dependencies = [
+ "matches",
+ "unicode-bidi",
+ "unicode-normalization",
+]
+
+[[package]]
+name = "impl-codec"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1be51a921b067b0eaca2fad532d9400041561aa922221cc65f95a85641c6bf53"
+dependencies = [
+ "parity-scale-codec",
+]
+
+[[package]]
+name = "impl-serde"
+version = "0.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "58e3cae7e99c7ff5a995da2cf78dd0a5383740eda71d98cf7b1910c301ac69b8"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "impl-serde"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5bbe9ea9b182f0fb1cabbd61f4ff9b7b7b9197955e95a7e4c27de5055eb29ff8"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "impl-trait-for-tuples"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7ef5550a42e3740a0e71f909d4c861056a284060af885ae7aa6242820f920d9d"
+dependencies = [
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "indexmap"
+version = "1.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "076f042c5b7b98f31d205f1249267e12a6518c1481e9dae9764af19b707d2292"
+dependencies = [
+ "autocfg 1.0.0",
+]
+
+[[package]]
+name = "integer-sqrt"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f65877bf7d44897a473350b1046277941cee20b263397e90869c50b6e766088b"
+
+[[package]]
+name = "interleaved-ordered"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "141340095b15ed7491bd3d4ced9d20cebfb826174b6bb03386381f62b01e3d77"
+
+[[package]]
+name = "iovec"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
+dependencies = [
+ "libc",
+]
+
+[[package]]
+name = "ipnet"
+version = "2.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "47be2f14c678be2fdcab04ab1171db51b2762ce6f0a8ee87c8dd4a04ed216135"
+
+[[package]]
+name = "itertools"
+version = "0.8.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484"
+dependencies = [
+ "either",
+]
+
+[[package]]
+name = "itoa"
+version = "0.4.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b8b7a7c0c47db5545ed3fef7468ee7bb5b74691498139e4b3f6a20685dc6dd8e"
+
+[[package]]
+name = "jobserver"
+version = "0.1.21"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2"
+dependencies = [
+ "libc",
+]
+
+[[package]]
+name = "joystream-node"
+version = "2.1.6"
+dependencies = [
+ "ctrlc",
+ "derive_more 0.14.1",
+ "exit-future",
+ "futures 0.1.29",
+ "hex 0.4.2",
+ "hex-literal 0.2.1",
+ "joystream-node-runtime",
+ "jsonrpc-core 13.2.0",
+ "libp2p",
+ "log",
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+ "rand 0.7.3",
+ "serde",
+ "serde_json",
+ "sr-io",
+ "sr-primitives",
+ "srml-im-online",
+ "structopt",
+ "substrate-authority-discovery",
+ "substrate-basic-authorship",
+ "substrate-cli",
+ "substrate-client",
+ "substrate-client-db",
+ "substrate-consensus-babe",
+ "substrate-consensus-babe-primitives",
+ "substrate-executor",
+ "substrate-finality-grandpa",
+ "substrate-finality-grandpa-primitives",
+ "substrate-inherents",
+ "substrate-network",
+ "substrate-offchain",
+ "substrate-primitives",
+ "substrate-rpc",
+ "substrate-service",
+ "substrate-telemetry",
+ "substrate-transaction-pool",
+ "tokio",
+ "vergen",
+]
+
+[[package]]
+name = "joystream-node-runtime"
+version = "6.12.0"
+dependencies = [
+ "parity-scale-codec",
+ "safe-mix",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-staking-primitives",
+ "sr-std",
+ "sr-version",
+ "srml-authority-discovery",
+ "srml-authorship",
+ "srml-babe",
+ "srml-balances",
+ "srml-executive",
+ "srml-finality-tracker",
+ "srml-grandpa",
+ "srml-im-online",
+ "srml-indices",
+ "srml-offences",
+ "srml-randomness-collective-flip",
+ "srml-session",
+ "srml-staking",
+ "srml-staking-reward-curve",
+ "srml-sudo",
+ "srml-support",
+ "srml-system",
+ "srml-system-rpc-runtime-api",
+ "srml-timestamp",
+ "srml-transaction-payment",
+ "substrate-authority-discovery-primitives",
+ "substrate-client",
+ "substrate-common-module",
+ "substrate-consensus-babe-primitives",
+ "substrate-content-working-group-module",
+ "substrate-forum-module",
+ "substrate-governance-module",
+ "substrate-hiring-module",
+ "substrate-membership-module",
+ "substrate-memo-module",
+ "substrate-offchain-primitives",
+ "substrate-primitives",
+ "substrate-proposals-codex-module",
+ "substrate-proposals-discussion-module",
+ "substrate-proposals-engine-module",
+ "substrate-recurring-reward-module",
+ "substrate-roles-module",
+ "substrate-service-discovery-module",
+ "substrate-session",
+ "substrate-stake-module",
+ "substrate-storage-module",
+ "substrate-token-mint-module",
+ "substrate-versioned-store",
+ "substrate-versioned-store-permissions-module",
+ "substrate-wasm-builder-runner",
+]
+
+[[package]]
+name = "js-sys"
+version = "0.3.37"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6a27d435371a2fa5b6d2b028a74bbdb1234f308da363226a2854ca3ff8ba7055"
+dependencies = [
+ "wasm-bindgen",
+]
+
+[[package]]
+name = "jsonrpc-client-transports"
+version = "14.0.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0a9ae166c4d1f702d297cd76d4b55758ace80272ffc6dbb139fdc1bf810de40b"
+dependencies = [
+ "failure",
+ "futures 0.1.29",
+ "jsonrpc-core 14.0.5",
+ "jsonrpc-pubsub",
+ "log",
+ "serde",
+ "serde_json",
+ "url 1.7.2",
+]
+
+[[package]]
+name = "jsonrpc-core"
+version = "13.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d"
+dependencies = [
+ "futures 0.1.29",
+ "log",
+ "serde",
+ "serde_derive",
+ "serde_json",
+]
+
+[[package]]
+name = "jsonrpc-core"
+version = "14.0.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fe3b688648f1ef5d5072229e2d672ecb92cbff7d1c79bcf3fd5898f3f3df0970"
+dependencies = [
+ "futures 0.1.29",
+ "log",
+ "serde",
+ "serde_derive",
+ "serde_json",
+]
+
+[[package]]
+name = "jsonrpc-core-client"
+version = "14.0.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "080dc110be17701097df238fad3c816d4a478a1899dfbcf8ec8957dd40ec7304"
+dependencies = [
+ "jsonrpc-client-transports",
+]
+
+[[package]]
+name = "jsonrpc-derive"
+version = "14.0.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8609af8f63b626e8e211f52441fcdb6ec54f1a446606b10d5c89ae9bf8a20058"
+dependencies = [
+ "proc-macro-crate",
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "jsonrpc-http-server"
+version = "14.0.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "816d63997ea45d3634608edbef83ddb35e661f7c0b27b5b72f237e321f0e9807"
+dependencies = [
+ "hyper",
+ "jsonrpc-core 14.0.5",
+ "jsonrpc-server-utils",
+ "log",
+ "net2",
+ "parking_lot 0.10.0",
+ "unicase",
+]
+
+[[package]]
+name = "jsonrpc-pubsub"
+version = "14.0.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5b31c9b90731276fdd24d896f31bb10aecf2e5151733364ae81123186643d939"
+dependencies = [
+ "jsonrpc-core 14.0.5",
+ "log",
+ "parking_lot 0.10.0",
+ "serde",
+]
+
+[[package]]
+name = "jsonrpc-server-utils"
+version = "14.0.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "95b7635e618a0edbbe0d2a2bbbc69874277c49383fcf6c3c0414491cfb517d22"
+dependencies = [
+ "bytes 0.4.12",
+ "globset",
+ "jsonrpc-core 14.0.5",
+ "lazy_static",
+ "log",
+ "tokio",
+ "tokio-codec",
+ "unicase",
+]
+
+[[package]]
+name = "jsonrpc-ws-server"
+version = "14.0.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b94e5773b2ae66e0e02c80775ce6bbba6f15d5bb47c14ec36a36fcf94f8df851"
+dependencies = [
+ "jsonrpc-core 14.0.5",
+ "jsonrpc-server-utils",
+ "log",
+ "parking_lot 0.10.0",
+ "slab",
+ "ws",
+]
+
+[[package]]
+name = "keccak"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7"
+
+[[package]]
+name = "kernel32-sys"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
+dependencies = [
+ "winapi 0.2.8",
+ "winapi-build",
+]
+
+[[package]]
+name = "kvdb"
+version = "0.1.0"
+source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d"
+dependencies = [
+ "elastic-array",
+ "parity-bytes",
+]
+
+[[package]]
+name = "kvdb-memorydb"
+version = "0.1.0"
+source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d"
+dependencies = [
+ "kvdb",
+ "parking_lot 0.6.4",
+]
+
+[[package]]
+name = "kvdb-rocksdb"
+version = "0.1.4"
+source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d"
+dependencies = [
+ "elastic-array",
+ "fs-swap",
+ "interleaved-ordered",
+ "kvdb",
+ "log",
+ "num_cpus",
+ "parking_lot 0.6.4",
+ "regex",
+ "rocksdb",
+]
+
+[[package]]
+name = "lazy_static"
+version = "1.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
+
+[[package]]
+name = "lazycell"
+version = "1.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f"
+
+[[package]]
+name = "libc"
+version = "0.2.68"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dea0c0405123bba743ee3f91f49b1c7cfb684eef0da0a50110f758ccf24cdff0"
+
+[[package]]
+name = "libloading"
+version = "0.5.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753"
+dependencies = [
+ "cc",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "libp2p"
+version = "0.13.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9b4674c6738fdd8b1cf7104dd046abcef78dc932fe25f8eb40f3a8e71341717d"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "lazy_static",
+ "libp2p-core",
+ "libp2p-core-derive",
+ "libp2p-deflate",
+ "libp2p-dns",
+ "libp2p-floodsub",
+ "libp2p-identify",
+ "libp2p-kad",
+ "libp2p-mdns",
+ "libp2p-mplex",
+ "libp2p-noise",
+ "libp2p-ping",
+ "libp2p-plaintext",
+ "libp2p-secio",
+ "libp2p-swarm",
+ "libp2p-tcp",
+ "libp2p-uds",
+ "libp2p-wasm-ext",
+ "libp2p-websocket",
+ "libp2p-yamux",
+ "parity-multiaddr 0.6.0",
+ "parity-multihash 0.2.3",
+ "parking_lot 0.9.0",
+ "smallvec 0.6.13",
+ "tokio-codec",
+ "tokio-executor",
+ "tokio-io",
+ "wasm-timer",
+]
+
+[[package]]
+name = "libp2p-core"
+version = "0.13.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "01efc769c392d0d8863a7160d266f9b9f794968554f87490c8af4aa34ccaa94f"
+dependencies = [
+ "asn1_der",
+ "bs58 0.3.0",
+ "bytes 0.4.12",
+ "ed25519-dalek 1.0.0-pre.3",
+ "failure",
+ "fnv",
+ "futures 0.1.29",
+ "lazy_static",
+ "libsecp256k1",
+ "log",
+ "multistream-select",
+ "parity-multiaddr 0.6.0",
+ "parity-multihash 0.2.3",
+ "parking_lot 0.9.0",
+ "protobuf",
+ "quick-error",
+ "rand 0.7.3",
+ "ring",
+ "rw-stream-sink",
+ "sha2",
+ "smallvec 0.6.13",
+ "tokio-executor",
+ "tokio-io",
+ "unsigned-varint 0.2.3",
+ "untrusted",
+ "void",
+ "wasm-timer",
+ "zeroize 1.1.0",
+]
+
+[[package]]
+name = "libp2p-core-derive"
+version = "0.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1eeb2704ac14c60f31967e351ed928b848526a5fc6db4104520020665012826f"
+dependencies = [
+ "quote 0.6.13",
+ "syn 0.15.44",
+]
+
+[[package]]
+name = "libp2p-deflate"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ef2b0bf5d37692ac90e2bffa436bec26c0b0def6c0cab7ea85ff67a353d58aaa"
+dependencies = [
+ "flate2",
+ "futures 0.1.29",
+ "libp2p-core",
+ "tokio-io",
+]
+
+[[package]]
+name = "libp2p-dns"
+version = "0.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e3175fb0fc9016c95c8517a297bbdb5fb6bfbd5665bacd2eb23495d1cbdeb033"
+dependencies = [
+ "futures 0.1.29",
+ "libp2p-core",
+ "log",
+ "tokio-dns-unofficial",
+]
+
+[[package]]
+name = "libp2p-floodsub"
+version = "0.13.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b360bbaad2560d6b8a905bd63528273d933fe54475a44def47f31e23108b3683"
+dependencies = [
+ "bs58 0.3.0",
+ "bytes 0.4.12",
+ "cuckoofilter",
+ "fnv",
+ "futures 0.1.29",
+ "libp2p-core",
+ "libp2p-swarm",
+ "protobuf",
+ "rand 0.6.5",
+ "smallvec 0.6.13",
+ "tokio-io",
+]
+
+[[package]]
+name = "libp2p-identify"
+version = "0.13.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c087bcd044a6f67a994573a92a109487a902a31555e4e63bcc4ae144c45594fe"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "libp2p-core",
+ "libp2p-swarm",
+ "log",
+ "parity-multiaddr 0.6.0",
+ "protobuf",
+ "smallvec 0.6.13",
+ "tokio-codec",
+ "tokio-io",
+ "unsigned-varint 0.2.3",
+ "wasm-timer",
+]
+
+[[package]]
+name = "libp2p-kad"
+version = "0.13.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dcaf76a5b33b6c0203e85d450ae1855cae6860dc82eb0174ac1fee8bf68f7af5"
+dependencies = [
+ "arrayvec 0.5.1",
+ "bytes 0.4.12",
+ "either",
+ "fnv",
+ "futures 0.1.29",
+ "libp2p-core",
+ "libp2p-swarm",
+ "log",
+ "parity-multiaddr 0.6.0",
+ "parity-multihash 0.2.3",
+ "protobuf",
+ "rand 0.7.3",
+ "sha2",
+ "smallvec 0.6.13",
+ "tokio-codec",
+ "tokio-io",
+ "uint",
+ "unsigned-varint 0.2.3",
+ "void",
+ "wasm-timer",
+]
+
+[[package]]
+name = "libp2p-mdns"
+version = "0.13.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c4c2e225a7dfc571c3ad77a0a5ecccc9537afe42d72289ac9f19768567cd677d"
+dependencies = [
+ "data-encoding",
+ "dns-parser",
+ "futures 0.1.29",
+ "libp2p-core",
+ "libp2p-swarm",
+ "log",
+ "net2",
+ "parity-multiaddr 0.6.0",
+ "rand 0.6.5",
+ "smallvec 0.6.13",
+ "tokio-io",
+ "tokio-reactor",
+ "tokio-udp",
+ "void",
+ "wasm-timer",
+]
+
+[[package]]
+name = "libp2p-mplex"
+version = "0.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e2fe584816d993dc0f893396521a3c93191d78a6f28a892b150baa714a12c3e5"
+dependencies = [
+ "bytes 0.4.12",
+ "fnv",
+ "futures 0.1.29",
+ "libp2p-core",
+ "log",
+ "parking_lot 0.8.0",
+ "tokio-codec",
+ "tokio-io",
+ "unsigned-varint 0.2.3",
+]
+
+[[package]]
+name = "libp2p-noise"
+version = "0.11.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d50494fcba7cdab08390d72b3cb9d2c72fcf178e6a0c1043855ab259d818b972"
+dependencies = [
+ "bytes 0.4.12",
+ "curve25519-dalek 1.2.3",
+ "futures 0.1.29",
+ "lazy_static",
+ "libp2p-core",
+ "log",
+ "protobuf",
+ "rand 0.7.3",
+ "ring",
+ "snow",
+ "tokio-io",
+ "x25519-dalek",
+ "zeroize 1.1.0",
+]
+
+[[package]]
+name = "libp2p-ping"
+version = "0.13.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5b975ad345eb9bb29ddc64670664a50a8ab3e66e28357abb0f83cfc0a9ca2d78"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "libp2p-core",
+ "libp2p-swarm",
+ "log",
+ "parity-multiaddr 0.6.0",
+ "rand 0.7.3",
+ "tokio-io",
+ "void",
+ "wasm-timer",
+]
+
+[[package]]
+name = "libp2p-plaintext"
+version = "0.13.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6f07be6983e1c00e8f6a5676da54ed3a8cae7fb50f1fb6ea163414613ca656cc"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "libp2p-core",
+ "log",
+ "protobuf",
+ "rw-stream-sink",
+ "tokio-io",
+ "void",
+]
+
+[[package]]
+name = "libp2p-secio"
+version = "0.13.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "04aa6d67a5fb2b36241a1ba54037a13deb2594cf141e43b597ce379521d530a8"
+dependencies = [
+ "aes-ctr",
+ "bytes 0.4.12",
+ "ctr",
+ "futures 0.1.29",
+ "hmac",
+ "js-sys",
+ "lazy_static",
+ "libp2p-core",
+ "log",
+ "parity-send-wrapper",
+ "protobuf",
+ "rand 0.6.5",
+ "ring",
+ "rw-stream-sink",
+ "sha2",
+ "tokio-codec",
+ "tokio-io",
+ "twofish",
+ "untrusted",
+ "wasm-bindgen",
+ "wasm-bindgen-futures",
+ "web-sys",
+]
+
+[[package]]
+name = "libp2p-swarm"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cd55bc9f5f9eac2bb1ff24ca3c8a655810a566ac38c7a6ee1f30aced5a62905b"
+dependencies = [
+ "futures 0.1.29",
+ "libp2p-core",
+ "smallvec 0.6.13",
+ "tokio-io",
+ "void",
+ "wasm-timer",
+]
+
+[[package]]
+name = "libp2p-tcp"
+version = "0.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "234a7093d05651ab5630db926a4a42ca8978a65bab8c27c2ce2b66b200c76989"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "get_if_addrs",
+ "ipnet",
+ "libp2p-core",
+ "log",
+ "tokio-io",
+ "tokio-tcp",
+ "tokio-timer",
+]
+
+[[package]]
+name = "libp2p-uds"
+version = "0.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1e2fe0648967da3e56e4a55055c857c8c48326b66be0047d0e04c8ca60d34630"
+dependencies = [
+ "futures 0.1.29",
+ "libp2p-core",
+ "log",
+ "tokio-uds",
+]
+
+[[package]]
+name = "libp2p-wasm-ext"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3f7b8f2bd81fb356e81352d4513856bc21215ecf91502aa1f55b6449642a9acf"
+dependencies = [
+ "futures 0.1.29",
+ "js-sys",
+ "libp2p-core",
+ "parity-send-wrapper",
+ "tokio-io",
+ "wasm-bindgen",
+ "wasm-bindgen-futures",
+]
+
+[[package]]
+name = "libp2p-websocket"
+version = "0.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0d74d4fc229ad7e8d1a973178786bdcd5dadbdd7b9822c4477c8687df6f82f66"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "libp2p-core",
+ "log",
+ "rw-stream-sink",
+ "soketto",
+ "tokio-codec",
+ "tokio-io",
+ "tokio-rustls",
+ "url 2.1.1",
+ "webpki-roots 0.18.0",
+]
+
+[[package]]
+name = "libp2p-yamux"
+version = "0.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1913eb7dd6eb5515957b6f1770296f6921968db87bc9b985f0e974b6657e1003"
+dependencies = [
+ "futures 0.1.29",
+ "libp2p-core",
+ "log",
+ "tokio-io",
+ "yamux",
+]
+
+[[package]]
+name = "librocksdb-sys"
+version = "5.18.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d19778314deaa7048f2ea7d07b8aa12e1c227acebe975a37eeab6d2f8c74e41b"
+dependencies = [
+ "bindgen",
+ "cc",
+ "glob",
+ "libc",
+]
+
+[[package]]
+name = "libsecp256k1"
+version = "0.3.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1fc1e2c808481a63dc6da2074752fdd4336a3c8fcc68b83db6f1fd5224ae7962"
+dependencies = [
+ "arrayref",
+ "crunchy",
+ "digest",
+ "hmac-drbg",
+ "rand 0.7.3",
+ "sha2",
+ "subtle 2.2.2",
+ "typenum",
+]
+
+[[package]]
+name = "libz-sys"
+version = "1.0.25"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe"
+dependencies = [
+ "cc",
+ "libc",
+ "pkg-config",
+ "vcpkg",
+]
+
+[[package]]
+name = "linked-hash-map"
+version = "0.5.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83"
+
+[[package]]
+name = "linked_hash_set"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3c7c91c4c7bbeb4f2f7c4e5be11e6a05bd6830bc37249c47ce1ad86ad453ff9c"
+dependencies = [
+ "linked-hash-map",
+]
+
+[[package]]
+name = "lock_api"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c"
+dependencies = [
+ "owning_ref",
+ "scopeguard 0.3.3",
+]
+
+[[package]]
+name = "lock_api"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ed946d4529956a20f2d63ebe1b69996d5a2137c91913fe3ebbeff957f5bca7ff"
+dependencies = [
+ "scopeguard 1.1.0",
+]
+
+[[package]]
+name = "lock_api"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "79b2de95ecb4691949fea4716ca53cdbcfccb2c612e19644a8bad05edcf9f47b"
+dependencies = [
+ "scopeguard 1.1.0",
+]
+
+[[package]]
+name = "log"
+version = "0.4.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
+dependencies = [
+ "cfg-if",
+]
+
+[[package]]
+name = "lru-cache"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
+dependencies = [
+ "linked-hash-map",
+]
+
+[[package]]
+name = "malloc_size_of_derive"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e37c5d4cd9473c5f4c9c111f033f15d4df9bd378fdf615944e360a4f55a05f0b"
+dependencies = [
+ "proc-macro2 1.0.10",
+ "syn 1.0.17",
+ "synstructure",
+]
+
+[[package]]
+name = "matches"
+version = "0.1.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
+
+[[package]]
+name = "maybe-uninit"
+version = "2.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
+
+[[package]]
+name = "memchr"
+version = "2.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
+
+[[package]]
+name = "memoffset"
+version = "0.5.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b4fc2c02a7e374099d4ee95a193111f72d2110197fe200272371758f6c3643d8"
+dependencies = [
+ "autocfg 1.0.0",
+]
+
+[[package]]
+name = "memory-db"
+version = "0.15.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5dabfe0a8c69954ae3bcfc5fc14260a85fb80e1bf9f86a155f668d10a67e93dd"
+dependencies = [
+ "ahash",
+ "hash-db",
+ "hashbrown 0.6.3",
+ "parity-util-mem",
+]
+
+[[package]]
+name = "memory_units"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882"
+
+[[package]]
+name = "merlin"
+version = "1.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2b0942b357c1b4d0dc43ba724674ec89c3218e6ca2b3e8269e7cb53bcecd2f6e"
+dependencies = [
+ "byteorder 1.3.4",
+ "keccak",
+ "rand_core 0.4.2",
+ "zeroize 1.1.0",
+]
+
+[[package]]
+name = "miniz_oxide"
+version = "0.3.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "aa679ff6578b1cddee93d7e82e263b94a575e0bfced07284eb0c037c1d2416a5"
+dependencies = [
+ "adler32",
+]
+
+[[package]]
+name = "mio"
+version = "0.6.21"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f"
+dependencies = [
+ "cfg-if",
+ "fuchsia-zircon",
+ "fuchsia-zircon-sys",
+ "iovec",
+ "kernel32-sys",
+ "libc",
+ "log",
+ "miow",
+ "net2",
+ "slab",
+ "winapi 0.2.8",
+]
+
+[[package]]
+name = "mio-extras"
+version = "2.0.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19"
+dependencies = [
+ "lazycell",
+ "log",
+ "mio",
+ "slab",
+]
+
+[[package]]
+name = "mio-uds"
+version = "0.6.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125"
+dependencies = [
+ "iovec",
+ "libc",
+ "mio",
+]
+
+[[package]]
+name = "miow"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
+dependencies = [
+ "kernel32-sys",
+ "net2",
+ "winapi 0.2.8",
+ "ws2_32-sys",
+]
+
+[[package]]
+name = "mockall"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b95a7e7cfbce0e99ebbf5356a085d3b5e320a7ef300f77cd50a7148aa362e7c2"
+dependencies = [
+ "cfg-if",
+ "downcast",
+ "fragile",
+ "lazy_static",
+ "mockall_derive",
+ "predicates",
+ "predicates-tree",
+]
+
+[[package]]
+name = "mockall_derive"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d5a615a1ad92048ad5d9633251edb7492b8abc057d7a679a9898476aef173935"
+dependencies = [
+ "cfg-if",
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "multimap"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2eb04b9f127583ed176e163fb9ec6f3e793b87e21deedd5734a69386a18a0151"
+
+[[package]]
+name = "multistream-select"
+version = "0.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fc3ef54aab1b2e37e911bcb99e376dbe4c1e0710afcdb8428608e4f993b39c47"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "log",
+ "smallvec 0.6.13",
+ "tokio-io",
+ "unsigned-varint 0.2.3",
+]
+
+[[package]]
+name = "names"
+version = "0.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ef320dab323286b50fb5cdda23f61c796a72a89998ab565ca32525c5c556f2da"
+dependencies = [
+ "rand 0.3.23",
+]
+
+[[package]]
+name = "net2"
+version = "0.2.33"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88"
+dependencies = [
+ "cfg-if",
+ "libc",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "nix"
+version = "0.17.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363"
+dependencies = [
+ "bitflags",
+ "cc",
+ "cfg-if",
+ "libc",
+ "void",
+]
+
+[[package]]
+name = "nodrop"
+version = "0.1.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
+
+[[package]]
+name = "nohash-hasher"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "721a2bf1c26159ebf17e0a980bc4ce61f4b2fec5ec3b42d42fddd7a84a9e538f"
+
+[[package]]
+name = "nom"
+version = "4.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6"
+dependencies = [
+ "memchr",
+ "version_check 0.1.5",
+]
+
+[[package]]
+name = "normalize-line-endings"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
+
+[[package]]
+name = "num-bigint"
+version = "0.2.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"
+dependencies = [
+ "autocfg 1.0.0",
+ "num-integer",
+ "num-traits",
+]
+
+[[package]]
+name = "num-integer"
+version = "0.1.42"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3f6ea62e9d81a77cd3ee9a2a5b9b609447857f3d358704331e4ef39eb247fcba"
+dependencies = [
+ "autocfg 1.0.0",
+ "num-traits",
+]
+
+[[package]]
+name = "num-rational"
+version = "0.2.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef"
+dependencies = [
+ "autocfg 1.0.0",
+ "num-bigint",
+ "num-integer",
+ "num-traits",
+]
+
+[[package]]
+name = "num-traits"
+version = "0.2.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096"
+dependencies = [
+ "autocfg 1.0.0",
+]
+
+[[package]]
+name = "num_cpus"
+version = "1.12.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "46203554f085ff89c235cd12f7075f3233af9b11ed7c9e16dfe2560d03313ce6"
+dependencies = [
+ "hermit-abi",
+ "libc",
+]
+
+[[package]]
+name = "num_enum"
+version = "0.4.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ca565a7df06f3d4b485494f25ba05da1435950f4dc263440eda7a6fa9b8e36e4"
+dependencies = [
+ "derivative",
+ "num_enum_derive",
+]
+
+[[package]]
+name = "num_enum_derive"
+version = "0.4.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ffa5a33ddddfee04c0283a7653987d634e880347e96b5b2ed64de07efb59db9d"
+dependencies = [
+ "proc-macro-crate",
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "ole32-sys"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c"
+dependencies = [
+ "winapi 0.2.8",
+ "winapi-build",
+]
+
+[[package]]
+name = "once_cell"
+version = "0.1.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37"
+dependencies = [
+ "parking_lot 0.7.1",
+]
+
+[[package]]
+name = "once_cell"
+version = "0.2.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d584f08c2d717d5c23a6414fc2822b71c651560713e54fa7eace675f758a355e"
+
+[[package]]
+name = "opaque-debug"
+version = "0.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
+
+[[package]]
+name = "owning_ref"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6ff55baddef9e4ad00f88b6c743a2a8062d4c6ade126c2a528644b8e444d52ce"
+dependencies = [
+ "stable_deref_trait",
+]
+
+[[package]]
+name = "parity-bytes"
+version = "0.1.0"
+source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d"
+
+[[package]]
+name = "parity-multiaddr"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "045b3c7af871285146300da35b1932bb6e4639b66c7c98e85d06a32cbc4e8fa7"
+dependencies = [
+ "arrayref",
+ "bs58 0.2.5",
+ "byteorder 1.3.4",
+ "bytes 0.4.12",
+ "data-encoding",
+ "parity-multihash 0.1.3",
+ "percent-encoding 1.0.1",
+ "serde",
+ "unsigned-varint 0.2.3",
+ "url 1.7.2",
+]
+
+[[package]]
+name = "parity-multiaddr"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "82afcb7461eae5d122543d8be1c57d306ed89af2d6ff7f8b0f5a3cc8f7e511bc"
+dependencies = [
+ "arrayref",
+ "bs58 0.3.0",
+ "byteorder 1.3.4",
+ "bytes 0.4.12",
+ "data-encoding",
+ "parity-multihash 0.2.3",
+ "percent-encoding 2.1.0",
+ "serde",
+ "unsigned-varint 0.2.3",
+ "url 2.1.1",
+]
+
+[[package]]
+name = "parity-multihash"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "df3a17dc27848fd99e4f87eb0f8c9baba6ede0a6d555400c850ca45254ef4ce3"
+dependencies = [
+ "blake2",
+ "bytes 0.4.12",
+ "rand 0.6.5",
+ "sha-1",
+ "sha2",
+ "sha3",
+ "unsigned-varint 0.2.3",
+]
+
+[[package]]
+name = "parity-multihash"
+version = "0.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7a1cd2ba02391b81367bec529fb209019d718684fdc8ad6a712c2b536e46f775"
+dependencies = [
+ "blake2",
+ "bytes 0.5.4",
+ "rand 0.7.3",
+ "sha-1",
+ "sha2",
+ "sha3",
+ "unsigned-varint 0.3.2",
+]
+
+[[package]]
+name = "parity-scale-codec"
+version = "1.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "329c8f7f4244ddb5c37c103641027a76c530e65e8e4b8240b29f81ea40508b17"
+dependencies = [
+ "arrayvec 0.5.1",
+ "bitvec",
+ "byte-slice-cast",
+ "parity-scale-codec-derive",
+ "serde",
+]
+
+[[package]]
+name = "parity-scale-codec-derive"
+version = "1.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5a0ec292e92e8ec7c58e576adacc1e3f399c597c8f263c42f18420abe58e7245"
+dependencies = [
+ "proc-macro-crate",
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "parity-send-wrapper"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f"
+
+[[package]]
+name = "parity-util-mem"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "570093f39f786beea92dcc09e45d8aae7841516ac19a50431953ac82a0e8f85c"
+dependencies = [
+ "cfg-if",
+ "malloc_size_of_derive",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "parity-wasm"
+version = "0.40.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1e39faaa292a687ea15120b1ac31899b13586446521df6c149e46f1584671e0f"
+
+[[package]]
+name = "parking_lot"
+version = "0.6.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5"
+dependencies = [
+ "lock_api 0.1.5",
+ "parking_lot_core 0.3.1",
+]
+
+[[package]]
+name = "parking_lot"
+version = "0.7.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337"
+dependencies = [
+ "lock_api 0.1.5",
+ "parking_lot_core 0.4.0",
+]
+
+[[package]]
+name = "parking_lot"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fa7767817701cce701d5585b9c4db3cdd02086398322c1d7e8bf5094a96a2ce7"
+dependencies = [
+ "lock_api 0.2.0",
+ "parking_lot_core 0.5.0",
+ "rustc_version",
+]
+
+[[package]]
+name = "parking_lot"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"
+dependencies = [
+ "lock_api 0.3.3",
+ "parking_lot_core 0.6.2",
+ "rustc_version",
+]
+
+[[package]]
+name = "parking_lot"
+version = "0.10.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "92e98c49ab0b7ce5b222f2cc9193fc4efe11c6d0bd4f648e374684a6857b1cfc"
+dependencies = [
+ "lock_api 0.3.3",
+ "parking_lot_core 0.7.0",
+]
+
+[[package]]
+name = "parking_lot_core"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ad7f7e6ebdc79edff6fdcb87a55b620174f7a989e3eb31b65231f4af57f00b8c"
+dependencies = [
+ "libc",
+ "rand 0.5.6",
+ "rustc_version",
+ "smallvec 0.6.13",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "parking_lot_core"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9"
+dependencies = [
+ "libc",
+ "rand 0.6.5",
+ "rustc_version",
+ "smallvec 0.6.13",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "parking_lot_core"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cb88cb1cb3790baa6776844f968fea3be44956cf184fa1be5a03341f5491278c"
+dependencies = [
+ "cfg-if",
+ "cloudabi",
+ "libc",
+ "rand 0.6.5",
+ "redox_syscall",
+ "rustc_version",
+ "smallvec 0.6.13",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "parking_lot_core"
+version = "0.6.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b"
+dependencies = [
+ "cfg-if",
+ "cloudabi",
+ "libc",
+ "redox_syscall",
+ "rustc_version",
+ "smallvec 0.6.13",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "parking_lot_core"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7582838484df45743c8434fbff785e8edf260c28748353d44bc0da32e0ceabf1"
+dependencies = [
+ "cfg-if",
+ "cloudabi",
+ "libc",
+ "redox_syscall",
+ "smallvec 1.2.0",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "paste"
+version = "0.1.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ab4fb1930692d1b6a9cfabdde3d06ea0a7d186518e2f4d67660d8970e2fa647a"
+dependencies = [
+ "paste-impl",
+ "proc-macro-hack 0.5.15",
+]
+
+[[package]]
+name = "paste-impl"
+version = "0.1.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a62486e111e571b1e93b710b61e8f493c0013be39629b714cb166bdb06aa5a8a"
+dependencies = [
+ "proc-macro-hack 0.5.15",
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "pbkdf2"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9"
+dependencies = [
+ "byteorder 1.3.4",
+ "crypto-mac",
+]
+
+[[package]]
+name = "pdqselect"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4ec91767ecc0a0bbe558ce8c9da33c068066c57ecc8bb8477ef8c1ad3ef77c27"
+
+[[package]]
+name = "peeking_take_while"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
+
+[[package]]
+name = "percent-encoding"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
+
+[[package]]
+name = "percent-encoding"
+version = "2.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
+
+[[package]]
+name = "petgraph"
+version = "0.4.13"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9c3659d1ee90221741f65dd128d9998311b0e40c5d3c23a62445938214abce4f"
+dependencies = [
+ "fixedbitset",
+]
+
+[[package]]
+name = "pin-utils"
+version = "0.1.0-alpha.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587"
+
+[[package]]
+name = "pkg-config"
+version = "0.3.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677"
+
+[[package]]
+name = "ppv-lite86"
+version = "0.2.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b"
+
+[[package]]
+name = "predicates"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "347a1b6f0b21e636bc9872fb60b83b8e185f6f5516298b8238699f7f9a531030"
+dependencies = [
+ "difference",
+ "float-cmp",
+ "normalize-line-endings",
+ "predicates-core",
+ "regex",
+]
+
+[[package]]
+name = "predicates-core"
+version = "1.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "06075c3a3e92559ff8929e7a280684489ea27fe44805174c3ebd9328dcb37178"
+
+[[package]]
+name = "predicates-tree"
+version = "1.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8e63c4859013b38a76eca2414c64911fba30def9e3202ac461a2d22831220124"
+dependencies = [
+ "predicates-core",
+ "treeline",
+]
+
+[[package]]
+name = "primitive-types"
+version = "0.6.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e4336f4f5d5524fa60bcbd6fe626f9223d8142a50e7053e979acdf0da41ab975"
+dependencies = [
+ "fixed-hash",
+ "impl-codec",
+ "impl-serde 0.3.0",
+ "uint",
+]
+
+[[package]]
+name = "proc-macro-crate"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e10d4b51f154c8a7fb96fd6dad097cb74b863943ec010ac94b9fd1be8861fe1e"
+dependencies = [
+ "toml",
+]
+
+[[package]]
+name = "proc-macro-error"
+version = "0.2.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "aeccfe4d5d8ea175d5f0e4a2ad0637e0f4121d63bd99d356fb1f39ab2e7c6097"
+dependencies = [
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "proc-macro-hack"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "463bf29e7f11344e58c9e01f171470ab15c925c6822ad75028cc1c0e1d1eb63b"
+dependencies = [
+ "proc-macro-hack-impl",
+]
+
+[[package]]
+name = "proc-macro-hack"
+version = "0.5.15"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0d659fe7c6d27f25e9d80a1a094c223f5246f6a6596453e09d7229bf42750b63"
+
+[[package]]
+name = "proc-macro-hack-impl"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "38c47dcb1594802de8c02f3b899e2018c78291168a22c281be21ea0fb4796842"
+
+[[package]]
+name = "proc-macro-nested"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8e946095f9d3ed29ec38de908c22f95d9ac008e424c7bcae54c75a79c527c694"
+
+[[package]]
+name = "proc-macro2"
+version = "0.4.30"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
+dependencies = [
+ "unicode-xid 0.1.0",
+]
+
+[[package]]
+name = "proc-macro2"
+version = "1.0.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "df246d292ff63439fea9bc8c0a270bed0e390d5ebd4db4ba15aba81111b5abe3"
+dependencies = [
+ "unicode-xid 0.2.0",
+]
+
+[[package]]
+name = "prost"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "96d14b1c185652833d24aaad41c5832b0be5616a590227c1fbff57c616754b23"
+dependencies = [
+ "byteorder 1.3.4",
+ "bytes 0.4.12",
+ "prost-derive",
+]
+
+[[package]]
+name = "prost-build"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "eb788126ea840817128183f8f603dce02cb7aea25c2a0b764359d8e20010702e"
+dependencies = [
+ "bytes 0.4.12",
+ "heck",
+ "itertools",
+ "log",
+ "multimap",
+ "petgraph",
+ "prost",
+ "prost-types",
+ "tempfile",
+ "which",
+]
+
+[[package]]
+name = "prost-derive"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5e7dc378b94ac374644181a2247cebf59a6ec1c88b49ac77f3a94b86b79d0e11"
+dependencies = [
+ "failure",
+ "itertools",
+ "proc-macro2 0.4.30",
+ "quote 0.6.13",
+ "syn 0.15.44",
+]
+
+[[package]]
+name = "prost-types"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1de482a366941c8d56d19b650fac09ca08508f2a696119ee7513ad590c8bac6f"
+dependencies = [
+ "bytes 0.4.12",
+ "prost",
+]
+
+[[package]]
+name = "protobuf"
+version = "2.8.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "40361836defdd5871ff7e84096c6f6444af7fc157f8ef1789f54f147687caa20"
+
+[[package]]
+name = "quick-error"
+version = "1.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
+
+[[package]]
+name = "quote"
+version = "0.6.13"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
+dependencies = [
+ "proc-macro2 0.4.30",
+]
+
+[[package]]
+name = "quote"
+version = "1.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2bdc6c187c65bca4260c9011c9e3132efe4909da44726bad24cf7572ae338d7f"
+dependencies = [
+ "proc-macro2 1.0.10",
+]
+
+[[package]]
+name = "radium"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "def50a86306165861203e7f84ecffbbdfdea79f0e51039b33de1e952358c47ac"
+
+[[package]]
+name = "rand"
+version = "0.3.23"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c"
+dependencies = [
+ "libc",
+ "rand 0.4.6",
+]
+
+[[package]]
+name = "rand"
+version = "0.4.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
+dependencies = [
+ "fuchsia-cprng",
+ "libc",
+ "rand_core 0.3.1",
+ "rdrand",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "rand"
+version = "0.5.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9"
+dependencies = [
+ "cloudabi",
+ "fuchsia-cprng",
+ "libc",
+ "rand_core 0.3.1",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "rand"
+version = "0.6.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
+dependencies = [
+ "autocfg 0.1.7",
+ "libc",
+ "rand_chacha 0.1.1",
+ "rand_core 0.4.2",
+ "rand_hc 0.1.0",
+ "rand_isaac",
+ "rand_jitter",
+ "rand_os",
+ "rand_pcg",
+ "rand_xorshift",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "rand"
+version = "0.7.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
+dependencies = [
+ "getrandom",
+ "libc",
+ "rand_chacha 0.2.2",
+ "rand_core 0.5.1",
+ "rand_hc 0.2.0",
+]
+
+[[package]]
+name = "rand_chacha"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
+dependencies = [
+ "autocfg 0.1.7",
+ "rand_core 0.3.1",
+]
+
+[[package]]
+name = "rand_chacha"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
+dependencies = [
+ "ppv-lite86",
+ "rand_core 0.5.1",
+]
+
+[[package]]
+name = "rand_core"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
+dependencies = [
+ "rand_core 0.4.2",
+]
+
+[[package]]
+name = "rand_core"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
+
+[[package]]
+name = "rand_core"
+version = "0.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
+dependencies = [
+ "getrandom",
+]
+
+[[package]]
+name = "rand_hc"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
+dependencies = [
+ "rand_core 0.3.1",
+]
+
+[[package]]
+name = "rand_hc"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
+dependencies = [
+ "rand_core 0.5.1",
+]
+
+[[package]]
+name = "rand_isaac"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
+dependencies = [
+ "rand_core 0.3.1",
+]
+
+[[package]]
+name = "rand_jitter"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
+dependencies = [
+ "libc",
+ "rand_core 0.4.2",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "rand_os"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
+dependencies = [
+ "cloudabi",
+ "fuchsia-cprng",
+ "libc",
+ "rand_core 0.4.2",
+ "rdrand",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "rand_pcg"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
+dependencies = [
+ "autocfg 0.1.7",
+ "rand_core 0.4.2",
+]
+
+[[package]]
+name = "rand_xorshift"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
+dependencies = [
+ "rand_core 0.3.1",
+]
+
+[[package]]
+name = "rayon"
+version = "1.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098"
+dependencies = [
+ "crossbeam-deque",
+ "either",
+ "rayon-core",
+]
+
+[[package]]
+name = "rayon-core"
+version = "1.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9"
+dependencies = [
+ "crossbeam-deque",
+ "crossbeam-queue",
+ "crossbeam-utils 0.7.2",
+ "lazy_static",
+ "num_cpus",
+]
+
+[[package]]
+name = "rdrand"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
+dependencies = [
+ "rand_core 0.3.1",
+]
+
+[[package]]
+name = "redox_syscall"
+version = "0.1.56"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
+
+[[package]]
+name = "regex"
+version = "1.3.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7f6946991529684867e47d86474e3a6d0c0ab9b82d5821e314b1ede31fa3a4b3"
+dependencies = [
+ "aho-corasick",
+ "memchr",
+ "regex-syntax",
+ "thread_local 1.0.1",
+]
+
+[[package]]
+name = "regex-syntax"
+version = "0.6.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7fe5bd57d1d7414c6b5ed48563a2c855d995ff777729dcd91c369ec7fea395ae"
+
+[[package]]
+name = "remove_dir_all"
+version = "0.5.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"
+dependencies = [
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "ring"
+version = "0.16.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1ba5a8ec64ee89a76c98c549af81ff14813df09c3e6dc4766c3856da48597a0c"
+dependencies = [
+ "cc",
+ "lazy_static",
+ "libc",
+ "spin",
+ "untrusted",
+ "web-sys",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "rocksdb"
+version = "0.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f1651697fefd273bfb4fd69466cc2a9d20de557a0213b97233b22b5e95924b5e"
+dependencies = [
+ "libc",
+ "librocksdb-sys",
+]
+
+[[package]]
+name = "rpassword"
+version = "4.0.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "99371657d3c8e4d816fb6221db98fa408242b0b53bac08f8676a41f8554fe99f"
+dependencies = [
+ "libc",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "rustc-demangle"
+version = "0.1.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"
+
+[[package]]
+name = "rustc-hex"
+version = "2.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6"
+
+[[package]]
+name = "rustc_version"
+version = "0.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
+dependencies = [
+ "semver",
+]
+
+[[package]]
+name = "rustls"
+version = "0.16.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b25a18b1bf7387f0145e7f8324e700805aade3842dd3db2e74e4cdeb4677c09e"
+dependencies = [
+ "base64",
+ "log",
+ "ring",
+ "sct",
+ "webpki",
+]
+
+[[package]]
+name = "rw-stream-sink"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2f9cbe61c20455d3015b2bb7be39e1872310283b8e5a52f5b242b0ac7581fe78"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "tokio-io",
+]
+
+[[package]]
+name = "ryu"
+version = "1.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "535622e6be132bccd223f4bb2b8ac8d53cda3c7a6394944d3b2b33fb974f9d76"
+
+[[package]]
+name = "safe-mix"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6d3d055a2582e6b00ed7a31c1524040aa391092bf636328350813f3a0605215c"
+dependencies = [
+ "rustc_version",
+]
+
+[[package]]
+name = "schnorrkel"
+version = "0.8.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "eacd8381b3c37840c9c9f40472af529e49975bdcbc24f83c31059fd6539023d3"
+dependencies = [
+ "curve25519-dalek 1.2.3",
+ "failure",
+ "merlin",
+ "rand 0.6.5",
+ "rand_core 0.4.2",
+ "rand_os",
+ "sha2",
+ "subtle 2.2.2",
+ "zeroize 0.9.3",
+]
+
+[[package]]
+name = "scopeguard"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27"
+
+[[package]]
+name = "scopeguard"
+version = "1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
+
+[[package]]
+name = "sct"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e3042af939fca8c3453b7af0f1c66e533a15a86169e39de2657310ade8f98d3c"
+dependencies = [
+ "ring",
+ "untrusted",
+]
+
+[[package]]
+name = "semver"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
+dependencies = [
+ "semver-parser",
+]
+
+[[package]]
+name = "semver-parser"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
+
+[[package]]
+name = "send_wrapper"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a0eddf2e8f50ced781f288c19f18621fa72a3779e3cb58dbf23b07469b0abeb4"
+
+[[package]]
+name = "serde"
+version = "1.0.106"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "36df6ac6412072f67cf767ebbde4133a5b2e88e76dc6187fa7104cd16f783399"
+dependencies = [
+ "serde_derive",
+]
+
+[[package]]
+name = "serde_derive"
+version = "1.0.106"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9e549e3abf4fb8621bd1609f11dfc9f5e50320802273b12f3811a67e6716ea6c"
+dependencies = [
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "serde_json"
+version = "1.0.51"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "da07b57ee2623368351e9a0488bb0b261322a15a6e0ae53e243cbdc0f4208da9"
+dependencies = [
+ "itoa",
+ "ryu",
+ "serde",
+]
+
+[[package]]
+name = "sha-1"
+version = "0.8.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
+dependencies = [
+ "block-buffer",
+ "digest",
+ "fake-simd",
+ "opaque-debug",
+]
+
+[[package]]
+name = "sha1"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
+
+[[package]]
+name = "sha2"
+version = "0.8.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "27044adfd2e1f077f649f59deb9490d3941d674002f7d062870a60ebe9bd47a0"
+dependencies = [
+ "block-buffer",
+ "digest",
+ "fake-simd",
+ "opaque-debug",
+]
+
+[[package]]
+name = "sha3"
+version = "0.8.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dd26bc0e7a2e3a7c959bc494caf58b72ee0c71d67704e9520f736ca7e4853ecf"
+dependencies = [
+ "block-buffer",
+ "byte-tools",
+ "digest",
+ "keccak",
+ "opaque-debug",
+]
+
+[[package]]
+name = "shell32-sys"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9ee04b46101f57121c9da2b151988283b6beb79b34f5bb29a58ee48cb695122c"
+dependencies = [
+ "winapi 0.2.8",
+ "winapi-build",
+]
+
+[[package]]
+name = "slab"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
+
+[[package]]
+name = "slog"
+version = "2.5.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1cc9c640a4adbfbcc11ffb95efe5aa7af7309e002adab54b185507dbf2377b99"
+dependencies = [
+ "erased-serde",
+]
+
+[[package]]
+name = "slog-async"
+version = "2.3.0"
+source = "git+https://github.com/paritytech/slog-async#0329dc74feb3afe93d0cd2533a472b7ceab44aaf"
+dependencies = [
+ "crossbeam-channel",
+ "slog",
+ "take_mut",
+ "thread_local 0.3.6",
+]
+
+[[package]]
+name = "slog-json"
+version = "2.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ddc0d2aff1f8f325ef660d9a0eb6e6dcd20b30b3f581a5897f58bf42d061c37a"
+dependencies = [
+ "chrono",
+ "erased-serde",
+ "serde",
+ "serde_json",
+ "slog",
+]
+
+[[package]]
+name = "slog-scope"
+version = "4.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7c44c89dd8b0ae4537d1ae318353eaf7840b4869c536e31c41e963d1ea523ee6"
+dependencies = [
+ "arc-swap",
+ "lazy_static",
+ "slog",
+]
+
+[[package]]
+name = "slog_derive"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9eff3b513cf2e0d1a60e1aba152dc72bedc5b05585722bb3cebd7bcb1e31b98f"
+dependencies = [
+ "proc-macro2 0.4.30",
+ "quote 0.6.13",
+ "syn 0.15.44",
+]
+
+[[package]]
+name = "smallvec"
+version = "0.6.13"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6"
+dependencies = [
+ "maybe-uninit",
+]
+
+[[package]]
+name = "smallvec"
+version = "1.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5c2fb2ec9bcd216a5b0d0ccf31ab17b5ed1d627960edff65bbe95d3ce221cefc"
+
+[[package]]
+name = "snow"
+version = "0.6.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "afb767eee7d257ba202f0b9b08673bc13b22281632ef45267b19f13100accd2f"
+dependencies = [
+ "arrayref",
+ "rand_core 0.5.1",
+ "ring",
+ "rustc_version",
+ "subtle 2.2.2",
+]
+
+[[package]]
+name = "soketto"
+version = "0.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bceb1a3a15232d013d9a3b7cac9e5ce8e2313f348f01d4bc1097e5e53aa07095"
+dependencies = [
+ "base64",
+ "bytes 0.4.12",
+ "flate2",
+ "futures 0.1.29",
+ "http",
+ "httparse",
+ "log",
+ "rand 0.6.5",
+ "sha1",
+ "smallvec 0.6.13",
+ "tokio-codec",
+ "tokio-io",
+]
+
+[[package]]
+name = "spin"
+version = "0.5.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
+
+[[package]]
+name = "sr-api-macros"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "blake2-rfc",
+ "proc-macro-crate",
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "sr-arithmetic"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "integer-sqrt",
+ "num-traits",
+ "parity-scale-codec",
+ "serde",
+ "sr-std",
+ "substrate-debug-derive",
+]
+
+[[package]]
+name = "sr-io"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "hash-db",
+ "libsecp256k1",
+ "log",
+ "parity-scale-codec",
+ "rustc_version",
+ "sr-std",
+ "substrate-externalities",
+ "substrate-primitives",
+ "substrate-state-machine",
+ "substrate-trie",
+ "tiny-keccak",
+]
+
+[[package]]
+name = "sr-primitives"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "impl-trait-for-tuples",
+ "log",
+ "parity-scale-codec",
+ "paste",
+ "rand 0.7.3",
+ "serde",
+ "sr-arithmetic",
+ "sr-io",
+ "sr-std",
+ "substrate-application-crypto",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "sr-staking-primitives"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "sr-primitives",
+ "sr-std",
+]
+
+[[package]]
+name = "sr-std"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "rustc_version",
+]
+
+[[package]]
+name = "sr-version"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "impl-serde 0.2.3",
+ "parity-scale-codec",
+ "serde",
+ "sr-primitives",
+ "sr-std",
+]
+
+[[package]]
+name = "srml-authority-discovery"
+version = "0.1.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-session",
+ "srml-support",
+ "srml-system",
+ "substrate-application-crypto",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "srml-authorship"
+version = "0.1.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "impl-trait-for-tuples",
+ "parity-scale-codec",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-support",
+ "srml-system",
+ "substrate-inherents",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "srml-babe"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "hex-literal 0.2.1",
+ "parity-scale-codec",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-staking-primitives",
+ "sr-std",
+ "srml-session",
+ "srml-support",
+ "srml-system",
+ "srml-timestamp",
+ "substrate-consensus-babe-primitives",
+ "substrate-inherents",
+]
+
+[[package]]
+name = "srml-balances"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "safe-mix",
+ "serde",
+ "sr-primitives",
+ "sr-std",
+ "srml-support",
+ "srml-system",
+ "substrate-keyring",
+]
+
+[[package]]
+name = "srml-executive"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-support",
+ "srml-system",
+]
+
+[[package]]
+name = "srml-finality-tracker"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "impl-trait-for-tuples",
+ "parity-scale-codec",
+ "serde",
+ "sr-primitives",
+ "sr-std",
+ "srml-support",
+ "srml-system",
+ "substrate-inherents",
+]
+
+[[package]]
+name = "srml-grandpa"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "serde",
+ "sr-primitives",
+ "sr-staking-primitives",
+ "sr-std",
+ "srml-finality-tracker",
+ "srml-session",
+ "srml-support",
+ "srml-system",
+ "substrate-finality-grandpa-primitives",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "srml-im-online"
+version = "0.1.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-staking-primitives",
+ "sr-std",
+ "srml-authorship",
+ "srml-session",
+ "srml-support",
+ "srml-system",
+ "substrate-application-crypto",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "srml-indices"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "safe-mix",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-support",
+ "srml-system",
+ "substrate-keyring",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "srml-metadata"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "serde",
+ "sr-std",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "srml-offences"
+version = "1.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "serde",
+ "sr-primitives",
+ "sr-staking-primitives",
+ "sr-std",
+ "srml-balances",
+ "srml-support",
+ "srml-system",
+]
+
+[[package]]
+name = "srml-randomness-collective-flip"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "safe-mix",
+ "sr-primitives",
+ "sr-std",
+ "srml-support",
+ "srml-system",
+]
+
+[[package]]
+name = "srml-session"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "impl-trait-for-tuples",
+ "parity-scale-codec",
+ "safe-mix",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-staking-primitives",
+ "sr-std",
+ "srml-support",
+ "srml-system",
+ "srml-timestamp",
+ "substrate-trie",
+]
+
+[[package]]
+name = "srml-staking"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "safe-mix",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-staking-primitives",
+ "sr-std",
+ "srml-authorship",
+ "srml-session",
+ "srml-support",
+ "srml-system",
+ "substrate-keyring",
+ "substrate-phragmen",
+]
+
+[[package]]
+name = "srml-staking-reward-curve"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "proc-macro-crate",
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "srml-sudo"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-support",
+ "srml-system",
+]
+
+[[package]]
+name = "srml-support"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "bitmask",
+ "impl-trait-for-tuples",
+ "log",
+ "once_cell 0.2.4",
+ "parity-scale-codec",
+ "paste",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-metadata",
+ "srml-support-procedural",
+ "substrate-inherents",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "srml-support-procedural"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "sr-api-macros",
+ "srml-support-procedural-tools",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "srml-support-procedural-tools"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "proc-macro-crate",
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "srml-support-procedural-tools-derive",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "srml-support-procedural-tools-derive"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "srml-system"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "impl-trait-for-tuples",
+ "parity-scale-codec",
+ "safe-mix",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "sr-version",
+ "srml-support",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "srml-system-rpc-runtime-api"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "substrate-client",
+]
+
+[[package]]
+name = "srml-timestamp"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "impl-trait-for-tuples",
+ "parity-scale-codec",
+ "serde",
+ "sr-primitives",
+ "sr-std",
+ "srml-support",
+ "srml-system",
+ "substrate-inherents",
+]
+
+[[package]]
+name = "srml-transaction-payment"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "sr-primitives",
+ "sr-std",
+ "srml-support",
+ "srml-system",
+ "srml-transaction-payment-rpc-runtime-api",
+]
+
+[[package]]
+name = "srml-transaction-payment-rpc-runtime-api"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "serde",
+ "sr-primitives",
+ "sr-std",
+ "substrate-client",
+]
+
+[[package]]
+name = "stable_deref_trait"
+version = "1.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8"
+
+[[package]]
+name = "static_assertions"
+version = "1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
+
+[[package]]
+name = "stream-cipher"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8131256a5896cabcf5eb04f4d6dacbe1aefda854b0d9896e09cb58829ec5638c"
+dependencies = [
+ "generic-array",
+]
+
+[[package]]
+name = "string"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d"
+dependencies = [
+ "bytes 0.4.12",
+]
+
+[[package]]
+name = "strsim"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
+
+[[package]]
+name = "structopt"
+version = "0.3.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "30b3a3e93f5ad553c38b3301c8a0a0cec829a36783f6a0c467fc4bf553a5f5bf"
+dependencies = [
+ "clap",
+ "structopt-derive",
+]
+
+[[package]]
+name = "structopt-derive"
+version = "0.3.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ea692d40005b3ceba90a9fe7a78fa8d4b82b0ce627eebbffc329aab850f3410e"
+dependencies = [
+ "heck",
+ "proc-macro-error",
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "strum"
+version = "0.15.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e5d1c33039533f051704951680f1adfd468fd37ac46816ded0d9ee068e60f05f"
+
+[[package]]
+name = "strum_macros"
+version = "0.15.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "47cd23f5c7dee395a00fa20135e2ec0fffcdfa151c56182966d7a3261343432e"
+dependencies = [
+ "heck",
+ "proc-macro2 0.4.30",
+ "quote 0.6.13",
+ "syn 0.15.44",
+]
+
+[[package]]
+name = "substrate-application-crypto"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "serde",
+ "sr-io",
+ "sr-std",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "substrate-authority-discovery"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "bytes 0.4.12",
+ "derive_more 0.15.0",
+ "futures-preview",
+ "futures-timer",
+ "libp2p",
+ "log",
+ "parity-scale-codec",
+ "prost",
+ "prost-build",
+ "serde_json",
+ "sr-primitives",
+ "substrate-authority-discovery-primitives",
+ "substrate-client",
+ "substrate-network",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "substrate-authority-discovery-primitives"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "sr-primitives",
+ "sr-std",
+ "substrate-client",
+]
+
+[[package]]
+name = "substrate-basic-authorship"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "futures-preview",
+ "log",
+ "parity-scale-codec",
+ "sr-primitives",
+ "substrate-client",
+ "substrate-consensus-common",
+ "substrate-inherents",
+ "substrate-primitives",
+ "substrate-telemetry",
+ "substrate-transaction-pool",
+]
+
+[[package]]
+name = "substrate-bip39"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3be511be555a3633e71739a79e4ddff6a6aaa6579fa6114182a51d72c3eb93c5"
+dependencies = [
+ "hmac",
+ "pbkdf2",
+ "schnorrkel",
+ "sha2",
+]
+
+[[package]]
+name = "substrate-chain-spec"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "impl-trait-for-tuples",
+ "serde",
+ "serde_json",
+ "sr-primitives",
+ "substrate-chain-spec-derive",
+ "substrate-network",
+ "substrate-primitives",
+ "substrate-telemetry",
+]
+
+[[package]]
+name = "substrate-chain-spec-derive"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "proc-macro-crate",
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "substrate-cli"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "ansi_term 0.12.1",
+ "app_dirs",
+ "atty",
+ "clap",
+ "derive_more 0.15.0",
+ "env_logger 0.7.1",
+ "exit-future",
+ "fdlimit",
+ "futures 0.1.29",
+ "futures-preview",
+ "lazy_static",
+ "log",
+ "names",
+ "regex",
+ "rpassword",
+ "serde_json",
+ "sr-primitives",
+ "structopt",
+ "substrate-client",
+ "substrate-header-metadata",
+ "substrate-keyring",
+ "substrate-network",
+ "substrate-panic-handler",
+ "substrate-primitives",
+ "substrate-service",
+ "substrate-state-machine",
+ "substrate-telemetry",
+ "time",
+ "tokio",
+]
+
+[[package]]
+name = "substrate-client"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "derive_more 0.15.0",
+ "fnv",
+ "futures 0.1.29",
+ "futures-preview",
+ "hash-db",
+ "hex-literal 0.2.1",
+ "kvdb",
+ "log",
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+ "sr-api-macros",
+ "sr-primitives",
+ "sr-std",
+ "sr-version",
+ "substrate-consensus-common",
+ "substrate-executor",
+ "substrate-header-metadata",
+ "substrate-inherents",
+ "substrate-keyring",
+ "substrate-primitives",
+ "substrate-state-machine",
+ "substrate-telemetry",
+ "substrate-trie",
+]
+
+[[package]]
+name = "substrate-client-db"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "hash-db",
+ "kvdb",
+ "kvdb-memorydb",
+ "kvdb-rocksdb",
+ "linked-hash-map",
+ "log",
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+ "sr-primitives",
+ "substrate-client",
+ "substrate-consensus-common",
+ "substrate-executor",
+ "substrate-header-metadata",
+ "substrate-primitives",
+ "substrate-state-db",
+ "substrate-state-machine",
+ "substrate-trie",
+]
+
+[[package]]
+name = "substrate-common-module"
+version = "1.0.0"
+dependencies = [
+ "sr-primitives",
+ "srml-support",
+ "srml-system",
+]
+
+[[package]]
+name = "substrate-consensus-babe"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "derive_more 0.15.0",
+ "fork-tree",
+ "futures 0.1.29",
+ "futures-preview",
+ "futures-timer",
+ "log",
+ "merlin",
+ "num-bigint",
+ "num-rational",
+ "num-traits",
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+ "pdqselect",
+ "rand 0.7.3",
+ "schnorrkel",
+ "sr-io",
+ "sr-primitives",
+ "sr-version",
+ "srml-babe",
+ "srml-support",
+ "substrate-application-crypto",
+ "substrate-client",
+ "substrate-consensus-babe-primitives",
+ "substrate-consensus-common",
+ "substrate-consensus-slots",
+ "substrate-consensus-uncles",
+ "substrate-header-metadata",
+ "substrate-inherents",
+ "substrate-keystore",
+ "substrate-primitives",
+ "substrate-telemetry",
+]
+
+[[package]]
+name = "substrate-consensus-babe-primitives"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "schnorrkel",
+ "sr-primitives",
+ "sr-std",
+ "substrate-application-crypto",
+ "substrate-client",
+ "substrate-consensus-slots",
+]
+
+[[package]]
+name = "substrate-consensus-common"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "derive_more 0.15.0",
+ "futures-preview",
+ "futures-timer",
+ "libp2p",
+ "log",
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+ "sr-primitives",
+ "sr-std",
+ "sr-version",
+ "substrate-inherents",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "substrate-consensus-slots"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "futures-preview",
+ "futures-timer",
+ "log",
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+ "sr-primitives",
+ "substrate-client",
+ "substrate-consensus-common",
+ "substrate-inherents",
+ "substrate-primitives",
+ "substrate-telemetry",
+]
+
+[[package]]
+name = "substrate-consensus-uncles"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "log",
+ "sr-primitives",
+ "srml-authorship",
+ "substrate-client",
+ "substrate-consensus-common",
+ "substrate-inherents",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "substrate-content-working-group-module"
+version = "1.0.0"
+dependencies = [
+ "parity-scale-codec",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-balances",
+ "srml-support",
+ "srml-system",
+ "srml-timestamp",
+ "substrate-common-module",
+ "substrate-forum-module",
+ "substrate-hiring-module",
+ "substrate-membership-module",
+ "substrate-primitives",
+ "substrate-recurring-reward-module",
+ "substrate-stake-module",
+ "substrate-token-mint-module",
+ "substrate-versioned-store",
+ "substrate-versioned-store-permissions-module",
+]
+
+[[package]]
+name = "substrate-debug-derive"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+]
+
+[[package]]
+name = "substrate-executor"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "derive_more 0.15.0",
+ "lazy_static",
+ "libsecp256k1",
+ "log",
+ "parity-scale-codec",
+ "parity-wasm",
+ "parking_lot 0.9.0",
+ "sr-io",
+ "sr-version",
+ "substrate-externalities",
+ "substrate-panic-handler",
+ "substrate-primitives",
+ "substrate-serializer",
+ "substrate-trie",
+ "substrate-wasm-interface",
+ "tiny-keccak",
+ "wasmi",
+]
+
+[[package]]
+name = "substrate-externalities"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "environmental",
+ "primitive-types",
+ "sr-std",
+ "substrate-primitives-storage",
+]
+
+[[package]]
+name = "substrate-finality-grandpa"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "finality-grandpa",
+ "fork-tree",
+ "futures 0.1.29",
+ "futures-preview",
+ "log",
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+ "rand 0.7.3",
+ "serde_json",
+ "sr-primitives",
+ "srml-finality-tracker",
+ "substrate-client",
+ "substrate-consensus-common",
+ "substrate-finality-grandpa-primitives",
+ "substrate-header-metadata",
+ "substrate-inherents",
+ "substrate-keystore",
+ "substrate-network",
+ "substrate-primitives",
+ "substrate-telemetry",
+ "tokio-executor",
+ "tokio-timer",
+]
+
+[[package]]
+name = "substrate-finality-grandpa-primitives"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "serde",
+ "sr-primitives",
+ "sr-std",
+ "substrate-application-crypto",
+ "substrate-client",
+]
+
+[[package]]
+name = "substrate-forum-module"
+version = "1.1.1"
+dependencies = [
+ "hex-literal 0.1.4",
+ "parity-scale-codec",
+ "quote 0.6.13",
+ "serde",
+ "serde_derive",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-balances",
+ "srml-support",
+ "srml-support-procedural",
+ "srml-system",
+ "srml-timestamp",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "substrate-governance-module"
+version = "1.0.0"
+dependencies = [
+ "parity-scale-codec",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-balances",
+ "srml-support",
+ "srml-system",
+ "srml-timestamp",
+ "substrate-common-module",
+ "substrate-membership-module",
+ "substrate-primitives",
+ "substrate-token-mint-module",
+]
+
+[[package]]
+name = "substrate-header-metadata"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "lru-cache",
+ "parking_lot 0.9.0",
+ "sr-primitives",
+]
+
+[[package]]
+name = "substrate-hiring-module"
+version = "1.0.1"
+dependencies = [
+ "hex-literal 0.1.4",
+ "mockall",
+ "parity-scale-codec",
+ "quote 0.6.13",
+ "serde",
+ "serde_derive",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-balances",
+ "srml-support",
+ "srml-support-procedural",
+ "srml-system",
+ "srml-timestamp",
+ "substrate-primitives",
+ "substrate-stake-module",
+]
+
+[[package]]
+name = "substrate-inherents"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+ "sr-primitives",
+ "sr-std",
+]
+
+[[package]]
+name = "substrate-keyring"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "lazy_static",
+ "sr-primitives",
+ "strum",
+ "strum_macros",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "substrate-keystore"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "derive_more 0.15.0",
+ "hex 0.3.2",
+ "parking_lot 0.9.0",
+ "rand 0.7.3",
+ "serde_json",
+ "substrate-application-crypto",
+ "substrate-primitives",
+ "subtle 2.2.2",
+]
+
+[[package]]
+name = "substrate-membership-module"
+version = "1.0.0"
+dependencies = [
+ "parity-scale-codec",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-balances",
+ "srml-support",
+ "srml-system",
+ "srml-timestamp",
+ "substrate-common-module",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "substrate-memo-module"
+version = "1.0.0"
+dependencies = [
+ "parity-scale-codec",
+ "serde",
+ "sr-primitives",
+ "sr-std",
+ "srml-support",
+ "srml-system",
+ "substrate-common-module",
+]
+
+[[package]]
+name = "substrate-network"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "bitflags",
+ "bytes 0.4.12",
+ "derive_more 0.15.0",
+ "either",
+ "erased-serde",
+ "fnv",
+ "fork-tree",
+ "futures 0.1.29",
+ "futures-preview",
+ "futures-timer",
+ "libp2p",
+ "linked-hash-map",
+ "linked_hash_set",
+ "log",
+ "lru-cache",
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+ "rand 0.7.3",
+ "rustc-hex",
+ "serde",
+ "serde_json",
+ "slog",
+ "slog_derive",
+ "smallvec 0.6.13",
+ "sr-primitives",
+ "substrate-client",
+ "substrate-consensus-babe-primitives",
+ "substrate-consensus-common",
+ "substrate-header-metadata",
+ "substrate-peerset",
+ "substrate-primitives",
+ "tokio-io",
+ "unsigned-varint 0.2.3",
+ "void",
+ "zeroize 0.10.1",
+]
+
+[[package]]
+name = "substrate-offchain"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "bytes 0.4.12",
+ "fnv",
+ "futures 0.1.29",
+ "futures-preview",
+ "futures-timer",
+ "hyper",
+ "hyper-rustls",
+ "log",
+ "num_cpus",
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+ "rand 0.7.3",
+ "sr-primitives",
+ "substrate-client",
+ "substrate-keystore",
+ "substrate-network",
+ "substrate-offchain-primitives",
+ "substrate-primitives",
+ "substrate-transaction-pool",
+ "threadpool",
+]
+
+[[package]]
+name = "substrate-offchain-primitives"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "sr-primitives",
+ "substrate-client",
+]
+
+[[package]]
+name = "substrate-panic-handler"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "backtrace",
+ "log",
+]
+
+[[package]]
+name = "substrate-peerset"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "futures-preview",
+ "libp2p",
+ "linked-hash-map",
+ "log",
+ "lru-cache",
+ "serde_json",
+]
+
+[[package]]
+name = "substrate-phragmen"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "serde",
+ "sr-primitives",
+ "sr-std",
+]
+
+[[package]]
+name = "substrate-primitives"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "base58",
+ "blake2-rfc",
+ "byteorder 1.3.4",
+ "ed25519-dalek 0.9.1",
+ "hash-db",
+ "hash256-std-hasher",
+ "hex 0.4.2",
+ "impl-serde 0.2.3",
+ "lazy_static",
+ "libsecp256k1",
+ "log",
+ "num-traits",
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+ "primitive-types",
+ "rand 0.7.3",
+ "regex",
+ "rustc-hex",
+ "schnorrkel",
+ "serde",
+ "sha2",
+ "sr-std",
+ "substrate-bip39",
+ "substrate-debug-derive",
+ "substrate-externalities",
+ "substrate-primitives-storage",
+ "tiny-bip39",
+ "tiny-keccak",
+ "twox-hash",
+ "wasmi",
+ "zeroize 0.10.1",
+]
+
+[[package]]
+name = "substrate-primitives-storage"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "impl-serde 0.2.3",
+ "serde",
+ "sr-std",
+ "substrate-debug-derive",
+]
+
+[[package]]
+name = "substrate-proposals-codex-module"
+version = "2.0.0"
+dependencies = [
+ "num_enum",
+ "parity-scale-codec",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-balances",
+ "srml-support",
+ "srml-system",
+ "srml-timestamp",
+ "substrate-common-module",
+ "substrate-content-working-group-module",
+ "substrate-governance-module",
+ "substrate-hiring-module",
+ "substrate-membership-module",
+ "substrate-primitives",
+ "substrate-proposals-discussion-module",
+ "substrate-proposals-engine-module",
+ "substrate-recurring-reward-module",
+ "substrate-stake-module",
+ "substrate-token-mint-module",
+ "substrate-versioned-store",
+ "substrate-versioned-store-permissions-module",
+]
+
+[[package]]
+name = "substrate-proposals-discussion-module"
+version = "2.0.0"
+dependencies = [
+ "num_enum",
+ "parity-scale-codec",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-balances",
+ "srml-support",
+ "srml-system",
+ "srml-timestamp",
+ "substrate-common-module",
+ "substrate-membership-module",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "substrate-proposals-engine-module"
+version = "2.0.0"
+dependencies = [
+ "mockall",
+ "num_enum",
+ "parity-scale-codec",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-balances",
+ "srml-support",
+ "srml-system",
+ "srml-timestamp",
+ "substrate-common-module",
+ "substrate-membership-module",
+ "substrate-primitives",
+ "substrate-stake-module",
+]
+
+[[package]]
+name = "substrate-recurring-reward-module"
+version = "1.0.1"
+dependencies = [
+ "hex-literal 0.1.4",
+ "parity-scale-codec",
+ "quote 0.6.13",
+ "serde",
+ "serde_derive",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-balances",
+ "srml-support",
+ "srml-support-procedural",
+ "srml-system",
+ "srml-timestamp",
+ "substrate-primitives",
+ "substrate-token-mint-module",
+]
+
+[[package]]
+name = "substrate-roles-module"
+version = "1.0.0"
+dependencies = [
+ "parity-scale-codec",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-balances",
+ "srml-support",
+ "srml-system",
+ "srml-timestamp",
+ "substrate-common-module",
+ "substrate-membership-module",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "substrate-rpc"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "futures-preview",
+ "hash-db",
+ "jsonrpc-core 14.0.5",
+ "jsonrpc-pubsub",
+ "log",
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+ "serde_json",
+ "sr-primitives",
+ "sr-version",
+ "substrate-client",
+ "substrate-executor",
+ "substrate-keystore",
+ "substrate-primitives",
+ "substrate-rpc-api",
+ "substrate-rpc-primitives",
+ "substrate-session",
+ "substrate-state-machine",
+ "substrate-transaction-pool",
+]
+
+[[package]]
+name = "substrate-rpc-api"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "derive_more 0.15.0",
+ "futures-preview",
+ "jsonrpc-core 14.0.5",
+ "jsonrpc-core-client",
+ "jsonrpc-derive",
+ "jsonrpc-pubsub",
+ "log",
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+ "serde",
+ "serde_json",
+ "sr-version",
+ "substrate-primitives",
+ "substrate-rpc-primitives",
+ "substrate-transaction-graph",
+]
+
+[[package]]
+name = "substrate-rpc-primitives"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "serde",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "substrate-rpc-servers"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "jsonrpc-core 14.0.5",
+ "jsonrpc-http-server",
+ "jsonrpc-pubsub",
+ "jsonrpc-ws-server",
+ "log",
+ "serde",
+ "serde_json",
+ "sr-primitives",
+]
+
+[[package]]
+name = "substrate-serializer"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "serde",
+ "serde_json",
+]
+
+[[package]]
+name = "substrate-service"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "derive_more 0.15.0",
+ "exit-future",
+ "futures 0.1.29",
+ "futures-preview",
+ "lazy_static",
+ "log",
+ "parity-multiaddr 0.5.0",
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+ "serde",
+ "serde_json",
+ "slog",
+ "sr-io",
+ "sr-primitives",
+ "substrate-application-crypto",
+ "substrate-chain-spec",
+ "substrate-client",
+ "substrate-client-db",
+ "substrate-consensus-common",
+ "substrate-executor",
+ "substrate-keystore",
+ "substrate-network",
+ "substrate-offchain",
+ "substrate-primitives",
+ "substrate-rpc",
+ "substrate-rpc-servers",
+ "substrate-session",
+ "substrate-telemetry",
+ "substrate-transaction-pool",
+ "sysinfo",
+ "target_info",
+ "tokio-executor",
+ "tokio-timer",
+]
+
+[[package]]
+name = "substrate-service-discovery-module"
+version = "1.0.0"
+dependencies = [
+ "parity-scale-codec",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-support",
+ "srml-system",
+ "substrate-primitives",
+ "substrate-roles-module",
+]
+
+[[package]]
+name = "substrate-session"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "sr-primitives",
+ "sr-std",
+ "substrate-client",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "substrate-stake-module"
+version = "2.0.0"
+dependencies = [
+ "hex-literal 0.1.4",
+ "parity-scale-codec",
+ "quote 0.6.13",
+ "serde",
+ "serde_derive",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-balances",
+ "srml-support",
+ "srml-support-procedural",
+ "srml-system",
+ "srml-timestamp",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "substrate-state-db"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "log",
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "substrate-state-machine"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "hash-db",
+ "log",
+ "num-traits",
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+ "rand 0.7.3",
+ "substrate-externalities",
+ "substrate-panic-handler",
+ "substrate-primitives",
+ "substrate-trie",
+ "trie-db",
+ "trie-root",
+]
+
+[[package]]
+name = "substrate-storage-module"
+version = "1.0.0"
+dependencies = [
+ "parity-scale-codec",
+ "serde",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-balances",
+ "srml-support",
+ "srml-system",
+ "srml-timestamp",
+ "substrate-common-module",
+ "substrate-membership-module",
+ "substrate-primitives",
+ "substrate-roles-module",
+]
+
+[[package]]
+name = "substrate-telemetry"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "futures-preview",
+ "futures-timer",
+ "libp2p",
+ "log",
+ "parking_lot 0.9.0",
+ "rand 0.7.3",
+ "serde",
+ "slog",
+ "slog-async",
+ "slog-json",
+ "slog-scope",
+ "tokio-io",
+ "void",
+]
+
+[[package]]
+name = "substrate-token-mint-module"
+version = "1.0.1"
+dependencies = [
+ "hex-literal 0.1.4",
+ "parity-scale-codec",
+ "quote 0.6.13",
+ "serde",
+ "serde_derive",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-balances",
+ "srml-support",
+ "srml-support-procedural",
+ "srml-system",
+ "srml-timestamp",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "substrate-transaction-graph"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "derive_more 0.15.0",
+ "futures-preview",
+ "log",
+ "parking_lot 0.9.0",
+ "serde",
+ "sr-primitives",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "substrate-transaction-pool"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "derive_more 0.15.0",
+ "futures 0.3.4",
+ "log",
+ "parity-scale-codec",
+ "parking_lot 0.9.0",
+ "sr-primitives",
+ "substrate-client",
+ "substrate-primitives",
+ "substrate-transaction-graph",
+]
+
+[[package]]
+name = "substrate-trie"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "hash-db",
+ "memory-db",
+ "parity-scale-codec",
+ "sr-std",
+ "substrate-primitives",
+ "trie-db",
+ "trie-root",
+]
+
+[[package]]
+name = "substrate-versioned-store"
+version = "1.0.1"
+dependencies = [
+ "hex-literal 0.1.4",
+ "parity-scale-codec",
+ "quote 0.6.13",
+ "serde",
+ "serde_derive",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-balances",
+ "srml-support",
+ "srml-support-procedural",
+ "srml-system",
+ "srml-timestamp",
+ "substrate-primitives",
+]
+
+[[package]]
+name = "substrate-versioned-store-permissions-module"
+version = "1.0.1"
+dependencies = [
+ "hex-literal 0.1.4",
+ "parity-scale-codec",
+ "quote 0.6.13",
+ "serde",
+ "serde_derive",
+ "sr-io",
+ "sr-primitives",
+ "sr-std",
+ "srml-support",
+ "srml-support-procedural",
+ "srml-system",
+ "srml-timestamp",
+ "substrate-primitives",
+ "substrate-versioned-store",
+]
+
+[[package]]
+name = "substrate-wasm-builder-runner"
+version = "1.0.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e30c70de7e7d5fd404fe26db1e7a4d6b553e2760b1ac490f249c04a960c483b8"
+
+[[package]]
+name = "substrate-wasm-interface"
+version = "2.0.0"
+source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8"
+dependencies = [
+ "wasmi",
+]
+
+[[package]]
+name = "subtle"
+version = "1.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee"
+
+[[package]]
+name = "subtle"
+version = "2.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7c65d530b10ccaeac294f349038a597e435b18fb456aadd0840a623f83b9e941"
+
+[[package]]
+name = "syn"
+version = "0.15.44"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5"
+dependencies = [
+ "proc-macro2 0.4.30",
+ "quote 0.6.13",
+ "unicode-xid 0.1.0",
+]
+
+[[package]]
+name = "syn"
+version = "1.0.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0df0eb663f387145cab623dea85b09c2c5b4b0aef44e945d928e682fce71bb03"
+dependencies = [
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "unicode-xid 0.2.0",
+]
+
+[[package]]
+name = "synstructure"
+version = "0.12.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "67656ea1dc1b41b1451851562ea232ec2e5a80242139f7e679ceccfb5d61f545"
+dependencies = [
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+ "unicode-xid 0.2.0",
+]
+
+[[package]]
+name = "sysinfo"
+version = "0.9.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6f4b2468c629cffba39c0a4425849ab3cdb03d9dfacba69684609aea04d08ff9"
+dependencies = [
+ "cfg-if",
+ "doc-comment",
+ "libc",
+ "rayon",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "take_mut"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60"
+
+[[package]]
+name = "target_info"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c63f48baada5c52e65a29eef93ab4f8982681b67f9e8d29c7b05abcfec2b9ffe"
+
+[[package]]
+name = "tempfile"
+version = "3.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
+dependencies = [
+ "cfg-if",
+ "libc",
+ "rand 0.7.3",
+ "redox_syscall",
+ "remove_dir_all",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "termcolor"
+version = "1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f"
+dependencies = [
+ "winapi-util",
+]
+
+[[package]]
+name = "textwrap"
+version = "0.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
+dependencies = [
+ "unicode-width",
+]
+
+[[package]]
+name = "thread_local"
+version = "0.3.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
+dependencies = [
+ "lazy_static",
+]
+
+[[package]]
+name = "thread_local"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
+dependencies = [
+ "lazy_static",
+]
+
+[[package]]
+name = "threadpool"
+version = "1.7.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e2f0c90a5f3459330ac8bc0d2f879c693bb7a2f59689c1083fc4ef83834da865"
+dependencies = [
+ "num_cpus",
+]
+
+[[package]]
+name = "time"
+version = "0.1.42"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f"
+dependencies = [
+ "libc",
+ "redox_syscall",
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "tiny-bip39"
+version = "0.6.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c1c5676413eaeb1ea35300a0224416f57abc3bd251657e0fafc12c47ff98c060"
+dependencies = [
+ "failure",
+ "hashbrown 0.1.8",
+ "hmac",
+ "once_cell 0.1.8",
+ "pbkdf2",
+ "rand 0.6.5",
+ "sha2",
+]
+
+[[package]]
+name = "tiny-keccak"
+version = "1.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1d8a021c69bb74a44ccedb824a046447e2c84a01df9e5c20779750acb38e11b2"
+dependencies = [
+ "crunchy",
+]
+
+[[package]]
+name = "tokio"
+version = "0.1.22"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "mio",
+ "num_cpus",
+ "tokio-codec",
+ "tokio-current-thread",
+ "tokio-executor",
+ "tokio-fs",
+ "tokio-io",
+ "tokio-reactor",
+ "tokio-sync",
+ "tokio-tcp",
+ "tokio-threadpool",
+ "tokio-timer",
+ "tokio-udp",
+ "tokio-uds",
+]
+
+[[package]]
+name = "tokio-buf"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46"
+dependencies = [
+ "bytes 0.4.12",
+ "either",
+ "futures 0.1.29",
+]
+
+[[package]]
+name = "tokio-codec"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "25b2998660ba0e70d18684de5d06b70b70a3a747469af9dea7618cc59e75976b"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "tokio-io",
+]
+
+[[package]]
+name = "tokio-current-thread"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e"
+dependencies = [
+ "futures 0.1.29",
+ "tokio-executor",
+]
+
+[[package]]
+name = "tokio-dns-unofficial"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "82c65483db54eb91b4ef3a9389a3364558590faf30ce473141707c0e16fda975"
+dependencies = [
+ "futures 0.1.29",
+ "futures-cpupool",
+ "lazy_static",
+ "tokio",
+]
+
+[[package]]
+name = "tokio-executor"
+version = "0.1.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671"
+dependencies = [
+ "crossbeam-utils 0.7.2",
+ "futures 0.1.29",
+]
+
+[[package]]
+name = "tokio-fs"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "297a1206e0ca6302a0eed35b700d292b275256f596e2f3fea7729d5e629b6ff4"
+dependencies = [
+ "futures 0.1.29",
+ "tokio-io",
+ "tokio-threadpool",
+]
+
+[[package]]
+name = "tokio-io"
+version = "0.1.13"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "log",
+]
+
+[[package]]
+name = "tokio-reactor"
+version = "0.1.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351"
+dependencies = [
+ "crossbeam-utils 0.7.2",
+ "futures 0.1.29",
+ "lazy_static",
+ "log",
+ "mio",
+ "num_cpus",
+ "parking_lot 0.9.0",
+ "slab",
+ "tokio-executor",
+ "tokio-io",
+ "tokio-sync",
+]
+
+[[package]]
+name = "tokio-rustls"
+version = "0.10.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2d7cf08f990090abd6c6a73cab46fed62f85e8aef8b99e4b918a9f4a637f0676"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "iovec",
+ "rustls",
+ "tokio-io",
+ "webpki",
+]
+
+[[package]]
+name = "tokio-sync"
+version = "0.1.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee"
+dependencies = [
+ "fnv",
+ "futures 0.1.29",
+]
+
+[[package]]
+name = "tokio-tcp"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "iovec",
+ "mio",
+ "tokio-io",
+ "tokio-reactor",
+]
+
+[[package]]
+name = "tokio-threadpool"
+version = "0.1.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89"
+dependencies = [
+ "crossbeam-deque",
+ "crossbeam-queue",
+ "crossbeam-utils 0.7.2",
+ "futures 0.1.29",
+ "lazy_static",
+ "log",
+ "num_cpus",
+ "slab",
+ "tokio-executor",
+]
+
+[[package]]
+name = "tokio-timer"
+version = "0.2.13"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296"
+dependencies = [
+ "crossbeam-utils 0.7.2",
+ "futures 0.1.29",
+ "slab",
+ "tokio-executor",
+]
+
+[[package]]
+name = "tokio-udp"
+version = "0.1.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e2a0b10e610b39c38b031a2fcab08e4b82f16ece36504988dcbd81dbba650d82"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "log",
+ "mio",
+ "tokio-codec",
+ "tokio-io",
+ "tokio-reactor",
+]
+
+[[package]]
+name = "tokio-uds"
+version = "0.2.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5076db410d6fdc6523df7595447629099a1fdc47b3d9f896220780fa48faf798"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "iovec",
+ "libc",
+ "log",
+ "mio",
+ "mio-uds",
+ "tokio-codec",
+ "tokio-io",
+ "tokio-reactor",
+]
+
+[[package]]
+name = "toml"
+version = "0.5.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "treeline"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a7f741b240f1a48843f9b8e0444fb55fb2a4ff67293b50a9179dfd5ea67f8d41"
+
+[[package]]
+name = "trie-db"
+version = "0.15.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d0b62d27e8aa1c07414549ac872480ac82380bab39e730242ab08d82d7cc098a"
+dependencies = [
+ "elastic-array",
+ "hash-db",
+ "hashbrown 0.6.3",
+ "log",
+ "rand 0.6.5",
+]
+
+[[package]]
+name = "trie-root"
+version = "0.15.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0b779f7c1c8fe9276365d9d5be5c4b5adeacf545117bb3f64c974305789c5c0b"
+dependencies = [
+ "hash-db",
+]
+
+[[package]]
+name = "try-lock"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382"
+
+[[package]]
+name = "twofish"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "712d261e83e727c8e2dbb75dacac67c36e35db36a958ee504f2164fc052434e1"
+dependencies = [
+ "block-cipher-trait",
+ "byteorder 1.3.4",
+ "opaque-debug",
+]
+
+[[package]]
+name = "twox-hash"
+version = "1.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3bfd5b7557925ce778ff9b9ef90e3ade34c524b5ff10e239c69a42d546d2af56"
+dependencies = [
+ "rand 0.7.3",
+]
+
+[[package]]
+name = "typenum"
+version = "1.11.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6d2783fe2d6b8c1101136184eb41be8b1ad379e4657050b8aaff0c79ee7575f9"
+
+[[package]]
+name = "uint"
+version = "0.8.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e75a4cdd7b87b28840dba13c483b9a88ee6bbf16ba5c951ee1ecfcf723078e0d"
+dependencies = [
+ "byteorder 1.3.4",
+ "crunchy",
+ "rustc-hex",
+ "static_assertions",
+]
+
+[[package]]
+name = "unicase"
+version = "2.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
+dependencies = [
+ "version_check 0.9.1",
+]
+
+[[package]]
+name = "unicode-bidi"
+version = "0.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
+dependencies = [
+ "matches",
+]
+
+[[package]]
+name = "unicode-normalization"
+version = "0.1.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5479532badd04e128284890390c1e876ef7a993d0570b3597ae43dfa1d59afa4"
+dependencies = [
+ "smallvec 1.2.0",
+]
+
+[[package]]
+name = "unicode-segmentation"
+version = "1.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"
+
+[[package]]
+name = "unicode-width"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479"
+
+[[package]]
+name = "unicode-xid"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
+
+[[package]]
+name = "unicode-xid"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
+
+[[package]]
+name = "unsigned-varint"
+version = "0.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a7f0023a96687fe169081e8adce3f65e3874426b7886e9234d490af2dc077959"
+dependencies = [
+ "bytes 0.4.12",
+ "tokio-codec",
+]
+
+[[package]]
+name = "unsigned-varint"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f38e01ad4b98f042e166c1bf9a13f9873a99d79eaa171ce7ca81e6dd0f895d8a"
+
+[[package]]
+name = "untrusted"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "60369ef7a31de49bcb3f6ca728d4ba7300d9a1658f94c727d4cab8c8d9f4aece"
+
+[[package]]
+name = "url"
+version = "1.7.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
+dependencies = [
+ "idna 0.1.5",
+ "matches",
+ "percent-encoding 1.0.1",
+]
+
+[[package]]
+name = "url"
+version = "2.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb"
+dependencies = [
+ "idna 0.2.0",
+ "matches",
+ "percent-encoding 2.1.0",
+]
+
+[[package]]
+name = "vcpkg"
+version = "0.2.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3fc439f2794e98976c88a2a2dafce96b930fe8010b0a256b3c2199a773933168"
+
+[[package]]
+name = "vec_map"
+version = "0.8.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
+
+[[package]]
+name = "vergen"
+version = "3.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4ce50d8996df1f85af15f2cd8d33daae6e479575123ef4314a51a70a230739cb"
+dependencies = [
+ "bitflags",
+ "chrono",
+]
+
+[[package]]
+name = "version_check"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
+
+[[package]]
+name = "version_check"
+version = "0.9.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce"
+
+[[package]]
+name = "void"
+version = "1.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
+
+[[package]]
+name = "want"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230"
+dependencies = [
+ "futures 0.1.29",
+ "log",
+ "try-lock",
+]
+
+[[package]]
+name = "wasi"
+version = "0.9.0+wasi-snapshot-preview1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
+
+[[package]]
+name = "wasm-bindgen"
+version = "0.2.60"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2cc57ce05287f8376e998cbddfb4c8cb43b84a7ec55cf4551d7c00eef317a47f"
+dependencies = [
+ "cfg-if",
+ "wasm-bindgen-macro",
+]
+
+[[package]]
+name = "wasm-bindgen-backend"
+version = "0.2.60"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d967d37bf6c16cca2973ca3af071d0a2523392e4a594548155d89a678f4237cd"
+dependencies = [
+ "bumpalo",
+ "lazy_static",
+ "log",
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+ "wasm-bindgen-shared",
+]
+
+[[package]]
+name = "wasm-bindgen-futures"
+version = "0.3.27"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "83420b37346c311b9ed822af41ec2e82839bfe99867ec6c54e2da43b7538771c"
+dependencies = [
+ "cfg-if",
+ "futures 0.1.29",
+ "js-sys",
+ "wasm-bindgen",
+ "web-sys",
+]
+
+[[package]]
+name = "wasm-bindgen-macro"
+version = "0.2.60"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8bd151b63e1ea881bb742cd20e1d6127cef28399558f3b5d415289bc41eee3a4"
+dependencies = [
+ "quote 1.0.3",
+ "wasm-bindgen-macro-support",
+]
+
+[[package]]
+name = "wasm-bindgen-macro-support"
+version = "0.2.60"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d68a5b36eef1be7868f668632863292e37739656a80fc4b9acec7b0bd35a4931"
+dependencies = [
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+ "wasm-bindgen-backend",
+ "wasm-bindgen-shared",
+]
+
+[[package]]
+name = "wasm-bindgen-shared"
+version = "0.2.60"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "daf76fe7d25ac79748a37538b7daeed1c7a6867c92d3245c12c6222e4a20d639"
+
+[[package]]
+name = "wasm-timer"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "aa3e01d234bb71760e685cfafa5e2c96f8ad877c161a721646356651069e26ac"
+dependencies = [
+ "futures 0.1.29",
+ "js-sys",
+ "send_wrapper",
+ "tokio-timer",
+ "wasm-bindgen",
+ "web-sys",
+]
+
+[[package]]
+name = "wasmi"
+version = "0.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f31d26deb2d9a37e6cfed420edce3ed604eab49735ba89035e13c98f9a528313"
+dependencies = [
+ "libc",
+ "memory_units",
+ "num-rational",
+ "num-traits",
+ "parity-wasm",
+ "wasmi-validation",
+]
+
+[[package]]
+name = "wasmi-validation"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6bc0356e3df56e639fc7f7d8a99741915531e27ed735d911ed83d7e1339c8188"
+dependencies = [
+ "parity-wasm",
+]
+
+[[package]]
+name = "web-sys"
+version = "0.3.37"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2d6f51648d8c56c366144378a33290049eafdd784071077f6fe37dae64c1c4cb"
+dependencies = [
+ "js-sys",
+ "wasm-bindgen",
+]
+
+[[package]]
+name = "webpki"
+version = "0.21.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f1f50e1972865d6b1adb54167d1c8ed48606004c2c9d0ea5f1eeb34d95e863ef"
+dependencies = [
+ "ring",
+ "untrusted",
+]
+
+[[package]]
+name = "webpki-roots"
+version = "0.17.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a262ae37dd9d60f60dd473d1158f9fbebf110ba7b6a5051c8160460f6043718b"
+dependencies = [
+ "webpki",
+]
+
+[[package]]
+name = "webpki-roots"
+version = "0.18.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "91cd5736df7f12a964a5067a12c62fa38e1bd8080aff1f80bc29be7c80d19ab4"
+dependencies = [
+ "webpki",
+]
+
+[[package]]
+name = "which"
+version = "2.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b57acb10231b9493c8472b20cb57317d0679a49e0bdbee44b3b803a6473af164"
+dependencies = [
+ "failure",
+ "libc",
+]
+
+[[package]]
+name = "winapi"
+version = "0.2.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
+
+[[package]]
+name = "winapi"
+version = "0.3.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
+dependencies = [
+ "winapi-i686-pc-windows-gnu",
+ "winapi-x86_64-pc-windows-gnu",
+]
+
+[[package]]
+name = "winapi-build"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
+
+[[package]]
+name = "winapi-i686-pc-windows-gnu"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
+
+[[package]]
+name = "winapi-util"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fa515c5163a99cc82bab70fd3bfdd36d827be85de63737b40fcef2ce084a436e"
+dependencies = [
+ "winapi 0.3.8",
+]
+
+[[package]]
+name = "winapi-x86_64-pc-windows-gnu"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
+
+[[package]]
+name = "ws"
+version = "0.9.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c51a2c47b5798ccc774ffb93ff536aec7c4275d722fd9c740c83cdd1af1f2d94"
+dependencies = [
+ "byteorder 1.3.4",
+ "bytes 0.4.12",
+ "httparse",
+ "log",
+ "mio",
+ "mio-extras",
+ "rand 0.7.3",
+ "sha-1",
+ "slab",
+ "url 2.1.1",
+]
+
+[[package]]
+name = "ws2_32-sys"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
+dependencies = [
+ "winapi 0.2.8",
+ "winapi-build",
+]
+
+[[package]]
+name = "x25519-dalek"
+version = "0.5.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7ee1585dc1484373cbc1cee7aafda26634665cf449436fd6e24bfd1fad230538"
+dependencies = [
+ "clear_on_drop",
+ "curve25519-dalek 1.2.3",
+ "rand_core 0.3.1",
+]
+
+[[package]]
+name = "xdg"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57"
+
+[[package]]
+name = "yamux"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2758f29014c1cb7a6e74c1b1160ac8c8203be342d35b73462fc6a13cc6385423"
+dependencies = [
+ "bytes 0.4.12",
+ "futures 0.1.29",
+ "log",
+ "nohash-hasher",
+ "parking_lot 0.9.0",
+ "quick-error",
+ "rand 0.7.3",
+ "tokio-codec",
+ "tokio-io",
+]
+
+[[package]]
+name = "zeroize"
+version = "0.9.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "45af6a010d13e4cf5b54c94ba5a2b2eba5596b9e46bf5875612d332a1f2b3f86"
+
+[[package]]
+name = "zeroize"
+version = "0.10.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4090487fa66630f7b166fba2bbb525e247a5449f41c468cc1d98f8ae6ac03120"
+
+[[package]]
+name = "zeroize"
+version = "1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3cbac2ed2ba24cc90f5e06485ac8c7c1e5449fe8911aef4d8877218af021a5b8"
+dependencies = [
+ "zeroize_derive",
+]
+
+[[package]]
+name = "zeroize_derive"
+version = "1.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "de251eec69fc7c1bc3923403d18ececb929380e016afe103da75f396704f8ca2"
+dependencies = [
+ "proc-macro2 1.0.10",
+ "quote 1.0.3",
+ "syn 1.0.17",
+ "synstructure",
+]
diff --git a/Cargo.toml b/Cargo.toml
index a5bfcd4d5f..9651f9333e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -19,5 +19,10 @@ members = [
"runtime-modules/token-minting",
"runtime-modules/versioned-store",
"runtime-modules/versioned-store-permissions",
+ "node",
+ "utils/chain-spec-builder/"
]
+[profile.release]
+# Substrate runtime requires unwinding.
+panic = "unwind"
\ No newline at end of file
diff --git a/README.md b/README.md
index 70168f45de..a2cf5663eb 100644
--- a/README.md
+++ b/README.md
@@ -1,86 +1,136 @@
-
+# Joystream
-# Joystream Runtime
+This is the main code reposity for all joystream software. It will house the substrate chain project, the full node and runtime and all reusable substrate runtime modules that make up the joystream runtime. In addition to all front-end apps and infrastructure servers necessary for operating the network.
-The runtime is the code that defines the consensus rules of the Joystream protocol.
-It is compiled to WASM and lives on chain.
-[Full nodes](https://github.com/Joystream/substrate-node-joystream) execute the code's logic to validate transactions and blocks on the blockchain.
+The repository is currently just a cargo workspace, but eventually will also contain yarn workspaces, and possibly other project type workspaces.
-The joystream runtime builds on a pre-release version of [substrate v2.0](https://substrate.dev/) and adds additional
+## Overview
+
+The joystream network builds on a pre-release version of [substrate v2.0](https://substrate.dev/) and adds additional
functionality to support the [various roles](https://www.joystream.org/roles) that can be entered into on the platform.
-### Prerequisites
+## Validator
+
+
+Joystream node is the main server application that connects to the network, synchronizes the blockchain with other nodes and produces blocks if configured as a validator node.
+
+To setup a full node and validator review the [advanced guide from the helpdesk](https://github.com/Joystream/helpdesk/tree/master/roles/validators).
+
+
+### Pre-built Binaries
+
+The latest pre-built binaries can be downloads from the [releases](https://github.com/Joystream/substrate-runtime-joystream/releases) page.
-## Getting Started - Building the WASM runtime
+
+### Building from source
+
+Clone the repository and install build tools:
```bash
-# Clone repository
-git clone https://github.com/Joystream/substrate-runtime-joystream
+git clone https://github.com/Joystream/substrate-runtime-joystream.git
+
cd substrate-runtime-joystream/
-# Install Pre-requisits
./setup.sh
-cargo build --release
```
-This produces the WASM "blob" output in:
+### Building
-`target/release/wbuild/joystream-node-runtime/joystream_node_runtime.compact.wasm`
+```bash
+cargo build --release
+```
-See deployment for notes on how to deploy this runtime on a live system.
+### Running a public node on the Rome testnet
-## Deployment
+Run the node and connect to the public testnet.
-Deploying the compiled runtime on a live system can be done in one of two ways:
+```bash
+cargo run --release -- --chain ./rome-tesnet.json
+```
-1. Joystream runtime upgrade proposals which will be voted on by the council. When the Joystream platform is live, this will be the only way to upgrade the chain's runtime code.
+The `rome-testnet.json` chain file can be ontained from the [release page](https://github.com/Joystream/substrate-runtime-joystream/releases/tag/v6.8.0)
-2. During development and testnet phases, we can send an extrinsic (transaction signed with the sudo key) invoking `conesnsus::setCode()`. This can be done either from the UI/extrinsics app, or directly with an admin script.
-## Running the tests
+### Installing a release build
+This will install the executable `joystream-node` to your `~/.cargo/bin` folder, which you would normally have in your `$PATH` environment.
```bash
-cargo test
+cargo install joystream-node --path node/
```
-## Coding style
+Now you can run
-We use `rustfmt` to format the source code for consistency.
+```bash
+joystream-node --chain rome-testnet.json
+```
-[rustfmt](https://github.com/rust-lang/rustfmt) can be installed with rustup:
+### Local development
-```
-rustup component add rustfmt
+This will build and run a fresh new local development chain purging existing one:
+
+```bash
+./scripts/run-dev-chain.sh
```
-Running rustfmt can be applied to all source files recursing subfolders:
+### Unit tests
-```
-rustfmt src/*.*
+```bash
+cargo test
```
-## Reproducible Builds
-In an attempt to have a reproducuble version of the runtime that can be verified independantly (by council members for example when deciding wether to vote in a runtime upgrade proposal) there is a `build-with-docker.sh` script which can be run to generate a `joystream_runtime.wasm` file to the current directory.
+## Joystream Runtime
-## Built With
+
-* [Substrate](https://github.com/paritytech/substrate)
-## Contributing
+The runtime is the code that defines the consensus rules of the Joystream protocol.
+It is compiled to WASM and lives on chain.
+Joystream node execute the code's logic to validate transactions and blocks on the blockchain.
-Please see our [contributing guidlines](https://github.com/Joystream/joystream#contribute) for details on our code of conduct, and the process for submitting pull requests to us.
+When building joystream-node as described abot with `cargo build --release`, in addition to the joystream-node binary being built the WASM blob artifact is produced in:
+
+`target/release/wbuild/joystream-node-runtime/joystream_node_runtime.compact.wasm`
+
+
+### Deployment
+
+Deploying the compiled runtime on a live system can be done in one of two ways:
+
+1. Joystream runtime upgrade proposals which will be voted on by the council. When the Joystream platform is live, this will be the only way to upgrade the chain's runtime code.
+
+2. During development and testnet phases, we can send an extrinsic (transaction signed with the sudo key) invoking `system::setCode()`. This can be done either from the UI/extrinsics app, or directly with an admin script.
+
+### Versioning the runtime
+
+Versioning of the runtime is set in `runtime/src/lib.rs`
+For detailed information about how to set correct version numbers when developing a new runtime, [see this](https://github.com/Joystream/substrate-runtime-joystream/issues/1)
-## Versioning
-Versioning of the runtime is set in `src/lib.rs`
-For detailed information about how to set correct version numbers when developing a new runtime, [see this](https://github.com/paritytech/substrate/blob/master/core/sr-version/src/lib.rs#L60)
+## Coding style
+
+We use `cargo-fmt` to format the source code for consistency.
+
+It should be available on your machine if you ran the `setup.sh` script, otherwise install it with rustup:
+
+```bash
+rustup component add rustfmt
+```
+Applying code formatting on all source files recursing subfolders:
+
+```
+cargo-fmt
+```
+
+## Contributing
+
+Please see our [contributing guidlines](https://github.com/Joystream/joystream#contribute) for details on our code of conduct, and the process for submitting pull requests to us.
## Authors
-See also the list of [contributors](./CONTRIBUTORS) who participated in this project.
+See also the list of [CONTRIBUTORS](./CONTRIBUTORS) who participated in this project.
## License
@@ -89,4 +139,3 @@ This project is licensed under the GPLv3 License - see the [LICENSE](LICENSE) fi
## Acknowledgments
Thanks to the whole [Parity Tech](https://www.parity.io/) team for making substrate and helping on riot chat with tips, suggestions, tutorials and answering all our questions during development.
-
diff --git a/build-with-docker.sh b/build-with-docker.sh
deleted file mode 100755
index b1e8a1ed22..0000000000
--- a/build-with-docker.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-
-# Build the toolchain image - contains only the compiler environmet for building runtime
-# This is then pushed to docker hub: https://cloud.docker.com/repository/docker/mokhtargz/wasm-toolchain/general
-# docker build --tag mokhtargz/wasm-toolchain --file ./wasm_dockerfile .
-
-# Build the runtime in a new image
-docker build --tag runtime-build --file ./runtime_dockerfile .
-
-# Create a non running container from the runtime build image
-docker create --name runtime-container runtime-build
-# Copy the compiled wasm blob from the docker container to our host
-docker cp runtime-container:/runtime/target/release/wbuild/joystream-node-runtime/joystream_node_runtime.compact.wasm joystream_runtime.wasm
-docker rm runtime-container
-
-# compute blake2_256 hash of the wasm blob - this should match the hash computed when the runtime file is
-# used to create a runtime upgrade proposal.
-# osx with: brew install b2sum; b2sum -b blake2b -l 256 joystream_runtime.wasm
-# ubuntu 17.0+ with: apt-get install coreutils; b2sum -l 256 joystream_runtime.wasm
-b2sum -l 256 joystream_runtime.wasm
diff --git a/devops/dockerfiles/node-and-runtime/Dockerfile b/devops/dockerfiles/node-and-runtime/Dockerfile
new file mode 100644
index 0000000000..ed0a8c1ce3
--- /dev/null
+++ b/devops/dockerfiles/node-and-runtime/Dockerfile
@@ -0,0 +1,27 @@
+FROM joystream/rust-builder AS builder
+LABEL description="Compiles all workspace artifacts"
+WORKDIR /joystream
+COPY . /joystream
+
+RUN cargo build --release
+
+FROM debian:stretch
+LABEL description="Joystream node"
+WORKDIR /joystream
+COPY --from=builder /joystream/target/release/joystream-node /joystream/node
+COPY --from=builder /joystream/target/release/wbuild/joystream-node-runtime/joystream_node_runtime.compact.wasm /joystream/runtime.compact.wasm
+
+# confirm it works
+RUN /joystream/node --version
+
+EXPOSE 30333 9933 9944
+
+# Use these volumes to persits chain state and keystore, eg.:
+# --base-path /data
+# optionally separate keystore (otherwise it will be stored in the base path)
+# --keystore-path /keystore
+# if base-path isn't specified, chain state is stored inside container in ~/.local/share/joystream-node/
+# which is not ideal
+VOLUME ["/data", "/keystore"]
+
+ENTRYPOINT ["/joystream/node"]
diff --git a/devops/dockerfiles/node-and-runtime/Dockerfile_experimental b/devops/dockerfiles/node-and-runtime/Dockerfile_experimental
new file mode 100644
index 0000000000..545506a668
--- /dev/null
+++ b/devops/dockerfiles/node-and-runtime/Dockerfile_experimental
@@ -0,0 +1,30 @@
+# syntax=docker/dockerfile:experimental
+# must enable experimental features in docker daemon and set DOCKER_BUILDKIT=1 env variable
+# https://github.com/moby/buildkit/blob/master/frontend/dockerfile/docs/experimental.md
+FROM joystream/rust-builder AS builder
+LABEL description="compiles and caches dependencies, artifacts and node"
+WORKDIR /joystream
+COPY . /joystream
+RUN mkdir /build-output
+
+RUN --mount=type=cache,target=/joystream/target \
+ --mount=type=cache,target=/root/.cargo/git \
+ --mount=type=cache,target=/root/.cargo/registry \
+ cargo build --release \
+ && cp ./target/release/joystream-node /build-output/joystream-node
+# copy in last part could be done with nightly option --out-dir
+
+FROM debian:stretch
+LABEL description="Joystream node"
+WORKDIR /joystream
+COPY --from=builder /build-output/joystream-node /joystream/node
+
+# Use these volumes to persits chain state and keystore, eg.:
+# --base-path /data
+# optionally separate keystore (otherwise it will be stored in the base path)
+# --keystore-path /keystore
+# if base-path isn't specified, chain state is stored inside container in ~/.local/share/joystream-node/
+# which is not ideal
+VOLUME ["/data", "/keystore"]
+
+ENTRYPOINT ["/joystream/node"]
\ No newline at end of file
diff --git a/devops/dockerfiles/rust-builder/Dockerfile b/devops/dockerfiles/rust-builder/Dockerfile
new file mode 100644
index 0000000000..26e35b69ab
--- /dev/null
+++ b/devops/dockerfiles/rust-builder/Dockerfile
@@ -0,0 +1,8 @@
+FROM liuchong/rustup:1.42.0 AS builder
+LABEL description="Rust and WASM build environment for joystream and substrate"
+
+WORKDIR /setup
+COPY setup.sh /setup
+ENV TERM=xterm
+
+RUN ./setup.sh
\ No newline at end of file
diff --git a/docs/using-docker/building-node-and-runtime.md b/docs/using-docker/building-node-and-runtime.md
new file mode 100644
index 0000000000..fc5e878b9a
--- /dev/null
+++ b/docs/using-docker/building-node-and-runtime.md
@@ -0,0 +1,40 @@
+### Docker
+
+#### Building localy
+
+A joystream-node can be compiled with given [Dockerfile](./Dockerfile) file:
+
+```bash
+# Build and tag a new image, which will compile joystream-node from source
+docker build . -t joystream-node
+
+# run a development chain with the image just created publishing the websocket port
+docker run -p 9944:9944 joystream-node --dev --ws-external
+```
+
+#### Downloading joystream pre-built images from Docker Hub
+
+```bash
+docker pull joystream/node
+```
+
+#### Running a public node as a service
+
+Create a working directory to store the node's data and where you will need to place the chain file.
+
+```bash
+mkdir ${HOME}/joystream-node-data/
+
+cp rome-testnet.json ${HOME}/joystream-node-data/
+
+docker run -d -p 30333:30333 \
+ -v ${HOME}/joystream-node-data/:/data \
+ --name my-node \
+ joystream/node --base-path /data --chain /data/rome-testnet.json
+
+# check status
+docker ps
+
+# monitor logs
+docker logs --tail 100 -f my-node
+```
diff --git a/node/Cargo.toml b/node/Cargo.toml
new file mode 100644
index 0000000000..bb6930245e
--- /dev/null
+++ b/node/Cargo.toml
@@ -0,0 +1,156 @@
+[package]
+authors = ['Joystream']
+build = 'build.rs'
+edition = '2018'
+name = 'joystream-node'
+version = '2.1.6'
+default-run = "joystream-node"
+
+[[bin]]
+name = 'joystream-node'
+path = 'bin/main.rs'
+
+[lib]
+crate-type = ["cdylib", "rlib"]
+
+[dependencies]
+hex-literal = '0.2.1'
+derive_more = '0.14.0'
+exit-future = '0.1.4'
+futures = '0.1.29'
+log = '0.4.8'
+parking_lot = '0.9.0'
+tokio = '0.1.22'
+jsonrpc-core = '13.2.0'
+rand = '0.7.2'
+structopt = '=0.3.5'
+serde_json = '1.0'
+serde = '1.0'
+hex = '0.4'
+# https://users.rust-lang.org/t/failure-derive-compilation-error/39062
+# quote = '<=1.0.2'
+
+[dependencies.node-runtime]
+package = 'joystream-node-runtime'
+path = '../runtime'
+
+[dependencies.substrate-basic-authorship]
+git = 'https://github.com/paritytech/substrate.git'
+package = 'substrate-basic-authorship'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.babe]
+git = 'https://github.com/paritytech/substrate.git'
+package = 'substrate-consensus-babe'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.babe-primitives]
+git = 'https://github.com/paritytech/substrate.git'
+package = 'substrate-consensus-babe-primitives'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.codec]
+package = 'parity-scale-codec'
+version = '1.0.0'
+
+[dependencies.ctrlc]
+features = ['termination']
+version = '3.0'
+
+[dependencies.inherents]
+git = 'https://github.com/paritytech/substrate.git'
+package = 'substrate-inherents'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.network]
+git = 'https://github.com/paritytech/substrate.git'
+package = 'substrate-network'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.primitives]
+git = 'https://github.com/paritytech/substrate.git'
+package = 'substrate-primitives'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.sr-io]
+git = 'https://github.com/paritytech/substrate.git'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.substrate-cli]
+git = 'https://github.com/paritytech/substrate.git'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.substrate-client]
+git = 'https://github.com/paritytech/substrate.git'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.substrate-executor]
+git = 'https://github.com/paritytech/substrate.git'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.substrate-service]
+git = 'https://github.com/paritytech/substrate.git'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.transaction-pool]
+git = 'https://github.com/paritytech/substrate.git'
+package = 'substrate-transaction-pool'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.substrate-telemetry]
+git = 'https://github.com/paritytech/substrate.git'
+package = 'substrate-telemetry'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.grandpa]
+git = 'https://github.com/paritytech/substrate.git'
+package = 'substrate-finality-grandpa'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.grandpa-primitives]
+git = 'https://github.com/paritytech/substrate.git'
+package = 'substrate-finality-grandpa-primitives'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.im-online]
+default_features = false
+git = 'https://github.com/paritytech/substrate.git'
+package = 'srml-im-online'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.substrate-rpc]
+default_features = false
+git = 'https://github.com/paritytech/substrate.git'
+package = 'substrate-rpc'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.authority-discovery]
+default_features = false
+git = 'https://github.com/paritytech/substrate.git'
+package = 'substrate-authority-discovery'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.client-db]
+default_features = false
+git = 'https://github.com/paritytech/substrate.git'
+package = 'substrate-client-db'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.runtime-primitives]
+default_features = false
+git = 'https://github.com/paritytech/substrate.git'
+package = 'sr-primitives'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.offchain]
+default_features = false
+git = 'https://github.com/paritytech/substrate.git'
+package = 'substrate-offchain'
+rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'
+
+[dependencies.libp2p]
+version = '0.13.2'
+default-features = false
+
+[build-dependencies]
+vergen = '3'
diff --git a/node/LICENSE b/node/LICENSE
new file mode 100644
index 0000000000..f288702d2f
--- /dev/null
+++ b/node/LICENSE
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program 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.
+
+ This program 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 this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ Copyright (C)
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+.
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+.
diff --git a/node/bin/main.rs b/node/bin/main.rs
new file mode 100644
index 0000000000..70006bf571
--- /dev/null
+++ b/node/bin/main.rs
@@ -0,0 +1,40 @@
+// Copyright 2019 Joystream Contributors
+// This file is part of Joystream node.
+
+// Joystream node 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.
+
+// Joystream node 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 Joystream node. If not, see .
+
+//! Substrate Node Template CLI library.
+
+#![warn(missing_docs)]
+#![warn(unused_extern_crates)]
+
+use joystream_node::cli;
+pub use substrate_cli::{error, IntoExit, VersionInfo};
+
+fn main() {
+ let version = VersionInfo {
+ name: "Joystream Node",
+ commit: env!("VERGEN_SHA_SHORT"),
+ version: env!("CARGO_PKG_VERSION"),
+ executable_name: "joystream-node",
+ author: "Joystream",
+ description: "Joystream substrate node",
+ support_url: "https://www.joystream.org/",
+ };
+
+ if let Err(e) = cli::run(::std::env::args(), cli::Exit, version) {
+ eprintln!("Fatal error: {}\n\n{:?}", e, e);
+ std::process::exit(1)
+ }
+}
diff --git a/node/build.rs b/node/build.rs
new file mode 100644
index 0000000000..9a51c38b81
--- /dev/null
+++ b/node/build.rs
@@ -0,0 +1,27 @@
+use std::{env, path::PathBuf};
+
+use vergen::{generate_cargo_keys, ConstantsFlags};
+
+const ERROR_MSG: &str = "Failed to generate metadata files";
+
+fn main() {
+ generate_cargo_keys(ConstantsFlags::SHA_SHORT).expect(ERROR_MSG);
+
+ let mut manifest_dir = PathBuf::from(
+ env::var("CARGO_MANIFEST_DIR").expect("`CARGO_MANIFEST_DIR` is always set by cargo."),
+ );
+
+ while manifest_dir.parent().is_some() {
+ if manifest_dir.join(".git/HEAD").exists() {
+ println!(
+ "cargo:rerun-if-changed={}",
+ manifest_dir.join(".git/HEAD").display()
+ );
+ return;
+ }
+
+ manifest_dir.pop();
+ }
+
+ println!("cargo:warning=Could not find `.git/HEAD` from manifest dir!");
+}
diff --git a/node/res/acropolis_members.json b/node/res/acropolis_members.json
new file mode 100644
index 0000000000..0912c071ef
--- /dev/null
+++ b/node/res/acropolis_members.json
@@ -0,0 +1 @@
+[{"address":"5DcAKnrUmfes76j5ok8XcFheTdzS72NFsJA56AzVrNz9gVEz","handle":"joystream_storage_member","avatar_uri":"https://assets.website-files.com/5c78435271c31384e942f111/5c78435271c313493442f123_Helmet.svg","about":"Joystream run member account for storage nodes."},{"address":"5DaDUnNVzZPwK9KLwyPFgeSbc9Xeh6G39A2oq36tiV9aEzcx","handle":"bwhm0","avatar_uri":"","about":"I am part of the team building the Joystream network. Feel free to follow me on twitter, or contact me on telegram! @bwhm0 on both."},{"address":"5FnXBHfcDE6nQrwHjZqHYYpnzCLap2b9d3eQHt2Jt9eBG6mv","handle":"tomato","avatar_uri":"","about":""},{"address":"5GLLKE5LqfYtzJyE779jcciT8uM5rjQfGZ65r3sKBvvoUfBZ","handle":"tzdutchcom","avatar_uri":"","about":""},{"address":"5FMrFXCbhtdv4tG5XaPsG3MyS6u36ZfsdCoHZxk4cTGdE56D","handle":"nexusfallout","avatar_uri":"https://www.gravatar.com/avatar/00000000000000000000000000000000","about":"I am Finny, a blockchain enthusiast, been here since the beginning of the new project. Looking forward to be an active member."},{"address":"5CiGc9SzUjaVPZd66HVDnJNSRh5Ld3TK477nGYiwurwHZnZv","handle":"enjoythefood","avatar_uri":"https://cdn.pixabay.com/photo/2016/12/26/17/28/food-1932466__480.jpg","about":"Following this project. Hope the best for it"},{"address":"5GSMNn8Sy8k64mGUWPDafjMZu9bQNX26GujbBQ1LeJpNbrfg","handle":"alex_joystream","avatar_uri":"https://avatars2.githubusercontent.com/u/153928?s=200&v=4","about":"I'm developing this web UI & blockchain modules for [Joystream](https://www.joystream.org/) network.\n\nFollow me on Twitter [@AlexSiman](https://twitter.com/AlexSiman)\n\nSee my GitHub profile: [@siman](https://github.com/siman)"},{"address":"5H8kTuZp2T2geceCuaEQ29Jg8fFjCJkwGQgZjRhhGLxFVMSC","handle":"benholdencrowther","avatar_uri":"https://www.benholdencrowther.com/wp-content/uploads/2019/03/Hanging_Gardens_of_Babylon.jpg","about":"I am an investor, publisher and security researcher."},{"address":"5Gn9n7SDJ7VgHqHQWYzkSA4vX6DCmS5TFWdHxikTXp9b4L32","handle":"mokhtar","avatar_uri":"https://avatars2.githubusercontent.com/u/1621012?s=460&v=4","about":"mokhtar"},{"address":"5EtFzT8ZJN7VPKfcxjsQhtJUhHzuPsUFMaahPLGoaw5odaqj","handle":"staked_podcast","avatar_uri":"https://pbs.twimg.com/profile_images/1100673229310644229/HUbup-M5_bigger.png","about":"staked podcast"},{"address":"5EHCSTmnRVedbVssiWBLbE9LjXsF3MZje961LswgxvKBjPPy","handle":"nexus","avatar_uri":"https://www.gravatar.com/avatar/00000000000000000000000000000000","about":"This is Finny, a Crypto enthusiast and a web dev. (old account no longer validating.)"},{"address":"5GxkVNvkKRWcrMxyNzgiVD42Fiovw3DezC62XKei24sdezaf","handle":"pskyhard","avatar_uri":"","about":"hobby mining,musician,guitarist,music maker,crypto trader"},{"address":"5Dba5neECYe3eyEJ9bdd2mCQzuXwruqaYdrF1UPjE2B9rzAb","handle":"ch3n9lee","avatar_uri":"","about":"GPU/CPU/HDD MINER, musician,guitarist,song writter,music maker.crypto trader"},{"address":"5DPovdRPEPvfRqzAgEB6xpC6teknC8fdDk5HCE6FATnqRARf","handle":"gnossienli","avatar_uri":"https://staker.space/stkrspcLogo.png","about":"Validator trying out joystream"},{"address":"5G7Hzo7eqWQKuNHAG8NN1xEDXsRidFd26rgibw4e3Tw392Bb","handle":"bontoo","avatar_uri":"https://www.google.com/imgres?imgurl=https%3A%2F%2Fklikhijau.com%2Fwp-content%2Fuploads%2F2019%2F01%2Fkokkoci.jpg&imgrefurl=https%3A%2F%2Fklikhijau.com%2Fread%2Fini-fakta-lain-dari-burung-hantu-yang-jarang-diketahui%2F&docid=WUzhl7-2xRPDfM&tbnid=uCPsnOv4tikIbM%3A&vet=10ahUKEwjyrOTI69bhAhU0juYKHZ8CBr4QMwg-KAIwAg..i&w=750&h=432&bih=658&biw=1024&q=burung%20hantu&ved=0ahUKEwjyrOTI69bhAhU0juYKHZ8CBr4QMwg-KAIwAg&iact=mrc&uact=8","about":"testnet for future"},{"address":"5FZQZAFncWciyFeDbbSPuKtFwPovizCdTdA1BHKsNjYtyc7T","handle":"storage_tester","avatar_uri":"","about":"just testing..."},{"address":"5EwRZv5hFb2oy1Ubsvor1nfeFUjV4Ycgk7hjNCfHDBQBcExs","handle":"storage_test_edwards","avatar_uri":"","about":"still testing..."},{"address":"5HUA38wojV9PfMZGsNksMR3PDGskshJgknnBnFUGQBgZRs92","handle":"still_testing_storage","avatar_uri":"","about":"will unreg later..."},{"address":"5CFJhfdE5xbp9KZ4b3kULCYvfAm1PDfjL6SdAmeewMj7roPw","handle":"dolby","avatar_uri":"https://drive.google.com/file/d/1ygXMTeoy16qGBr03GW6MuogdEbtScsev/view?usp","about":"I love this test"},{"address":"5FeamBx9DWjG5aLAMLyvmu3JphwyCFEA9HFoUYWfHRFMGNK1","handle":"periskystorageprovider","avatar_uri":"","about":"storage provider, free music& video content"},{"address":"5En5s2iZ865T9iY59bFdm1p8Hxdb2w3jL1obx3SK1YUDYKf9","handle":"abyanstorage","avatar_uri":"","about":"tes for storage provider"},{"address":"5CMP8SssaKGyPFS4dftDM1UNbo2irDuibNoSggjASwxjHA7B","handle":"naimastorage","avatar_uri":"","about":"testing storage provider"},{"address":"5EC1Wrd15LjMcgdF8MFsner3hwWeKtSaqKigVDLH6Abd7BxC","handle":"storageathens","avatar_uri":"","about":"im naima want to join as a joystream team"},{"address":"5GbivJkHuHs6wxgiH2SS44MyQ9PfDKfTjSgwoyunqrCZ3HEF","handle":"botsawana","avatar_uri":"","about":""},{"address":"5DwUCvgQ99ghQArqLQx3mjbedCdLjzznuVfw8nv2JNK5DaqY","handle":"radithot","avatar_uri":"","about":"newbie testing"},{"address":"5GZkh2yxD2d6c8muJjnM4PE4e3dsRnv8XJ8dk4iwyPcDen3J","handle":"papayadee","avatar_uri":"","about":"testing "},{"address":"5CRBBpNJqoonH6shfJWHJTDqisti36Nxc9P52SHxrTrkmwcc","handle":"meetlica","avatar_uri":"","about":"this is test"},{"address":"5DWp8NhZDgbk7aWs36uT3UjJayBAz7pfhE2mfmbLuUVZGd3p","handle":"storage_debugging","avatar_uri":"","about":""},{"address":"5Do6LSqMybi1MXm47oYhA4Um367Yt6xLqnFybXfSKzU4HicZ","handle":"roarhansen","avatar_uri":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/James_Dean_-_publicity_-_early.JPG/220px-James_Dean_-_publicity_-_early.JPG","about":"Scandinavian person interested in cryptocurrency and file sharing."},{"address":"5DLrbgdXYfAJRwXwm7wrkEfgujmwrQMxa39hJeeC7bQwjhhv","handle":"aisyah","avatar_uri":"https://testnet.joystream.org/athens/pioneer/#/members/edit","about":"Gogogo test and moon"},{"address":"5Gj7TbThxL1PiVHd4jJjYeJvDAmvp1j8hdcpPEFtqGoswZLJ","handle":"jamiek","avatar_uri":"https://pbs.twimg.com/profile_images/810014496131428352/if9jywHE_bigger.jpg","about":"Creator of the Make World and STEAL THIS SHOW podcasts."},{"address":"5DzGS4AiDH9vdzMC4rDj1hBnxWmDJD3NjGNsbSxEDYo2Jpdu","handle":"milzam","avatar_uri":"","about":"Hello World im here to joint Joystreeam team"},{"address":"5CNWS2V6RYKZVeqjqg9UqbQhAxGGphWtv9STxKKuuJW9kG3S","handle":"nexus_storage","avatar_uri":"","about":"this is the test storage account of nexus"},{"address":"5GTGsVLz1VWPmD9KbMtdW5wMJjcAwmpt3SjEZHbTJiQycawy","handle":"pskyubuntu","avatar_uri":"","about":"want to become a part Joystream team"},{"address":"5CEw8JxuM1kh34VoocG9bqqjqs98pdA7fG5uaTtPdjzShqFb","handle":"nectar","avatar_uri":"","about":"Validator/Council Member"},{"address":"5FU95CyecEJo3czvTcYfmR6LTNXT7fXTrkkRJFNcbRFuCYXH","handle":"pskysession","avatar_uri":"","about":"awesome joystream node"},{"address":"5HZ4RchQki238Zq4x47bj8fijGvhosaH1bXtAB9z9iAed2BR","handle":"mekienak","avatar_uri":"","about":"gimme joystream token"},{"address":"5Fnkp3p2fgKXN3rEDTTRQNBekfdWE3xEZToRWqHiCrTqsDKC","handle":"hountez","avatar_uri":"","about":""},{"address":"5DeomUpfJiaohdrNoiNd4KTJAmz4SjB5z7ep5JQ8Lwx8Mmvr","handle":"tienee","avatar_uri":"https://testnet.joystream.org/athens/pioneer/#/members/5DeomUpfJiaohdrNoiNd4KTJAmz4SjB5z7ep5JQ8Lwx8Mmvr","about":"My job"},{"address":"5DPjwKLAKqVNMwmHWqX3SwwJ5WraPWRuLx71gFaCCcchcdmc","handle":"arjuna","avatar_uri":"https://drive.google.com/file/d/12iTZzBpdeHrN2tjJz7zIlrzDxpIFugl_/view?usp=drivesdk","about":"Xmr im loved"},{"address":"5DcZjBgXcsDi51etbUvkB9twJL9yUnwTFnmsj75Q6ean7qNb","handle":"bitcatstorage","avatar_uri":"https://s3.amazonaws.com/keybase_processed_uploads/ce9e45f57a027881e69021a12543d905_360_360.jpg","about":"validator service from China team"},{"address":"5GnWANB5HxqbXd5kfhTKDvpeVGuDXH5G4ofEVEndT6CT9jFm","handle":"nickname","avatar_uri":"","about":""},{"address":"5DFJfZePK15RThiZwdwjSDY87J3w94mCvyCve9BGaQqdeqww","handle":"boatman","avatar_uri":"https://lh3.googleusercontent.com/-Wnc3u2TxtWw/ToZ-uQvDmFI/AAAAAAAAUUM/sxs71ntW_5wdMxZTGjdBdr14k9seixVBQCEwYBhgL/w280-h276-p/BoatHead2.JPG","about":"I am existed for this project. I have been using joystream since it was testnet on bitcoin. I would like to be a Storage Provider, and a Validator. "},{"address":"5DoZsgfmppmxm5N2nmWvpE7vk3EiojZoeBYKjfKNnm7dY1CS","handle":"yasin","avatar_uri":"https://testnet.joystream.org/athens/pioneer/#/members/edit","about":"good to try"},{"address":"5GxcUjY3tXYaDnm6LDu3yRdgE9wACXbmqjYVVAg8FwRZYPmF","handle":"sudapl","avatar_uri":"","about":""},{"address":"5G8bFk4TGm5JKhLMj199zf6iQfrHYBrLh9JBuipERF6WLYX7","handle":"shadowmen","avatar_uri":"","about":""},{"address":"5D347Qwfk9Jexfaju3d2iqi8UY1JguKazmz6Zsc2HEzFTnr5","handle":"night_raven","avatar_uri":"","about":""},{"address":"5HDHZQyuBZZiX7yThA2SzPBW2xVKk6v6dgCnQDiRABkqfdpY","handle":"picasso","avatar_uri":"","about":""},{"address":"5HD1jy4hco4SLKU8GkJvHZNWH6kQeiCm3eTssngk5nf85DmA","handle":"mb00g","avatar_uri":"https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/48/48657feccbb3bef0dcfc8511ba500a0fdcf687b0_full.jpg","about":""},{"address":"5FVMRqxB3KNVrq6r3yMc4jrDVWwkLxCBwu3pAtRF3HpXZkjd","handle":"alkno12","avatar_uri":"","about":""},{"address":"5ECH7vPtCVTs1Y6U4NonWJYBSPo87gGWYUn3xN9evPvYDyaW","handle":"storage_dude","avatar_uri":"","about":"..."},{"address":"5Hp4rr7YQtjLQ82W4a55cQm3e6aePxZqATWAk23vKMxZ4Qfm","handle":"roar_storage","avatar_uri":"https://image.freepik.com/vector-gratis/fondo-borroso-colores-claros_1159-750.jpg","about":""},{"address":"5F4k8DAGNTgXRtYbSf1pbqpBueP1nQmvmyrRDwVmFqVRFtsu","handle":"rioplata","avatar_uri":"https://i.kym-cdn.com/entries/icons/original/000/026/913/excuse.jpg","about":""},{"address":"5GHQsSq2Cbu2UuMpJExRFNkngrJyf9bvmWjHtoaQTcyZfx7n","handle":"joyousjester","avatar_uri":"","about":""},{"address":"5EWUe17geJfL8YhJKjpnXswWkbMJpMj2AonLYygLptUchDsL","handle":"roar_stor","avatar_uri":"","about":""},{"address":"5HNk1sE1Fwq3teKCJybnDzTaihYoDCCLVtfWVKoUEjs1fppb","handle":"tigernr2","avatar_uri":"","about":""},{"address":"5DU3yCmcKYdhMhx8qwhtREDpB96ALg4n3GZ7KWqD8RYuHf85","handle":"fast_inet_offer","avatar_uri":"","about":"i have no idea if its usefull but have an 500/500 mb/s EU west connection to use"},{"address":"5CJ4DWRdrCCt4qQhWutSiHuEAHVXFcQ8Fsb2UJbFbwzUj4En","handle":"sdjakasampurna","avatar_uri":"","about":"love joystream project"},{"address":"5GT93iCiNmgnKznXrwg7VYfyxgtwYAsejPaVMFiEq35HDFb3","handle":"kampung2","avatar_uri":"","about":"earn xmr with join tesnet Joystream athens project"},{"address":"5GkE2fc3Yh1CeikUjNedPeKAyEUGzJvMRV4vgbawB7nsPNQt","handle":"sedotwc","avatar_uri":"","about":"love joystream team"},{"address":"5HSvkJ3KgBPQYFRVZatjWqim6oSbCDgYgK6pR9JERD9xkmyd","handle":"jolowiprabowo","avatar_uri":"","about":"vote me and let me in :)"},{"address":"5DfbxvnYEnAe18yWX5HKsxt8AaoDAjtmfpUco9rcZBYwqhJi","handle":"jablay","avatar_uri":"","about":"awesome tesnet joystream athens "},{"address":"5DGsFBByiSRTo248vk6Qu9CjQMgvbgyVRjQpix3J6oCHbXoV","handle":"farel","avatar_uri":"https://www.google.com/search?q=avatar+image+gallery&rlz=1C1CHBD_enID841ID841&tbm=isch&source=iu&ictx=1&fir=SX8E-0agQ_pJ3M%253A%252CyCPAa3PT2m-g9M%252C_&vet=1&usg=AI4_-kTAFpffjGlrfWxx6lsz5cP_aHGa8g&sa=X&ved=2ahUKEwj52PDPuoLiAhUPnq0KHeugBqAQ9QEwAnoECAkQCA#imgrc=SX8E-0agQ_pJ3M:","about":"my chance"},{"address":"5CiQy3WMqEhmVgWecgd7PDf4zFYjySsCeSoEPHfwKDX1ZXKH","handle":"gembong","avatar_uri":"https://www.google.com/search?q=avatar+image+gallery&oq=avatar&aqs=chrome.1.69i57j35i39j0l2.2072j0j7&client=ms-android-xiaomi&sourceid=chrome-mobile&ie=UTF-8#imgdii=BSOvfOTZ34aQAM:&imgrc=s5u4OXEq0vKpeM:","about":"Star for all"},{"address":"5HYs84s2wAUkyuP43sm1AvRQ6kYrUDS9KDcXoAHTxFdX5CTF","handle":"memberkonsil1","avatar_uri":"","about":"vote me"},{"address":"5CidUM3X95rizhAkfwx9DjsuBAkytAPv6wxkaHT5kiUz5s2v","handle":"dafaa","avatar_uri":"https://www.google.com/search?q=avatar+image+gallery&oq=avatar&aqs=chrome.1.69i57j35i39j0l2.2282j0j7&client=ms-android-xiaomi&sourceid=chrome-mobile&ie=UTF-8#imgrc=dJaZxO8IQKRD_M:","about":"Join"},{"address":"5GEd1rmfmgxtu2ab9ZwkiWKiu12mnxzSx1YiUHqaAPZpoG4b","handle":"yacobtsige","avatar_uri":"","about":"exploring the blockchain got me here im very curious and easy to understand "},{"address":"5F1X2QM9Y4Zyf2gEEzT45xYx2jXaz62ZRhaXmMoz1u3a9EmR","handle":"awuldor","avatar_uri":"","about":""},{"address":"5Ct589RpqCSXfR9x3nMC2q3kdsXJc57K3o78MJGyn4mQdt9u","handle":"oroor21","avatar_uri":"","about":"cheaters"},{"address":"5HmHHAVsDnbrngfpHrFba1CCyobeVscvM8LS2F8e6BoX3ujc","handle":"boggieman","avatar_uri":"","about":"vote me"},{"address":"5E5QTPqfRua4TNUFby9BwNirf18hjL8BfDixqNxzmHH7AQuw","handle":"sitim","avatar_uri":"https://testnet.joystream.org/faucet?address=5E5QTPqfRua4TNUFby9BwNirf18hjL8BfDixqNxzmHH7AQuw","about":"Everything"},{"address":"5GiSPEa9RkuKwHC8Gsd9Mvz8AuRpLqyCxt6PX2uGMhLBkMt6","handle":"saitama","avatar_uri":"","about":""},{"address":"5CsrS5WKjLMnhz5C44uuqAmzF8hiMCdB3jfPU183pVZCiYic","handle":"stake5labs","avatar_uri":"","about":""},{"address":"5GvnVHdoKpeY3mXKqFKxemZWhp3LHYnP1pjsUxvBsdAQQ1Uj","handle":"bepoo","avatar_uri":"","about":""},{"address":"5Dgkz2T8F7nCHBcCFkkUmVapn128Y7FjoLcAkKn3VKt4HWFa","handle":"sta5l","avatar_uri":"","about":""},{"address":"5EpDFAf1GXbyJA91nWGVMt3nfTcJumdKaZouhkce9vnDkTnu","handle":"aneukayah","avatar_uri":"","about":""},{"address":"5G7hWpjtmWvY6bAVEE9eUbHAakU83BiacgvWpeMwNZounTXc","handle":"sapimin","avatar_uri":"","about":""},{"address":"5CLTmmq9MYHFzFcxdx61ehaTSyH4LXHNuxxxGd4rMbaK2GFa","handle":"arjanz","avatar_uri":"https://pbs.twimg.com/profile_images/1122362089/image_bigger.jpg","about":"Polkascan test"},{"address":"5CtDrkRsqSVrYoWuEuEcMJoMkv3V28qzuVSmxmHZGYDmxotA","handle":"arjan","avatar_uri":"","about":"Test account"},{"address":"5GajxrWgmhCDnKBEdYDX8dEi3hPbYRsCFDrJsFHXeJ1dbESy","handle":"inchain_works","avatar_uri":"https://i.imgur.com/LI85WjO.jpg","about":"inchain.works"},{"address":"5EZbBSiTwmd7V3dn5PhZKWp1LuGXoTCBUk8TJmadXdfVwnWG","handle":"11th_member","avatar_uri":"","about":""},{"address":"5CiuCY1684Kpseg3CtEepqvmEumveoTEgHbkTHgEkZWN463q","handle":"huang","avatar_uri":"","about":""},{"address":"5FEEHAeXbMZRWMRvGFMGN18RUEhjX5nrgonB5YZ4NLahTXGJ","handle":"riyue","avatar_uri":"","about":""},{"address":"5HdGgQKeWvKTmnq6jnNeM6t6gnRSaAExdTg5oK9LFAunEjmf","handle":"rethwe","avatar_uri":"","about":""},{"address":"5Ei3dtaie8WGrJBMrF8mexCi62fjE7EuMPTfQ8midtDH1ssx","handle":"ch3storage","avatar_uri":"","about":"hi im beginer to join joystream storage provider and im still learn about joystream project"},{"address":"5DFKsQKbosQ41mpy4NbWLP8rQApc1bb1gEbxxCCDkToUmzNE","handle":"tryptamine","avatar_uri":"","about":""},{"address":"5CknxEPjaCEXm2e7Xvn7X6ergCewPdfpNSTNYfoNZtkrUB4J","handle":"martintibor40","avatar_uri":"https://lh3.googleusercontent.com/a-/AAuE7mAOxgww3L4uBSuatEvkZkB-TQ3TF1o-raqPy6z4oA=s96","about":"\"Ready to embrace the future'\""},{"address":"5DYFgPoqT27Wf6Pq7sFxdAV2BrshYQZ5qSqeTrXeWbidbW9G","handle":"john_pars","avatar_uri":"","about":""},{"address":"5H12THfoB3U3HQmZDRc5kawbVr1q5SSwWWg1d7p6VwREwSus","handle":"bintang","avatar_uri":"","about":"he im new joystream member"},{"address":"5ER3KmWi2oLkQ3Mwc68UyeEfsL1eX6k9WEnWmouB8JXx1F21","handle":"bintang3","avatar_uri":"","about":"hi joystream team"},{"address":"5GBTtfYboQJYa7Ao6UwGBNKFbp4xMHYsCZtyQa8gjxG9Rpj6","handle":"shamson","avatar_uri":"https://www.google.com/search?q=image+link&rlz=1C1CHBD_enID841ID841&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjVrIn2r7LiAhVEKKwKHe4fBiwQ_AUIDigB&biw=1024&bih=658#imgrc=m-Q34_JjzEmTLM:","about":"try to know"},{"address":"5He1Mn1U8kSE1uwYpQ51R3f1MBb2vcDr3NTLvXUschgFdtuG","handle":"edivalidator","avatar_uri":"","about":"hi vote me :P"},{"address":"5GYQ1kP5RAgNxQqkddLVhFvfYAnDDLVCLSLpUGXhahp1sRTm","handle":"herikeren","avatar_uri":"","about":"newbie in joystream project"},{"address":"5EwPRFkgaj9YqjQ6w3LVf4YewFpEeUZkKoY6hTLbHCHYehDB","handle":"aray12","avatar_uri":"https://www.google.com/search?q=pic+anime&oq=pic+anime&aqs=chrome..69i57j0l3.9562j0j7&client=ms-android-xiaomi&sourceid=chrome-mobile&ie=UTF-8#imgrc=EgAIu6Yli0420M:","about":"Try to know"},{"address":"5H8XFhvFDsiDGrF26ZvgcG9swt34wSAr8AbvRoeq7U5yi7Yd","handle":"nadine","avatar_uri":"https://drive.google.com/file/d/1Gk4ubqBcEvcQpre1r_ePZ7T65ZgHCfrF/view?usp=drivesdk","about":"Wana claim"},{"address":"5HfGdiZ182XX5rwUwrje9rgvae2WX9eDRWDXwJg3sD2DbQHD","handle":"kubil","avatar_uri":"https://www.google.co.id/search?q=image+search&safe=strict&client=ms-android-samsung&prmd=insv&source=lnms&tbm=isch&sa=X&ved=2ahUKEwif-Z-hxbLiAhWRUn0KHRidB2cQ_AUoAXoECAsQAQ&biw=320&bih=452#imgrc=pg35LtBI2OhWgM","about":"Choice me p p p"},{"address":"5C6bM8CJP7X6zkBeDe2pD3LMxomnoQBRsJqB1c9tPYsatftb","handle":"jhuan","avatar_uri":"https://www.google.com/search?q=avatar+image+gallery&oq=avatar&aqs=chrome.1.69i57j35i39j0l2.2282j0j7&client=ms-android-xiaomi&sourceid=chrome-mobile&ie=UTF-8#imgrc=dJaZxO8IQKRD_M:","about":"Easy trial and earn X"},{"address":"5Dy4FpfUcnVCx9A4XtpFXYkWWWoM1dsKoS3K89VskjjMUQj8","handle":"bamsrd","avatar_uri":"https://www.google.com/search?q=gambar+doraemon&oq=gambar&aqs=chrome.3.69i57j0l3.4106j0j4&client=ms-android-vivo&sourceid=chrome-mobile&ie=UTF-8#imgrc=BnOodOeJ6T-hsM:","about":"My friend tell me about this"},{"address":"5DXwzZ6P4QTKS14Wv79Ne9YtvmG6yiN8xEPqwecg42pFH1EX","handle":"raden","avatar_uri":"https://www.google.com/search?q=image+avatar+url&oq=image+avatar&aqs=chrome.1.69i57j0l3.5206j0j4&client=ms-android-samsung&sourceid=chrome-mobile&ie=UTF-8#imgrc=AhCy_cweM6lOWM:","about":"My first time"},{"address":"5Drcpx3M7FhPgexUyxoEJDR9Ltne69r3YVhCkQifBV1b5zGz","handle":"siman","avatar_uri":"","about":""},{"address":"5DUaFPy1eqkQuU7DEBZ9YpTmTGjSuQaCXT6wFpYx4iM489H5","handle":"andyt","avatar_uri":"https://www.google.com/search?q=image+avatar+url&oq=image+avatar&aqs=chrome.1.69i57j0l3.6262j0j4&client=ms-android-samsung-gj-rev1&sourceid=chrome-mobile&ie=UTF-8#imgrc=z-5c98oV9rSuuM:","about":"Newbieeee"},{"address":"5DY2bBaB24Zv8WivThmpQuRH8PAMkJaz8rpLnUtT9RhpdVnQ","handle":"yohanesyuen","avatar_uri":"","about":""},{"address":"5CCrySRCh6Rykmj8hHTeSwgsagvD3tr34Qtv2756SP9CpvWL","handle":"linuxif","avatar_uri":"","about":""},{"address":"5FrXNhhS9RjZsiQH737yHMoz3Kw8pg7Uc5cMtw5PE6Y7HJ6J","handle":"linuxifraw","avatar_uri":"","about":""},{"address":"5CBNQvCiFYaCVsr6A1nFChDwddzmeBboHMydstULtjzQFVXN","handle":"kacung","avatar_uri":"https://www.google.com/search?q=image+Avatar&oq=image+Avatar&aqs=chrome..69i57j0l3.4540j0j9&client=ms-android-xiaomi-rev2&sourceid=chrome-mobile&ie=UTF-8#imgrc=Jjq5a5o5G80fpM:","about":"Mantap"},{"address":"5Dos9CnNqnp5jDxdBXBCsdRFQRDkNHUo6qULEqT6infbRKxi","handle":"arikan","avatar_uri":"https://pbs.twimg.com/profile_images/1110553699636649984/PPjcoiD4_400x400.jpg","about":"machine readable artist"},{"address":"5Fa2QXToUMNHfmgJ4oskA63hLr4RmY7fEMdEEAGwthbgqjPT","handle":"kaizer","avatar_uri":"","about":""},{"address":"5EJK2q7TZ3zBpM86dUNYG36ioDJjWzrzRFqPpKWq4huxSoN1","handle":"rezza","avatar_uri":"https://images.app.goo.gl/dTMUy1Tebpn5rJCV7","about":"Here here"},{"address":"5GFGT91YyMGq9Gob67DKuMHmEm2LYG6tmbRuoKN8kA1x3hCB","handle":"jstar269","avatar_uri":"","about":""},{"address":"5HjMzAgoTqZnAtNbTgHk7eHUvH5dBthEUNmmRqdjHrJRUnWv","handle":"misterjo9","avatar_uri":"","about":""},{"address":"5HYaW898Z3EJBmSaYPFqp2DBgkW13zf6aMWfdbZ44dkLdSpA","handle":"sally","avatar_uri":"","about":""},{"address":"5GPVHW88RPtzxEM2QH6cZMp6JJR4TKX7xTNiwuf81ZDkT2TM","handle":"kagami_san","avatar_uri":"https://i.imgur.com/BwViZJq.png","about":"If elected, I will be an independent, fair counsel member that interacts with the community and represents the community sentiment. Thank you!"},{"address":"5GWH3K3ivLK32kKyLbws2SJpGisLd4CM1kjPeAGwxsB7XJZN","handle":"glenden","avatar_uri":"","about":"I am Glenden"},{"address":"5EDwsMeq5AKo278rgh38TvjkCDSiBZpiKq7LZLQEAbmsxv65","handle":"shmoop","avatar_uri":"https://sites.psu.edu/siowfa16/files/2016/10/YeDYzSR-10apkm4.png","about":""},{"address":"5HEsfa5rjDYALKyDBY7oFX6qYTTUSJgjEB9uACA6kptHQAmD","handle":"zxczxczxczczxc","avatar_uri":"","about":""},{"address":"5HMpE8Z2AuntT6Wow9Zjq74m5dBMViZmoK35byFPKMF2CiAX","handle":"r1sk97","avatar_uri":"https://yt3.ggpht.com/a/AGF-l78nwhTvUtstqRUDD_nIz_y40JSYHFV2yoZ46Q=s900-mo-c-c0xffffffff-rj-k-no","about":"Just a bored guy."},{"address":"5G3jMHcbqgzyqCiiBMZ26LFZoqTPw77XzMqwj8cyrb58ybhE","handle":"ascii","avatar_uri":"","about":""},{"address":"5GfdBhXPK6GHSwSkPHYiYf3KVw5dYsCLUCsTkh2EnHhr16oi","handle":"asdfasdfasdf","avatar_uri":"http://example.org/image.png","about":"asdf"},{"address":"5E7pc4DgSKWbFQNUQsEa6ffHPQQYnvWpRfRGFRthg2pRaBhp","handle":"billl2","avatar_uri":"","about":""},{"address":"5EygRdm7QJ32UA5Hyt18LEyH1QMX3jviRBvk16vzmJw2TjNp","handle":"emmaodia","avatar_uri":"","about":"I'm a JavaScript Back-end (APIs) Engineer."},{"address":"5DwH4PtUdGcQYMqYpUpjzPmwgkakuDMJ1K4zzexd9sxMyej4","handle":"santos","avatar_uri":"https://images.app.goo.gl/vH6eTrNZtzQTQAFn7","about":"Try Try try"},{"address":"5HZoz6XFiWwkJ5kqNSKAeZ52AXJ4t9Va9XgWp8FMop1H5yVL","handle":"leifeng","avatar_uri":"","about":""},{"address":"5G6i4AgpZRuad3cJM16hLEtGFabni6W9YGDdxoDL1r1DweQP","handle":"joyne","avatar_uri":"","about":""},{"address":"5Fu5XLEUvP7GAtb1pfYarDxRH4NcJfRWWNCDYA3uoip4BZ9m","handle":"bwhm0_2","avatar_uri":"","about":""},{"address":"5DnmGqe8qkNipYWgmnqsFDNayNo33dHtpEbjeymAMawfrdkD","handle":"samurai","avatar_uri":"","about":""},{"address":"5Fg79fdT6w51QdN5p7QQhiifbxtnRzGwXR24wsf2d3m5rD1M","handle":"enfipy","avatar_uri":"https://avatars2.githubusercontent.com/u/24860875","about":"👋"},{"address":"5CtULUV5Qw5ydB4FUjkh3Lb2tJJf9qUSdahtLUhfcDDJ4D4v","handle":"john9261","avatar_uri":"","about":""},{"address":"5GwaCBvrGFpTSVdDJPTg1XaYvDaLcz6Dn2Brwf19ehDJpA6W","handle":"royalgarter","avatar_uri":"","about":""},{"address":"5EfiZ76aX4Y3pqW6VBwQmx9NzYVxui1Xeu3KnGW9b9YbUqCH","handle":"inabszentia","avatar_uri":"","about":""},{"address":"5Dihr72NbSTZmKp6JFfGUd5AboRbvqYkVGSAUshNB2Jg8sPh","handle":"anthony","avatar_uri":"","about":""},{"address":"5GyrFrzo8GE4YUTpVyjkJeSneXAFJW7aGWCrreDUvRdCoHp1","handle":"storage_fail_test","avatar_uri":"","about":""},{"address":"5DsomYCpUhWSZkFUPUtNg6iZe3M37gaqwhjDG6CdSTEN6imh","handle":"jjbutton","avatar_uri":"","about":""},{"address":"5FkVkzN712z8CN4oMPbAXqbfP5QzNquy3e1zbMDez6Z1Ea3m","handle":"bithodl","avatar_uri":"","about":""},{"address":"5CJzTaCp5fuqG7NdJQ6oUCwdmFHKichew8w4RZ3zFHM8qSe6","handle":"joystream","avatar_uri":"https://uploads-ssl.webflow.com/5d0395c96d24108d8e5850d1/5d0395c96d241044b5585131_registered.svg","about":"Joystream Project Admins"},{"address":"5GS23g9sF4QGWSu3EG82GPHzomS9gbTS81pj3pCWgXgGSxv6","handle":"dawson","avatar_uri":"https://upload.cc/i1/2019/06/24/QuEl62.png","about":"Polkadot."},{"address":"5Cxpq2xpCKzpDGRgx67j7HzLDTZdAT9J3CUhQXUKp9Q4jarQ","handle":"iceberg","avatar_uri":"","about":""},{"address":"5DScjX1t5LUFzJZ4vz9DuR1DAffPFYnYurkZUe65eRKnoZ9B","handle":"betuha","avatar_uri":"","about":""},{"address":"5GsdqdGXysPVQhWJh3Hxt23F9DvbDn5RrSeLQc3shApodhJd","handle":"betst","avatar_uri":"","about":""},{"address":"5H4vibfYZJrbHqRQydmaSD5dyHo9Y5KhYA8SXy11LsvxFVZy","handle":"betstorage","avatar_uri":"","about":""},{"address":"5GvsGwc58fSqCKgy9xeVJhk7M5dVRatDL9GHCfU7UKDbgZzk","handle":"btstor","avatar_uri":"","about":""},{"address":"5DYE3wP1VF9goXuwDAgTybitatNovYF2fnxdp3hHsMdhhvAv","handle":"acropolisstorage","avatar_uri":"","about":""},{"address":"5D9A659vCJoB36B5R8hUc6rVdRLy8pT22whYb1Aq76HhkCCY","handle":"godofknockers","avatar_uri":"https://i.imgur.com/Vqykyvl.jpg","about":"Gamer who wants to make some monies."},{"address":"5GjMdeajoaC6cuxb48hAkrU2F9DJXeUmsLc5oxN8E71hFLdk","handle":"j_storage","avatar_uri":"","about":""},{"address":"5DFGMS4zGjJRtkM995d3TRWASSw6o47KmtFK5P8i8GNSn8HM","handle":"computt","avatar_uri":"","about":""},{"address":"5FtKBecxCRKdNQ1g4fv82hCkeVnyFKWZ1e6AYYCpMBLPns3c","handle":"storgeali","avatar_uri":"","about":""},{"address":"5HPbJNY5iBcYVUb8Qiw6ZkJFbNFK3QDMAvgF8Q3MPybzaW1b","handle":"stct1","avatar_uri":"https://gravatar.com/avatar/3c04e4d89494648ed4574862da1eb8ce?s=400&d=robohash&r=x","about":""},{"address":"5EeQsimvxSFYAvk19m8xKdjN4efLGKWsYxXTuJ5ukhvfHFEF","handle":"gusar","avatar_uri":"http://static4.depositphotos.com/1001003/351/i/950/depositphotos_3517957-stock-photo-3d-buddhism-symbol-wheel-of.jpg","about":""},{"address":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd","handle":"moderator","avatar_uri":"https://uploads-ssl.webflow.com/5d0395c96d24108d8e5850d1/5d0395c96d241028ce58511b_Communication%20Moderator.svg","about":"I am the sole [communication screener](https://www.joystream.org/roles#Communication-Moderator) for now."},{"address":"5HUoZqRpVwHeEMYLruqL93cJT47FdKgGTWVpwayoD4K6tgyK","handle":"duren","avatar_uri":"","about":""},{"address":"5F8ruq25knuup7jNYoJsTDUep5uKD3n6kooooeyusWJkwa3a","handle":"laurynas","avatar_uri":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTV6Xgt_kvbKNkw2Mb74NXQAp0Xd9p1DqhMu4FpjoPZH6fUvbjx","about":"A pioneer in JoyStream, tester."},{"address":"5D3kkfSTygkxDBjy71YUvHbrrv3gpZ8xhg3LfmrrHXsFU39t","handle":"scarf","avatar_uri":"","about":""},{"address":"5GBonukAQsiG7pr7UFNUYW3BYudduTKWokKCJPy1bMeu7ZhB","handle":"bedeho","avatar_uri":"https://messari.s3.amazonaws.com/images/agora-images/0%3Fe%3D1555545600%26v%3Dbeta%26t%3Dv4BRu5EH-z-7Pa9UGy1ri3ibFxu96uRhflHsJUoZcKQ","about":"Jsgenesis CEO"},{"address":"5Dr8UZRdLrBRcikQR2LQSmNUEwttfgQKeHsVkkzpwoE63tx5","handle":"joystorage","avatar_uri":"","about":""},{"address":"5FGiEbhnGLaBXV3WVuvPCXjjVfJrV7zedwWhsfoAmjeKGSpn","handle":"gavofyork","avatar_uri":"http://gavwood.com/images/gav6.jpg","about":"Gav."},{"address":"5FojUvZkLuTxkQ96Qgxes5FrA9ERHnvuM1EW2u2H9cVN14Cu","handle":"tbaut","avatar_uri":"https://avatars3.githubusercontent.com/u/33178835?s=460&v=4","about":""},{"address":"5CrszqoWaVc2v8ybnN1H6ffw1PziBBM8FGUcB3uMBEsPU9kG","handle":"tady386","avatar_uri":"","about":""},{"address":"5H64HbzJJrc68isVJYwyLiJwo1TQTuomwfejcHE8TfzhQD1u","handle":"marin","avatar_uri":"","about":""},{"address":"5Cb4M1bVtj7GEMuyofCkjMS3HXGa8DdbY5sBGikTxrJVchGd","handle":"marmarak","avatar_uri":"","about":""},{"address":"5DJdjyuRQytD1933L8Fn1gkwux9bi8P6YdqERZoYgpzjzHDH","handle":"enfipy_stash","avatar_uri":"","about":""},{"address":"5ETTzoYcBy8LoMrUGXPWwyc1j8vG3u1nddFiqip9298HBQTY","handle":"yangwao","avatar_uri":"","about":"hypersignal.xyz"},{"address":"5HdAqcBjwsoi2wG8TrD12e4axqVcr4wvLaUUa2o4GzbXvBre","handle":"ffpremium","avatar_uri":"https://scontent.fbkk5-7.fna.fbcdn.net/v/t1.0-9/56384953_2112699748815888_6318736854875111424_n.png?_nc_cat=108&_nc_eui2=AeHmw4rJ8EioQY4Z0L1raH53nL_XTH-JoFbq5otykEbVsXoGCaAfIygyO0WkPTXCb7ur-i_QVOyhS2FxuYkj8cB2pe99BHM9HoJI1GvIqKu2mg&_nc_oc=AQl4u2wMKmMial3ntQP55rbPELcLqv1CjN7flMp7I_tPRV1gfvoqAmwerR4aF6gkz4c&_nc_ht=scontent.fbkk5-7.fna&oh=be9cad220003fc5fcaedb5df56a5bc80&oe=5DBB29A1","about":"Let's join"},{"address":"5FZtYGpRMCN6FpPrHsz7NqGgqKPVsiVpZuYxJh1YXs8Z3BJv","handle":"prayut_chanocha","avatar_uri":"https://pbs.twimg.com/profile_images/1084270206938099712/qR9TdPQD.jpg","about":""},{"address":"5EVJNaHARYERarac7RkiQTakwjSTtt7BVyB9jBr3DbajFGMf","handle":"hkzero_1999st","avatar_uri":"https://keep.line.me/s/XnJquhXTXSEUToHsAgdi0I3D-AQg1HLV4wuDigCmYcI","about":"Who Am I ?"},{"address":"5FsabyqtArsY2GX5sdYvg4ZFZLLdTq6upayjqWrLRS7hK5Ke","handle":"fsaby","avatar_uri":"","about":""},{"address":"5GQaNV1EdnC21cGiwv1pT8nThSEUebHDxRrAWRLdR9LApLum","handle":"ratuaisya","avatar_uri":"https://www.ufreegames.com/?utm=ads&gclid=EAIaIQobChMIrJq5zayQ4gIV2kl9Ch2VkAZOEAEYASAAEgI5MvD_BwE","about":"Deep way"},{"address":"5FnsBRu9FcBBVYKhwdxY8SDaQw4XxcKtardXxpCbYwAiQNTA","handle":"maxibazar","avatar_uri":"","about":""},{"address":"5GZTctfXt5SzzwUSPpZu6Um16HnC9wNfgbK5HWpcJqbgUCs1","handle":"nunzio","avatar_uri":"","about":""},{"address":"5C6k3Ec2LJdViX4mpVigHPhsytEcYxne7VjV13YMN5amKNB9","handle":"aisha","avatar_uri":"https://www.google.com/search?q=image+avatar+url&oq=image&aqs=chrome.2.69i59j69i57j35i39j0.2704j0j4&client=ms-android-xiaomi&sourceid=chrome-mobile&ie=UTF-8#imgrc=z-5c98oV9rSuuM:","about":"Love earn mone"},{"address":"5CmXLs7XWJvYCqPSEiQHKwRuwVyHPYF3S33FnHQ5tkA1S9MK","handle":"lilis","avatar_uri":"https://www.google.com/search?q=image+url&safe=strict&client=ms-android-wiko&prmd=ivn&source=lnms&tbm=isch&sa=X&ved=2ahUKEwi26O7Ggp7jAhUL7XMBHQR6CzcQ_AUoAXoECA4QAQ&biw=360&bih=464#imgrc=fgCBWfP2OZk0NM","about":"Test too"},{"address":"5EkgATaUSuprTPE9eGFc5N7eKMrGNPsRPXnLhRU9u8zSxk9t","handle":"natsuma","avatar_uri":"http://www.neutralbayhealth.com.au/wp-content/uploads/2014/08/Chiropractic.jpg","about":"Natsuma JOY"},{"address":"5DspdxjBxghbqAebXedyqW7scBygx1ip1jX7Utby4rJVmC7H","handle":"being","avatar_uri":"","about":""},{"address":"5FVJHqe3rWRmGRTeEKULMMMmtQEcWVMmAwLgLSzLzbKX7Eng","handle":"bengmia","avatar_uri":"","about":""},{"address":"5HkCHTHAvCbkYLDrKz1GordVD4cE2o3tiLftN5cfQptuMs5x","handle":"gnar1","avatar_uri":"https://imgur.com/a/Kv17O2H","about":""},{"address":"5DAiCGnQ1X7FDgyx18AviJKxZM7vAudrwgTjrPcCxQi3wjfj","handle":"salaeones","avatar_uri":"","about":""},{"address":"5GcbTxhu29yb68wT9dqVBRtY1Mr7rB3HkFkAdQJgxyVgvcGP","handle":"titivoot_tan","avatar_uri":"https://scontent.fbkk6-2.fna.fbcdn.net/v/t1.0-9/14691142_254553524942692_2493479130458757054_n.jpg?_nc_cat=107&_nc_oc=AQmyl2PtT_sATGawf_cefDdGA1aLI-izP1kVFV_JTXy8PGNjTET87DTs1UAaEfLAON4&_nc_ht=scontent.fbkk6-2.fna&oh=220270a64d24bb423d0c9f92d397b28a&oe=5DA7EA14","about":""},{"address":"5Eb2gN4d6d67sgBFGKcoqEthWPDvVhcUgFGj8NPQDmFZWxJg","handle":"storage1","avatar_uri":"","about":""},{"address":"5HCoA8d7WZYQrmAnQS4sY2geQBmiSG2qVxgbCsu1vvHu14ZT","handle":"titivoot_tan1","avatar_uri":"https://scontent-kut2-2.xx.fbcdn.net/v/t1.0-1/p60x60/14691142_254553524942692_2493479130458757054_n.jpg?_nc_cat=107&_nc_eui2=AeGI7NQc6hCLS9qQvIK0uoTJ7W4d4sLuzAtiV0u1Y4uRuUf96yFsmRjKNSdB8qvXkLkjp5c2PsyzzcfgK6DU9Vcn2L1jLp1K1apSZUh45h1xDg&_nc_oc=AQnI9qCP3PD3nQdCCp1S9Ygk1tr7FgaboVLRV_ml4A6fAcVmgensvFLsivHmukZikrg&_nc_ht=scontent-kut2-2.xx&oh=523962ad9f0692aa81c8b0046eff6f93&oe=5DB67A7E","about":""},{"address":"5DDKuMJACDGz7v173Pv7bbXxzbZMtbrkPPxuu7Rjyffm2QRx","handle":"node_network","avatar_uri":"https://scontent.fbkk5-7.fna.fbcdn.net/v/t1.0-1/p80x80/66643505_2268331383283347_2791701654041264128_n.png?_nc_cat=107&_nc_eui2=AeG40_fF4HVvpqpwFR10hJDyB-XdDCU5Ldi_KdYY2iYWoy88fJraSNqKZb6UlKi0FAC12Boq9C4PHBFQAkTyWTllNSPM1Zhb7_5BhWGmHIpToQ&_nc_oc=AQlNkdSUpzKvvAyoDEHH0hbVf5LaP-y2mUFGiT892xUWYIVEvUwhdn0LFJBYDtCdP_8&_nc_ht=scontent.fbkk5-7.fna&oh=60f66775bd9b8d1ee391a58fd4c39f79&oe=5DA5CC69","about":"Node.Network Monetize : https://www.facebook.com/Node.Network/"},{"address":"5Gk4WmQYU52q9cgxUGw8gn9tFzLj4V3RNcfXBwD7AVXiTSTx","handle":"peacenana","avatar_uri":"","about":""},{"address":"5H3YibPf9MKFTc1p42fKfUS4PMtahB6hfod7xQR4hEhGYaJA","handle":"quangteo3391","avatar_uri":"","about":""},{"address":"5EnMHmi4onoW8QDgDXHSQb9b9KfW7CsTPis2iP9KbvLNTP3g","handle":"crypto","avatar_uri":"https://cdn.ccn.com/wp-content/uploads/2018/09/bitcoin-cryptocurrency-exchange.jpg","about":"A cryptocurrency (or crypto currency) is a digital asset designed to work as a medium of exchange that uses strong cryptography to secure financial transactions, control the creation of additional units, and verify the transfer of assets."},{"address":"5CeGo5j7hRvYi1NpthBzKL7TE738PUGRuUrsQzSSBY2t4sgk","handle":"romulus","avatar_uri":"","about":"Hello, I am Romulus."},{"address":"5DQLn2TZT2PPEQtUEpXPuqVM8mrcRmyTasY1oba7xrCymLoY","handle":"joystreamfan","avatar_uri":"https://testnet.joystream.org/acropolis/pioneer/images/logo-joytream.svg","about":"big fan of joystream"},{"address":"5GVqVyPUyQHuBpLn6pHPvtKNvohoY6ehoVfTdCFURMaJwdkz","handle":"_____","avatar_uri":"","about":"Welcome to my page!"},{"address":"5F1qeRM7ejkipw45FuD5Jp7parqQtQLmeo6992ShrdrdVMPV","handle":"fluzzard","avatar_uri":"https://www.mariowiki.com/images/8/8f/FluzzardBird.png","about":"“You flew! You flew! Even Fluzzard looks happy! Happy!”"},{"address":"5H1DtKZAgkXyFacLH9Cb9XGaSN8uZ3AzibdcZVABtLfBBs2p","handle":"axel90","avatar_uri":"https://upload.wikimedia.org/wikipedia/commons/e/e7/EddieMurphy1988.jpg","about":"Blockchain researcher."},{"address":"5CWN7DyfaqrsmSVMnYCPPkjXxsbQWrVbTmWCZMCtQNNiRmUk","handle":"aaaaa","avatar_uri":"http://clipartmag.com/images/a-letter-pictures-12.jpg","about":""},{"address":"5E6Nx1bWXP834WG3cANEFsZN412A3xYaykR8xNVmXYkESVHG","handle":"skvye","avatar_uri":"","about":""},{"address":"5FffRxDHwB8RyRMgumLjeAa6NTjaVzHHFRzATBSyHvHzdc59","handle":"kimmy","avatar_uri":"","about":""},{"address":"5GZRsxF1wUUKQZ8KGLvTyu1MvpRYnH86cVJxVpgJTmLpnFPT","handle":"zeroed","avatar_uri":"","about":""},{"address":"5E4mBK7JqfXFxshqUnWAnj6xPnsNM4S3XfLZYH1bZkKG5S77","handle":"rddewan","avatar_uri":"","about":""},{"address":"5ETuBSbZL22DdquA75jtFe8HeSuKyn7u3KpHzWJBJwkyRi6h","handle":"minami","avatar_uri":"","about":"Research Web3 and Machine Intelligence business models."},{"address":"5DeH9e3kZhiCxT6zDEk7LKuXPGiK8A3QbcW1zXkh78qgmJ2v","handle":"toomuchfomo","avatar_uri":"https://ibb.co/SfppHpZ","about":"Here to stay"},{"address":"5E4fGovW5xwzBvdL2iq6xGc6xUmre97p52cNKLhNFCqJzYwx","handle":"node_network_storage_provider","avatar_uri":"https://scontent.fbkk5-7.fna.fbcdn.net/v/t1.0-1/p320x320/66643505_2268331383283347_2791701654041264128_n.png?_nc_cat=107&_nc_oc=AQncI3XyQ3SGxVc9Yl6UheHkTjmkrIodmN1ytuxmzXY8p9zfjtQbxQYev3qwhBCY8RE&_nc_ht=scontent.fbkk5-7.fna&oh=2fcfeaa70cad645165becf9063cf71eb&oe=5DE30ABD","about":"Node.Network Storage Provider"},{"address":"5Cd2iKhz2Cu6WTyjWexa3nJKNfzFEEtRJaMu2nVT4y6pZbsW","handle":"gugx_13","avatar_uri":"","about":""},{"address":"5DXytFunQPPX6bhWD7GR2kEmQYxDhsEWFoUr2534Lzrn557m","handle":"node_network_storage_provider_key","avatar_uri":"https://scontent.fbkk5-7.fna.fbcdn.net/v/t1.0-1/p320x320/66643505_2268331383283347_2791701654041264128_n.png?_nc_cat=107&_nc_oc=AQncI3XyQ3SGxVc9Yl6UheHkTjmkrIodmN1ytuxmzXY8p9zfjtQbxQYev3qwhBCY8RE&_nc_ht=scontent.fbkk5-7.fna&oh=2fcfeaa70cad645165becf9063cf71eb&oe=5DE30ABD","about":"Node.Network Storage Provider"},{"address":"5GMSWFLuNo45kMxZBALUJopjT2NYD6X7f5AhEggrBh3aA9tM","handle":"titivoot_tan8","avatar_uri":"https://scontent-kut2-2.xx.fbcdn.net/v/t1.0-1/p60x60/14691142_254553524942692_2493479130458757054_n.jpg?_nc_cat=107&_nc_eui2=AeGI7NQc6hCLS9qQvIK0uoTJ7W4d4sLuzAtiV0u1Y4uRuUf96yFsmRjKNSdB8qvXkLkjp5c2PsyzzcfgK6DU9Vcn2L1jLp1K1apSZUh45h1xDg&_nc_oc=AQnI9qCP3PD3nQdCCp1S9Ygk1tr7FgaboVLRV_ml4A6fAcVmgensvFLsivHmukZikrg&_nc_ht=scontent-kut2-2.xx&oh=523962ad9f0692aa81c8b0046eff6f93&oe=5DB67A7E","about":""},{"address":"5G3gAq4orAQ2bBvywQcVFNiUHdbNigf7JEST2YJM6WVA2bjD","handle":"phoenix","avatar_uri":"","about":"New to the blockchain world."},{"address":"5EEqQmeDsxQhNMqYijqTBx2yLkcyqd58TQLxSCycdefnhTxn","handle":"empty","avatar_uri":"","about":""},{"address":"5HqShJ8WLfZibvV4QAHEara49XTQr1apEobrmPPwm8L5dWTx","handle":"cyborg","avatar_uri":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSyWiC6ll_05KGk-AL1hYzFodlWJtgwbEmq2LJyc2EHaim3M_A","about":""},{"address":"5CRrU6dMbcXNCbyhtthoXKLLRADPzvrBBV2Eaqp8T1xPmx49","handle":"warrior","avatar_uri":"","about":"Hi, Sonu here. I'm a systemadmin/devops guy. I'm new to the blockchain world. Also a tech enthusiast. Reading and learning about blockchain and contributing to it with whatever way I can."},{"address":"5HDvuzdSSPHaq7uZmJze5NzLWmoeD54Y1nqPL7dFXVhtwYu3","handle":"tonefreqhz","avatar_uri":"https://hosting.photobucket.com/albums/qq338/RogerGlyndwrLewis/chapmeme/ghist%20segiovuia.jpg","about":"Web 3 developer and Publisher of Philosophy, Poetry, Literature and Journalism"},{"address":"5CDn5QPqSUyNcSTHTsPAEC2fxkFfRy5kFJiK7JbjCrYj7xhc","handle":"kekmex","avatar_uri":"","about":"Hello everyone! I am a young crypto enthusiast from europe, and im looking to follow joystream and to contribute to the project."},{"address":"5GfoBraUT9FQ3sX6JWRBWGsbnwTZfY97XR2WktADHbyiarh4","handle":"noaccount","avatar_uri":"","about":"welcome"},{"address":"5CE14xG6DHi1DcCNUeHR43UxefhFUkgP8qDL7SnBBSG1emzL","handle":"kongzhi","avatar_uri":"https://pbs.twimg.com/profile_images/378800000706976227/5d781dbcf446d751d82afe1f58048361_400x400.jpeg","about":""},{"address":"5D9PxeiAw43SMZaQAxNgRJ6nr4KXvWnfEare5EMLKE8uZ2sc","handle":"igorsouza","avatar_uri":"https://testnet.joystream.org/acropolis/pioneer/#/accounts","about":"igor souza casado idade 23 anos "},{"address":"5H9CdSu7KZ1Gq8BSNESyGPWzvV9EKWXPVNtuPds5gTwaG1kw","handle":"nin19a","avatar_uri":"https://cdn.pixabay.com/photo/2013/07/21/13/00/rose-165819_1280.jpg","about":""},{"address":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","handle":"chevdor","avatar_uri":"","about":"Chevdor"},{"address":"5CG4KgSVAYa4y7RZqVQMpvxFsoxkvpso5gPxXzP5nRey1gdu","handle":"dustan","avatar_uri":"https://www.facebook.com/photo.php?fbid=1444244385897762&set=a.1444244399231094&type=3&theater","about":"I am a student . trying hard to earn some on inernet. "},{"address":"5HeqKdJHhhZQuwerQZLQ6UuSZn9qC2oJffReWQ83qypP1goZ","handle":"jaykpatel304","avatar_uri":"","about":"Hey, I am new here. I am a blockchain developer and highly interested in it."},{"address":"5FktYqVHRWn3dW68Edt16yP3Y99sonTuT6qExTQuCECwWfXg","handle":"kekmex_storage","avatar_uri":"","about":""},{"address":"5H59BoJkTrXhhe2nqUwUj3dL23sduxzkJ9Nc3U7fsdVo8QZg","handle":"kekmex_storage_member","avatar_uri":"","about":""},{"address":"5FrF9xqBNwRk7KvTtNdftfVTacQ1z5RokYS3B5PuihuRbamh","handle":"rodrigograca31","avatar_uri":"","about":""},{"address":"5FUdGogcu6SKS5rCN5wNVJjqMswVrqXXgonrLwwkDhMSEbhK","handle":"keks_storage_member_key_new","avatar_uri":"","about":""},{"address":"5GNUGsD1QWcYDThoN79iWy8axFGfWund4jYxaewYGebbGk68","handle":"aahsiaap","avatar_uri":"","about":"im newbie joystream tesnet "},{"address":"5CCzYScXPWRhiwn1BC2qTdYdry27t17Sow7HfLFyiBTa1dvE","handle":"habibrijik","avatar_uri":"","about":""},{"address":"5GRUk4q13G2MeRPhpvrZUjpvY581cuH8xpzqRLSvKeBprPBf","handle":"echaterapis","avatar_uri":"","about":""},{"address":"5FxWFDN8NaGqFgr6sfyEqQyaeJHckWap3rUawukt7ZMkch8a","handle":"lexitherapis","avatar_uri":"","about":""},{"address":"5H2wrjqnyZJf3nLjstpy1pdVGFHCTUoRRUFjvvmbwP7Cnwt6","handle":"rinduexst","avatar_uri":"","about":""},{"address":"5DEcN8w9iUhxVXbAgRGesZRJcEvZEdtV6NbTBQ7ktH78Sqae","handle":"rereyolan","avatar_uri":"","about":"hi joystream"},{"address":"5EHyifUv9i5ZoBNeWjHGoKJ3iD5TyXafWMNFNNowVk9scvEi","handle":"mnemonic_hash_char","avatar_uri":"","about":""},{"address":"5HAq1PrLiB1jQQ9R7YDRvhuJtoetXWfvTKe9pq7jDS2q57Hc","handle":"bodgeup","avatar_uri":"","about":"IT Freelancer looking for passive income and explorer new Tech."},{"address":"5DFYfuCMCHx2VGjvbN6S98sEvDGfEF9cHVCJbiejV51oW6dQ","handle":"testees","avatar_uri":"","about":""},{"address":"5DpDqfrDqGqEMEuu7kRoFmQtc9nzPBSGaQWVUUhm88Q1aoZN","handle":"mhillajeremy","avatar_uri":"https://files.gamebanana.com/img/ico/sprays/crono_pose.gif","about":""},{"address":"5Ffv2VrCch42yBiGWWUGME5ihyewKYvHKq3TBwHkPQXXFSfS","handle":"arno608rw","avatar_uri":"https://gravatar.com/avatar/32c7535449ae8a992501e283a5879e33?s=400&d=robohash&r=x","about":""},{"address":"5DGr5nH3HXBVFuSG85rxGLejSWHQtFwfwquY8wa1FYLBou9Y","handle":"ali878","avatar_uri":"","about":""},{"address":"5DvM8RLjzqVKTSUCYDJATNjzWBWbTEankbwPpeAJASYwE5LM","handle":"arnone","avatar_uri":"","about":""},{"address":"5FZw3cnkL5RvuERaB2BicpL1gqUv4fRZSNbyPj4cS389eM4E","handle":"keep_it_a_secret","avatar_uri":"","about":""},{"address":"5D9tREUZ8jTB2gJt1BYFeHGCYFFDPkx9MCg8Pa21iY5wmeAD","handle":"ahaa1000","avatar_uri":"","about":"Come on,bch players"},{"address":"5D1AVX6VjfsunLZJHumk6WjkJUiM1g4tk9sTrz2f87XZk73t","handle":"alpser","avatar_uri":"","about":""},{"address":"5FdyqzHPZe71EzDU3pHKBWEPChbUitfoToUgrDtnWoojFtic","handle":"dltmoon1903","avatar_uri":"","about":""},{"address":"5Cwmqmr4sfJnWSehiQChNzb2MKVts6eSu1JSL3ZCFoVpuaMA","handle":"solomon","avatar_uri":"https://image.spreadshirtmedia.com/image-server/v1/compositions/1012773656/views/1,width=650,height=650,appearanceId=1,backgroundColor=d6daf0,version=1565757568/classic-sad-frog.jpg","about":"Lets Goooooooo!"},{"address":"5CVh5qEUPMQZqoBUuFpFCjuqe6tvUcLXnCbGLQnBbxhhkYaN","handle":"lisatai21","avatar_uri":"","about":""},{"address":"5C9TiKjVWRw36nS68V6rKie4GB8btwzFVdvZ2HPXnSJ8kQNo","handle":"kyukyu","avatar_uri":"https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/88207535-9be7-42c6-8aab-8403e025b92d/d9m51f3-d9781858-411a-473b-a217-ce202bbba1e6.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7InBhdGgiOiJcL2ZcLzg4MjA3NTM1LTliZTctNDJjNi04YWFiLTg0MDNlMDI1YjkyZFwvZDltNTFmMy1kOTc4MTg1OC00MTFhLTQ3M2ItYTIxNy1jZTIwMmJiYmExZTYucG5nIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmZpbGUuZG93bmxvYWQiXX0.gKzCIo7DowmKz8LewrPuqc2RawT5IG2fWkS3-W0L8i0","about":"Eccentric"},{"address":"5DCuouTw4Fojn8eaQTZFkmLYiu1Qjwf5ZqzfpjpVkwFA5vWP","handle":"lebuissonvert","avatar_uri":"","about":""},{"address":"5DduqUGa6adAjCzctobEYCi7H95zVHmYJz4ABSxVDca2jnyc","handle":"kanye","avatar_uri":"","about":"i like music"},{"address":"5ErJnL5y3ULbpY9ET72jH55463hUgtCizegxHM1z2UAU1QSS","handle":"testuser","avatar_uri":"","about":"Test user tutorial video :)"},{"address":"5FhsNAweHdxpyYFPYrxTd7AUmcUF4BurLLFXod5shFnBnare","handle":"ninja","avatar_uri":"","about":""},{"address":"5HNmE3cF4jsLmH1ncMsFfjizzJ3rN3jqPZsDRrBny2c3ArFJ","handle":"alice31taky29","avatar_uri":"","about":""},{"address":"5Cu8m13XcUzQBWnx2MpW7vv3uqn7AULjfz2oHjnXemz3NRf4","handle":"amins","avatar_uri":"https://www.google.com/search?q=avenger+picture&oq=avenger+picture&aqs=chrome..69i57j0l3.13933j0j4&client=ms-android-oppo&sourceid=chrome-mobile&ie=UTF-8#imgrc=kYgamFxWVWKDJM:","about":"Newbie and i wana try"},{"address":"5DmT8k6yKxvaEsqTQJbnMcmEN5jnHzexrNpAhgv6Av43ujCc","handle":"sameeraio","avatar_uri":"","about":""},{"address":"5FxqY3WjWEXN6NvoQKizX4zKbsDjWSjHhSAGybevsPyK4A7c","handle":"arvydas77","avatar_uri":"https://previews.123rf.com/images/lar01joka/lar01joka1712/lar01joka171200138/90908719-avatar-of-an-elephant.jpg","about":"Freedom is the only form of bright future. Seeking it. "},{"address":"5FPS4Zwnw8wEkeHU1bAQvJdeNi6npFtZ4ZGn7u1jV5RT7TRZ","handle":"axl77","avatar_uri":"","about":"Huge fan of Joy. "},{"address":"5HTnAnbS4pmaphWTbswEzKqiPooZ3nhaz3BXrZcK6xZqFScy","handle":"sameeraiostore","avatar_uri":"","about":""},{"address":"5CGU3jcszVXmVzfYadnbTV7UX8WGFCdhK4747H6nQS9DkANB","handle":"kuzo998","avatar_uri":"https://trinitymargate.co.uk/centre/wp-content/uploads/2018/10/blank-profile-head-hi.png","about":"Looking For a way to enjoy and learn ! , its boring if not to "},{"address":"5GaLH57Uc8Ukcu8K5LyV74cFdT5QBrs4i2fv21cH28zQ1KSn","handle":"gordon_freeman","avatar_uri":"","about":""},{"address":"5Hhigra11Ysa6eToMnq7u1zNdt7jpkDay96GQnEzd51sHSAy","handle":"beesus","avatar_uri":"","about":"freedom! and plants :)"},{"address":"5EU1xYaDfS3soKfsC9KYCFke27MNe72P3ppRmbhL4KPGXqYt","handle":"emcbandit","avatar_uri":"https://www.google.com/url?sa=i&source=images&cd=&cad=rja&uact=8&ved=2ahUKEwij6P7K9YblAhULVH0KHYMvBUcQjRx6BAgBEAQ&url=%2Furl%3Fsa%3Di%26source%3Dimages%26cd%3D%26ved%3D%26url%3Dhttps%253A%252F%252Faminoapps.com%252Fc%252Fanime%252Fpage%252Fitem%252Fdigimon-profile-matt%252FD7tN_ImzRzgX8MpQlxpr36x40dqe3l%26psig%3DAOvVaw2UPb4XiANFJK2VqoS6Ley9%26ust%3D1570426694911622&psig=AOvVaw2UPb4XiANFJK2VqoS6Ley9&ust=1570426694911622","about":"Hello!"},{"address":"5Em2snJcaFUZEfNTd5ptiz8UGMR4afAyuHjkWgTChz7iuCis","handle":"trollzor","avatar_uri":"","about":""},{"address":"5DyadsUvmq8R4gVNaBvmxbTYMSKzY6C7GDu2Cbe8myoc2d25","handle":"smartone","avatar_uri":"","about":""},{"address":"5HAqzEbGjqAogGkB79LAyaykGrVBQzcNbbprXXDLQXEBJ6Hu","handle":"mari987","avatar_uri":"","about":":)"},{"address":"5Gt22BMiRRpCMYmGH7ZPiqvu75dCxRKQi9isTQaP6hQe3rsN","handle":"st342","avatar_uri":"","about":""},{"address":"5G9YYKhvKfQALRaQxcr7xNCnYeHrjtvPzBsAaQNrquxEbPh5","handle":"bowene","avatar_uri":"","about":""},{"address":"5HCm7oxxHz31nLaBa3AaquiUh4YZpVMVPXc8394knQisuuY7","handle":"kiwi7","avatar_uri":"","about":""},{"address":"5ECGdL57kUvZp2wEV2oFCDhHgR2xVkVj94J8QYSHELEMArZ8","handle":"yourheropaul","avatar_uri":"https://yhp.io/img/paul.svg","about":""},{"address":"5DM86nVT4KUjyYoKRxMgHRVzoaxtD7TwBQBH51fCd369sUpY","handle":"bradt","avatar_uri":"","about":""},{"address":"5DfUdK9eDYieRiduVteTiMmvkESZP5e9HY7QGN7KJkKktfbV","handle":"leverett","avatar_uri":"","about":""},{"address":"5Ctiz9ob2cwyNKpW19Z8Lupva3n2TiypP6wNWE96uWoYhyJU","handle":"nonoenee","avatar_uri":"","about":"try to be luck"},{"address":"5FYkKPu31Da34u98dqmLLCbvN2nvEYrgA8nrAijzfPTEwDzt","handle":"almohajer","avatar_uri":"","about":""},{"address":"5ExX4ukX34r776hChUdEyWDgedGn2tQYJ12vR7HknBaJzEWi","handle":"cupton668","avatar_uri":"","about":""},{"address":"5Dz3Q57rSWC7oz9pqCNvSGW2GoqgHT1ALhP317Js567Qcm6V","handle":"fae811","avatar_uri":"","about":""},{"address":"5D2sy535bCjWP2xdsq99Zi8V9AXmxAQATAYghF8UAi8fUPr7","handle":"hotels","avatar_uri":"","about":""},{"address":"5EqNE3qoEU9pFgD4Lxi6JmygSzU2WSNuUsJCW8t7iLFYwRRj","handle":"roversl","avatar_uri":"","about":""},{"address":"5C693F9TvcWbgX6yL16uiaHZViSdH56NeAaPJsx35gNuTTzL","handle":"magickwar","avatar_uri":"","about":"lets play lol"},{"address":"5E1NMAJCN1iVkDVx8AyHYS7bAy1RHYeCGibunENAc5FYPumy","handle":"ulrich0h","avatar_uri":"","about":""},{"address":"5CpLsg7C8GiJoooZxghV1grHzuoQTMwoYu6cMJmwY4eRumHT","handle":"plerrr","avatar_uri":"","about":"love joy stream"},{"address":"5DMzgbnt1DxhDbqVsApXERn6H6kjbVmSszZoKv3jZuZXsgZH","handle":"iced_tea","avatar_uri":"","about":""},{"address":"5FcGZZriqZAyLo4E1AAaSVVMs5pUpkRgErP6V9CexXEL5959","handle":"kekmexs_voting_key","avatar_uri":"","about":"This is kek-mex's voting key for council votes."},{"address":"5FbfGSJwhF86PpELtSR1M72Qk1WnRTqWCtYv5xpeUga3heiS","handle":"muibast","avatar_uri":"https://i.imgur.com/gLSRbRgh.jpg","about":""},{"address":"5Heho3UpURG9SkSegA2Nq5v1L9yb7mNreaq6wzocUdmzP5F9","handle":"arish","avatar_uri":"https://www.google.com/search?q=donald+duck&oq=donald&aqs=chrome.2.69i57j0l3.5668j0j4&client=ms-android-samsung&sourceid=chrome-mobile&ie=UTF-8","about":"Wana try storege for income"},{"address":"5Ebbqp937kZUzZHvrUf41kEhbuZnYmRm4NqPj72NpvHfWgsQ","handle":"kemau","avatar_uri":"https://www.google.com/search?q=gusdur&safe=strict&rlz=1C1CHBD_enID841ID841&sxsrf=ACYBGNRT5qaeCd3-11lyMIY9Qb9N6xUCzw:1574622734210&tbm=isch&source=iu&ictx=1&fir=P8LFFn1mUC7WnM%253A%252CLxe9KeHejaj_SM%252C_&vet=1&usg=AI4_-kQjM3L_hDvC_3FA08hnNkL_gSM6ew&sa=X&ved=2ahUKEwjC_-jlxoPmAhVJzzgGHZ6YCWkQ9QEwA3oECAkQCA#imgrc=P8LFFn1mUC7WnM:","about":"monero"},{"address":"5HXMj9ytiS1ELHrHTrGDoxm89SVFArNoUkteABdmSmrTFGpS","handle":"glebmavi","avatar_uri":"","about":""},{"address":"5Dd3wJwqaaqGdEr3GgpCDBdxCRmuY8dWF3x2mRsaGgK7f4Zi","handle":"some1","avatar_uri":"","about":""},{"address":"5EXJ2BMqBg8yWFkmr2dsQuFacgGKgXYVPN26K8qmSmR7Guee","handle":"lexis","avatar_uri":"https://www.google.com/search?q=image+search+doraemon&tbm=isch&ved=2ahUKEwiB4fDDzZLmAhUGj0sFHWqJAzMQ2-cCegQIABAC&oq=image+search+doraemon&gs_l=mobile-gws-wiz-img.3...14375.23469..24299...0.0..0.648.2664.0j4j1j2j0j2......0....1.........0j0i19j0i5i30i19j0i8i30i19j33i10.Ll4Xsgpc44Y&ei=YrriXYGoCYaertoP6pKOmAM&bih=560&biw=360&client=ms-android-zte&prmd=isbvn&safe=strict","about":"Cayyooh "},{"address":"5Fmym3NKN5pk2UwU8HbcdFz1PeXk2J1tR4ypkToaVAXunVbS","handle":"cbr_storage","avatar_uri":"","about":""},{"address":"5EUaE1WLYj3DtHeabbRJPZDmXbx7KfZhTXyYLgLDCBhK57Kz","handle":"dragan","avatar_uri":"","about":"Storage provider"},{"address":"5GaJcMTkL6DNeCSQWhcS9GLi8MovBVsLTGsiZ7FG2PuZc36x","handle":"joystreamstoragenode","avatar_uri":"","about":""},{"address":"5CE4ryZHQ3aGBq1ThkNXk4W1Tzk5bz3TT864NA69gCJxgbK1","handle":"joystreamnode","avatar_uri":"","about":""},{"address":"5CK86vAwKpJrL57PKJRTnPgAFiUXMGTPPcZRJG74zhkQmRhe","handle":"diegovilla13","avatar_uri":"","about":"Council"},{"address":"5CgrexdDDT1F6HpWEkLuzEYwaWfDQqSPybZ7dVy5tTNsewbN","handle":"arnila","avatar_uri":"https://www.google.com/search?q=image+avatar+url&oq=image&aqs=chrome.1.69i57j35i39l2j0.8131j0j4&client=ms-android-samsung-gj-rev1&sourceid=chrome-mobile&ie=UTF-8#imgrc=AhCy_cweM6lOWM:","about":"Happy tesnet"},{"address":"5H2PzQcdezsby8M18cEJjk4QcTf9NpuUMDxim3zmJu1euu3j","handle":"crazyfrog277","avatar_uri":"","about":""},{"address":"5F3j33mjoyVphsZvBCpgHwveHSfYF52PaiSLAJffKFW2gRJv","handle":"junius","avatar_uri":"http://www.baidu.com","about":"junius membership"},{"address":"5CZ1SFjDJZzCmRjqMwFdmzGVicNvbKhV1GZ8pDEmHdAiuxuT","handle":"samrobin","avatar_uri":"https://c.gitcoin.co/avatars/3089b1bc02c42fdad9fa0d51cbbd94e6/saumyabratadutt.png","about":"Learning and Developing. "},{"address":"5CScvZ4v5at4tpY9aHtqi9Kjy1C4L6ahg8fHnCkRTbBFAGGN","handle":"keydric","avatar_uri":"","about":""},{"address":"5Ch7THcQihNqzvoFbFFV71y2CYxN3ywHk9xJunBoj6rGyCut","handle":"koprik","avatar_uri":"","about":""},{"address":"5DGcoqapJ5abny3y6Q9XeagsGZHBaLuayuPB4XRSZcDGe2h3","handle":"sonali","avatar_uri":"","about":""},{"address":"5GsXEZe3Jxw6AthzyvkSEY7W6ZvEvskqyMdrZ9UvSAojwQUJ","handle":"manny","avatar_uri":"https://upload.wikimedia.org/wikipedia/commons/2/2c/4-Week-Old_Netherlands_Dwarf_Rabbit.JPG","about":""},{"address":"5EWH7S33WdVmKQkoJ8RJZ6uedUwc1qwMMu4KcCNU26Y1MXwn","handle":"_null","avatar_uri":"","about":""},{"address":"5G9jLNPdnfPR6zuLroCgLu25TmcErbCinutRop1KPhnMUmkC","handle":"_f483_","avatar_uri":"http://f483.io/images/profile.jpg","about":""},{"address":"5EHPLjupdq3gTi6Nxtg6mRMn9wYBqqpuf6UPt7ziTXPVcA8u","handle":"salsabila","avatar_uri":"https://www.google.com/search?q=url+image+png&tbm=isch&ved=2ahUKEwjfs-Siz6PnAhUZfCsKHa9bC8oQ2-cCegQIABAC&oq=url+image+&gs_l=mobile-gws-wiz-img.1.1.0i19l4j0i30i19.8649.8649..18289...0.0..0.128.128.0j1......0....1.u5CSJ8rk7Ao&ei=x8EuXp-0KZn4rQGvt63QDA&bih=560&biw=360&client=ms-android-xiaomi&prmd=ivn&safe=strict#imgrc=EP_qHmF-NDWuqM","about":"For Long Time Will be good earn"},{"address":"5Ffi9KR71SzyhwwVwNozQqBzpvQEHnc5q6o2qVMAmNorFBWC","handle":"electrical_engineer","avatar_uri":"","about":""},{"address":"5EBb6rFVb9kJME39EEdK6zZi26GRDSGgCigz8nQPeWFSYkwr","handle":"wpotter1","avatar_uri":"","about":"I have a powerful machine with 1gb bandwith and wanted to test services "},{"address":"5DwSyoVMjxMuVbvKPSUNwVAXZys7WZgdUe4XrNHTafm3CXWt","handle":"yen01","avatar_uri":"","about":""},{"address":"5HaQUGfSDUxY938fAjLJdGHAJo4afVCbjPcYkXyqSkEXw5Dc","handle":"smith","avatar_uri":"","about":""},{"address":"5HaqVdz1p9SktXhJb3fVNwAWW6qj6Lv12zp9bWUTKtRCzkov","handle":"shifu","avatar_uri":"","about":""},{"address":"5HKffEZwoDctLcxXzE5rfNMgN6V2vgSv9dNEdhaw5PycwCDJ","handle":"nether","avatar_uri":"","about":""},{"address":"5DV7kFVGD7cRFtz63NxiGk85r2WX56ARjWkTVHpo3PJnNLmp","handle":"nepal","avatar_uri":"","about":""},{"address":"5GVeC6gWEs9ah2nS73hWM5AJaiBqN8MKJmHTtDcF7mzrtBGw","handle":"medvedev","avatar_uri":"","about":""},{"address":"5Dq6W2ped5vWzjcpDe8gYjfdBw7Do33cZRHBTouKqhiMvNeP","handle":"hamilton","avatar_uri":"","about":""},{"address":"5E7DBzHMpxWsdL3PWzo8YKDgPxwfgcLkwa2z1qJ78cyiwaEm","handle":"einstein","avatar_uri":"","about":""},{"address":"5Hfn7ry83iBCAPUsfWRngQ8VYjnsWfs5BTAX9SmvzUe2aurD","handle":"lambt","avatar_uri":"https://www.google.com/search?q=image+url&safe=strict&client=ms-android-wiko&prmd=ivn&source=lnms&tbm=isch&sa=X&ved=2ahUKEwi26O7Ggp7jAhUL7XMBHQR6CzcQ_AUoAXoECA4QAQ&biw=360&bih=464#imgrc=fgCBWfP2OZk0NM","about":"Try to know"},{"address":"5CVmRyB2FenYx1AHvsB3TcLyTHLP5gS8jF3ExNaBnPoXPT64","handle":"biggie","avatar_uri":"","about":""},{"address":"5E7DVaD1DNaLhFjJ8fuM2p7pkq2Fe5pksD5rvVkciGfcsV5A","handle":"verso","avatar_uri":"","about":""}]
diff --git a/node/res/forum_data_acropolis_encoded.json b/node/res/forum_data_acropolis_encoded.json
new file mode 100644
index 0000000000..3896d13016
--- /dev/null
+++ b/node/res/forum_data_acropolis_encoded.json
@@ -0,0 +1 @@
+{"categories":[[1,"01000000000000004847656e6572616c2044697363757373696f6e01014865726520796f752063616e206469736375737320616e797468696e6720796f752077616e74210a286a757374206b656570207468696e677320636976696c2901000000000000003814115d000000000000000000000800000000000000000ae55282e669fc55cb9529c0b12b989f2c5bf636d0de7630b5a4850055ed9c30"],[2,"02000000000000003c4a6f7973747265616d20526f6c6573310155736520746869732063617465676f727920746f2064697363757373207468652063757272656e7420616e6420667574757265204a6f7973747265616d206e6574776f726b20726f6c65732e01000000000000008c14115d000000000000050000000100000001000000000ae55282e669fc55cb9529c0b12b989f2c5bf636d0de7630b5a4850055ed9c30"],[3,"03000000000000005c4f66662d746f706963202873686974706f7374696e67295c4a757374206b656570207468696e677320636976696c2101000000000000006c16115d000000000000000000000300000000000000000ae55282e669fc55cb9529c0b12b989f2c5bf636d0de7630b5a4850055ed9c30"],[4,"04000000000000002856616c696461746f727365014865726520796f752063616e206469736375737320616c6c207468696e67732072656c6174656420746f206265696e672061206056616c696461746f7260c2a06f6e20746865204a6f7973747265616d206e6574776f726b2e0100000000000000661b125d000000000000000000000500000000000000010200000000000000000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[5,"05000000000000004453746f726167652050726f76696465727385014865726520796f752063616e206469736375737320616c6c206d61747465727320726567617264696e6720746865206053746f726167652050726f766964657260c2a0726f6c65206f6e20746865204a6f7973747265616d206e6574776f726b2e0100000000000000b41b125d000000000000000000000200000000000000010200000000000000010000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[6,"06000000000000003c436f756e63696c204d656d6265727379014865726520796f752063616e206469736375737320616c6c206d61747465727320726567617264696e67207468652060436f756e63696c204d656d6265726020726f6c65206f6e20746865204a6f7973747265616d206e6574776f726b2e0100000000000000f01b125d000000000000000000000300000000000000010200000000000000020000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[7,"070000000000000060476f7665726e616e636520616e642050726f706f73616c730501546869732069732074686520706c61636520746f206469736375737320676f7665726e616e6365206f6e20746865204a6f7973747265616d204e6574776f726b2e01000000000000008c1c125d000000000100000000000000000000000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[8,"0800000000000000584a6f7973747265616d20436f6d7065746974696f6e738501546869732063617465676f727920636f6e7461696e7320696e666f206f6e20706173742c2063757272656e7420616e642066757475726520636f6d7065746974696f6e7320666f7220746865204a6f7973747265616d20636f6d6d756e6974792e0100000000000000d2b1215d000000000100000000000000000000000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[9,"0900000000000000804469737472696275746f72202842616e6477696474682050726f7669646572293d024865726520796f752063616e206469736375737320616c6c207468696e67732072656c6174656420746f206265696e672061204469737472696275746f72206f6e20746865204a6f7973747265616d206e6574776f726b2e0a0a5468697320726f6c652077696c6c206265636f6d652061637469766174656420666f7220746865206e65787420746573746e6574210100000000000000d8032a5d000000000000000000000100000000000000010200000000000000030000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[10,"0a00000000000000484a6f7973747265616d20426f756e746965735101412063617465676f727920666f722070726f706f73696e672c20706f7374696e6720616e64206576616c756174696e6720626f756e7469657320666f7220746865204a6f7973747265616d2070726f6a6563742e010000000000000080b7825d000000000000000000000500000000000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[11,"0b00000000000000684275696c6465727320616e6420427567205265706f7274657273150148656c70206f7574204a6f7973747265616d206279207265706f7274696e672062756773206f7220636f6e747269627574696e6720746f206f757220736f6674776172652e0100000000000000f082835d000000000000000000000200000000000000010200000000000000040000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"]],"posts":[[1,"01000000000000000100000000000000010000004d01506c6561736520666f6c6c6f77206f7572207465726d73206f6620736572766963652c20616e642067656e6572616c2072756c657320616e642067756964656c696e657320666f722074686520666f72756d2e00000100000000000000082c115d0000000042be11a654ef34dbbfba9aa252ed093ef0890e874091b66e4193913ee2913953"],[2,"02000000000000000200000000000000010000007c5768617420646f20796f7520657870656374206d6520746f2077726974653f00000100000000000000de2e115d0000000007cd1fb09a58aff8bf48eba12fc659d37822a74b81270b85a1fb5baf3aa591cf"],[3,"0300000000000000030000000000000001000000fd0157696c6c20626520706f7374696e6720616c6c2074686520696e666f206865726520756e74696c207468656e200a476f20686572652068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b2f747265652f6d61737465722f726f6c65732f73746f726167652d70726f76696465727300000100000000000000202f115d0000000007cd1fb09a58aff8bf48eba12fc659d37822a74b81270b85a1fb5baf3aa591cf"],[4,"04000000000000000200000000000000020000009c54686973206973207468652076657279206669727374207265706c79206f6e207468726561642e00000100000000000000eabe115d000000001ca65332ed98721f9d53e8b19da9c2a786c80bb9b71b66e756bb90f9f003a7c9"],[5,"0500000000000000020000000000000003000000d44a7573742063616d6520746f20736179207468697320697320746865207475726420706f737420696e2074686520746872656164210000010000000000000032da115d0000000042be11a654ef34dbbfba9aa252ed093ef0890e874091b66e4193913ee2913953"],[6,"0600000000000000020000000000000004000000e8225768617420646f20796f7520657870656374206d6520746f2077726974653f220a4174206c6561737420616e20656e74697265206e6f76656c000001000000000000006cee115d00000000b032b7392bd29cd9389d56891d38495ea2b1bafa9793ae3d26a2477669b8eb6e"],[7,"07000000000000000400000000000000010000007101416e792074686f75676874732061626f757420686f77207468697320726f6c65206d6967687420776f726b3f0a68747470733a2f2f7777772e6a6f7973747265616d2e6f72672f726f6c657323436f6e74656e742d43757261746f7200000100000000000000c41a125d00000000b032b7392bd29cd9389d56891d38495ea2b1bafa9793ae3d26a2477669b8eb6e"],[8,"0800000000000000050000000000000001000000d45768696368206f6e657320646f20796f75207468696e6b2077696c6c207374696c6c2062652061726f756e6420627920323033303f000001000000000000003cba125d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[9,"090000000000000005000000000000000200000030584d52204d617962652e2e2e000001000000000000004efc125d0000000007cd1fb09a58aff8bf48eba12fc659d37822a74b81270b85a1fb5baf3aa591cf"],[10,"0a000000000000000600000000000000010000008d054a7573742074686f75676874204920776f756c64206c65617665206120717569636b20696e74726f20686572652e0a0a4d79206e616d652069732042656465686f204d656e6465722c204920616d2043454f206174204a7367656e657369732c2074686520636f6d70616e792063757272656e746c79206275696c64696e67204a6f7973747265616d2e204d6f7374206f66206d792074696d65206973207370656e7420646f696e6720646576656c6f706d656e742c20526e442c20746563686e6963616c2f70726f647563742064657369676e20616e6420686972696e672e200a0a4d792063757272656e7420666f63757320697320746f20706c616e20666f72206f7572206e65787420746573746e65742c2077686963682077652068617665206e6f742079657420616e6e6f756e6365642e0a0a496620796f752061736b2061207175657374696f6e2c20492077696c6c2074727920746f20616e7377657221000001000000000000004460135d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[11,"0b000000000000000700000000000000010000002d03576520686176656e277420686164207468652074696d6520746f206d616b6520616e20657069736f646520696e2061207768696c652c20627574207765276c6c2074727920616e64206d616b65206f6e65206e657874207765656b2e20416e7920696e746572657374696e67206e657773206f7220746f706963732077652073686f756c6420636f7665723f0a0a24313020626f756e747920666f722061206c696e6b20746f20612074776565742f61727469636c6520746861742067657473206d656e74696f6e65642100000100000000000000a0d1155d000000007cbd2c992945e5fc83d937a180e402ff32699718c1fc753f7a0214492e3ff035"],[12,"0c00000000000000070000000000000002000000c501726563656e742068697420746f20636f696e6465736b207768656e20636c6f7564666c6172652077656e7420646f776e2e0a68747470733a2f2f747769747465722e636f6d2f636f696e6465736b2f7374617475732f313134363035363837343938383634323330363f733d31390a0a0a000001000000000000007c791c5d000000000d93f52ebfebeaef5adaeb0b0f0db97977ff3dc139d4279869f283bc2155388a"],[13,"0d000000000000000200000000000000050000001501492077697368204920636f756c6420746970207468697320736f7274206f66207374756666212049747320746f6f20696e636f6e76656e69656e74207269676874206e6f7700000100000000000000ceae1c5d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[14,"0e00000000000000080000000000000001000000990323205768617420776f756c6420796f75206669783f0a0a4920776f756c64206164640a0a312e2041636375726174652073756263617465676f727920616e642074687265616420636f756e7473212049747320636f6e667573696e672c20616e64206861726420746f20747261636b206e657720706f7374732e0a322e20486f772063616e2077652073757266616365206e657720706f737473206265747465723f0a322e20536f6d6520736f7274206f662074616767696e67206f662075736572732c2077697468206e6f74696669636174696f6e73202849206b6e6f772068617264290a000001000000000000006aaf1c5d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[15,"0f00000000000000080000000000000002000000e10e536f6d652073756767657374696f6e733a0a2a20546f206164642074686520646174652f74696d6520746865206c61737420706f737420776173206d6164652066726f6d20666f72756d206f7665727669657720616e64206c696e6b20746f2064697265637420706f7374202b20746872656164207469746c650a2a20546f206164642074686520646174652f74696d65206f6620616c6c20706f73747320696e2065616368207468726561640a2a20546f206164642061207365706172617465206669656c642066726f6d207469746c6520746861742063616e2062652066696c6c6564207769746820616e20656d6f6a6920746f20676976652074687265616473206120626974206f662076697375616c20666c6172652028656d6f6a69277320636f756c642062652063757420646f776e20746f206120736d616c6c2073657420726174686572207468616e20616c6c206f66207468656d290a2a20546f2061646420746865206162696c69747920746f20646f20616e206175746f6d6174696320696e2d6c696e652071756f746520746f2070726576696f757320706f7374732074686174206164647320612071756f7465202b206c696e6b20746f2074686520706f73742074686520706572736f6e206973207265706c79696e6720746f2028746872656164656420726573706f6e736573290a2a20546f20616464207265616374696f6e7320746f20706f73747320287468756d62732075702f66756e6e7929206f7220612077617920746f20766f746520706f7374732f74687265616473206173206265696e6720676f6f642f6261640a2a20546f20616464207461677320666f7220746872656164732028227465636820737570706f72742220226f726967696e616c20636f6e74656e7422202264656269616e206e6f64652229202b206d61796265207365617263682066756e6374696f6e616c69747920696e20746865206675747572650a2a20546f2061646420706f7374206e756d626572202b206c696e6b20746f20616e63686f72206f6620706f7374206e756d62657220696e2065616368207468726561642e20536f20796f752063616e20656173696c792073656e642061206c696e6b20746f20706f73742023313220746f206f746865722070656f706c65206f72206c696e6b2066726f6d20616e6f74686572207468726561642e0a2a20546f206164642061206d656e7520666f722073696d706c65207465787420666f726d617474696e67206c696b6520626f6c642c206974616c69632c20696e73657274207069637475726520000001000000000000002e021e5d00000000b032b7392bd29cd9389d56891d38495ea2b1bafa9793ae3d26a2477669b8eb6e"],[16,"10000000000000000800000000000000030000006906546869732069732061207265616c6c79206772656174206c6973742c207468616e6b73210a0a49207468696e6b2077652063616e20646f2061206c6f74206f66207468697320776974686f757420612072756e74696d6520757067726164652c207768696368206973206e6963652e2057652061726520676f696e6720746f20696e76657374206d6f726520696e746f2074686520666f72756d2c20736f207765206e65656420746f206d616b652069742065617369657220746f207573652e0a0a596f75206469646e277420746f75636820736f206d756368206f6e20746865206973737565206f6620737572666163696e67206e657720636f6e74656e742c20616e792074697073206f6e20746861743f0a0a49206861766520612076657279207665727920686172642074696d65206669677572696e67206f75742061207768657265206e65772061637469766974792069732074616b696e6720706c616365207768656e20492068697420746865206d61696e20666f72756d20706167652c206f72206576656e2073756263617465676f726965732e00000100000000000000ca3b245d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[17,"11000000000000000800000000000000040000006503466f72206e657720636f6e74656e7473207765206e6565642061206e6f74696669636174696f6e2073797374656d206c696b652c2061206e6f74696669636174696f6e20636f756e746572207768656e20736f6d656f6e65207265706c69657320746f206f757220706f7374206f72207468726561642e53686f772061206e6f74696669636174696f6e20636f756e746572207769746820736d616c6c2064657461696c206f6e2074686520746f70207269676874202e20497420776f756c64206265206e69636520616e6420766572792075736566756c2e0000010000000000000072cf245d000000000d93f52ebfebeaef5adaeb0b0f0db97977ff3dc139d4279869f283bc2155388a"],[18,"1200000000000000070000000000000003000000690168747470733a2f2f7777772e636f696e6465736b2e636f6d2f7468657265732d612d7365636f6e642d746f6b656e2d612d627265616b646f776e2d6f662d66616365626f6f6b732d626c6f636b636861696e2d65636f6e6f6d7900000100000000000000ae22295d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[19,"1300000000000000080000000000000005000000310349662061206e6f74696669636174696f6e20636f756e74657220697320746f6f20696e747275736976652c20796f7520636f756c64206a75737420686967686c6967687420746872656164732077697468206e657720706f73747320736f6d65686f772e20506572686170732070757420612073746172206e65787420746f2074686520746872656164206f72207075742074686520746872656164207469746c6520696e20626f6c64207768656e207468657265206973206e657720756e7265616420636f6e74656e742e000001000000000000005827295d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[20,"14000000000000000600000000000000020000002820202020202020202020000001000000000000001828295d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[21,"1500000000000000080000000000000006000000d101416e6f746865722066656174757265206964656120776f756c6420626520746f20686176652022656469746564222073686f776e206e65787420746f20706f73747320746861742068617665206265656e206564697465642061667465722074686579277665206265656e207772697474656e2e0000010000000000000018df295d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[22,"160000000000000009000000000000000100000069014865726520796f752063616e206469736375737320616c6c207468696e67732072656c6174656420746f206265696e67206120604469737472696275746f7260206f6e20746865204a6f7973747265616d206e6574776f726b2e00000100000000000000e8022a5d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[23,"17000000000000000a000000000000000100000009044c6574206d65206b6e6f7720696620796f7520776f756c64206c696b6520746f20736565206d6f7265206f662074686573652e2049276d2061206269742062757379207269676874206e6f772c206275742069662070656f706c65206e6565642068656c702067657474696e67207365742075702c2049276c6c2070726f6261626c79206d616b6520736f6d65206d6f72652e0a0a68747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f6d656469612f706c61792f354554505868557135516e43665a397963646142337063453138473464556d47417454574435506d544d63627862775000000100000000000000d8122a5d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[24,"18000000000000000800000000000000070000004102576f726b696e67206f6e2061205b6769746875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f6973737565732f38302920666f722074686973210a0a4665656c206672656520746f206368696d6520696e2e2e2e0a0a2a45646974656420746f2073656520696620697427732073686f776e2e00000100000000000000f2532c5d0000000042be11a654ef34dbbfba9aa252ed093ef0890e874091b66e4193913ee2913953"],[25,"19000000000000000a000000000000000200000055054865792042656e2c0a0a5468697320697320776f6e64657266756c20737475666621200a0a536f6d652074696d652074686973207765656b2c2049276c6c2074727920746f206f7267616e697a652074686520666f72756d2070726f7065726c7920666f7220736f6d657468696e67207765206861766520696e206d696e6420666f72206c617465722e20436f6d7065746974696f6e732c20616e64206120636f6d6d756e6974792066756e6420636f6e74726f6c6c65642062792074686520636f756e63696c2e0a0a5765206d6179206a757374206f666665722022726567756c617222205b626f756e746965735d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732920666f72206d6f7265206f6620746865736520696e73746561642e204665656c206672656520746f2070726f706f7365206f6e6520796f757273656c6621000001000000000000009ca32c5d0000000042be11a654ef34dbbfba9aa252ed093ef0890e874091b66e4193913ee2913953"],[26,"1a000000000000000a00000000000000030000004d0147726561742c207468616e6b73204d617274696e210a0a436f6d7065746974696f6e7320616e6420636f6d6d756e6974792066756e6420626f746820736f756e64207665727920696e746572657374696e672e0000010000000000000002b92c5d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[27,"1b000000000000000200000000000000060000004061207465737420666f6f207265706c79000001000000000000009285785d000000009e159eb998037d425124c10666d50e207d769bd5e993ffa82a9b32c8d645f6f5"],[28,"1c000000000000000400000000000000020000005101576527726520696e74726f647563696e6720697420696e2074686520526f6d6520746573746e65742c20736f20686f706566756c6c79206974276c6c206265636f6d65206170706172656e74207468656e203a2900000100000000000000e66b7d5d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[29,"1d000000000000000b00000000000000010000007d0c23204f766572766965770a5468697320666f72756d2063617465676f727920616e6420746865205b6f726967696e616c207265706f5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f2920617265207768657265207765207075626c6973682c20747261636b20616e6420646f63756d656e742074686520626f756e74792073797374656d20666f7220746865204a6f7973747265616d20706c6174666f726d2e20416e796f6e65206973206672656520746f206d616b652061205b70726f706f73616c5d282370726f706f73616c732920666f72206120626f756e74792c20616e6420616e796f6e65206973206672656520746f20636f6d7065746520666f72207468656d2e0a0a43757272656e746c792c20616c6c20626f756e746965732077696c6c206265206d6164652060616374697665602c2066756e6465642c20616e642077696c6c206265206576616c7561746564206279205b4a7367656e657369735d2868747470733a2f2f626c6f672e6a6f7973747265616d2e6f72672f6a7367656e657369732f292e20496e20746865206675747572652c206f757220696e74656e74696f6e20697320746f206772616475616c6c7920696e766f6c76652074686520706c6174666f726d20676f7665726e616e63652073797374656d20696e20746865206465636973696f6e206d616b696e672e0a0a546865207061796f7574732077696c6c206265206d61646520696e205b6d6f6e65726f5d2868747470733a2f2f7765622e6765746d6f6e65726f2e6f72672f2920756e6c657373206e6f746564206f74686572776973652e204f75722063686f696365206f66207573696e67206d6f6e65726f20617320746865206d6574686f64206f66207061796d656e742069732074686174206974277320626f746820612077656c6c2065737461626c697368656420616e6420726570757461626c652070726f6a6563742c20616e64206172677561626c7920686173206265747465722070726976616379206665617475726573207468616e20736f6d65206f6620746865206f74686572206f7074696f6e732e00000100000000000000aab7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[30,"1e000000000000000c00000000000000010000003d0720232323232050726f626c656d0a417320746865206e6f6e2d636f6465207265706f732061726520757064617465642c206974277320646966666963756c7420746f2061766f696420696e74726f647563696e672062726f6b656e206c696e6b732c206572726f7273207769746820696d616765732c206772616d6d6172206d697374616b65732c20666f726d617474696e67206572726f72732c206574632e2054686973206d616b657320697420646966666963756c7420746f206e617669676174652c20616e642061646473206672696374696f6e20666f7220726561646572732e200a4e6f746520746861742074686973206170706c69657320746f20414c4c2074686520524541444d452e6d642066696c65732c206e6f74206a7573742074686520746f70206c6576656c206f6e652e0a0a2323232320476f616c730a496d70726f7665207175616c69747920616e64206163636573736962696c697479206f66206f7572207265706f732e0a0a2323232320526577617264730a2432207065722066697820746861742067657473206d65726765642e0a0a205f5375627374616e7469616c20696d70726f76656d656e7473206d61792062652072657761726465642065787472612e5f00000100000000000000c2b7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[31,"1f000000000000000d00000000000000010000007d03232323205f416c74686f756768207468697320626f756e7479206973207374696c6c206f70656e2c20626520617761726520746861742077652068617665206265656e20696e20636f6e746163742077697468206f6e65206170706c6963616e7420746861742063616d65207570207769746820736f6d65206164646974696f6e616c20696465617320616e642072657365617263682e205468697320706572736f6e20686173206265656e20676976656e202432353020746f20636f6e74696e7565206c6f6f6b696e6720696e746f206d6f72652064657461696c732e5f00000100000000000000e6b7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[32,"20000000000000000e0000000000000001000000310e23232050726f626c656d0a5765206861766520666f756e642061206c6f74206f662074686520636f6d6d6f6e206d656469612066696c652074797065732077696c6c206e6f7420706c617920696e205b70696f6e6565725d28687474703a2f2f746573746e65742e6a6f7973747265616d2e6f72672f292c20776974686f757420646f776e6c6f6164696e67207468652066696c652e0a0a232320476f616c730a496d70726f7665207468652055582c206279206b6e6f77696e672065786163746c7920776861742066696c6520747970657320776f726b732c20616e6420696e2077686963682062726f777365727320286368726f6d652f6368726f6d69756d2c2066697265666f7820616e6420736166617269292e0a0a232320526577617264730a4f75722066697273742070726f706f73616c206973202435302c2062757420696620616e206170706c6963616e742070726f6475636573206120676f6f64207465737420706c616e2c202869652e206c69737420616c6c20657874656e73696f6e732c2062726f777365727320616e64204f53277320746865792063616e2f77696c6c2074657374292c20746869732063616e206265206e65676f7469617465642e0a0a23232053636f7065206f6620576f726b20262044656c6976657261626c65730a55706c6f616420636f6e74656e7420696e20616c6c20227374616e646172642220666f726d6174732c20616e642070726f6475636520612066756c6c206c697374206f66207768617420776f726b7320696e2077686963682062726f77736572732f4f5327732e0a0a232320436f6e73747261696e74730a416c6c20636f6e74656e742075706c6f61646564206d75737420626520696e206c696e652077697468206f7572205b546f535d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f70616765732f746f73292e0a0a232320426f756e747920666f726d61740a546865206170706c69636174696f6e287329206d75737420626520617070726f766564206265666f726520616e7920776f726b2077696c6c2062652072657761726465642e0a0a232320446561646c696e650a546865206170706c69636174696f6e20646561646c696e65206973207468652030382e30372e31392c2031353030474d542b322e0a0a285468697320626f756e7479206973206e6f206c6f6e676572206f70656e2900000100000000000000feb7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[33,"21000000000000000f0000000000000001000000550223232050726f626c656d0a5765206e65656420736f7572636573206f66206672656520616e6420617661696c61626c65206d6564696120636f6e74656e742c20696e20766172696f757320666f726d6174732c20696e2074686520666f6c6c6f77696e6720746f70206c6576656c2063617465676f726965733a0a0a2a20766964656f0a2a20617564696f0a2a20652d626f6f6b730000010000000000000028b8825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[34,"2200000000000000100000000000000001000000350523204f766572766965770a0a54686973207061676520636f6e7461696e7320616c6c20696e666f726d6174696f6e206f6e20686f7720746f20736574757020796f7572206e6f646520616e64206265636f6d696e672061206056616c696461746f7260206f6e20746865204a6f7973747265616d20546573746e6574732e2049742077696c6c206265207570646174656420666f7220696d70726f76656d656e74732c20616e64207768656e20736f6d657468696e67206368616e67657320666f72206e657720746573746e6574732e0a0a496620796f752077616e7420746f206561726e206d6f726520604a6f796020746f6b656e732c2062757420666f7220736f6d6520726561736f6e2063616e2774206f7220776f6e2774206265636f6d652061206056616c696461746f72602c20796f752063616e20604e6f6d696e6174656020696e73746561642e000001000000000000008e81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[35,"2300000000000000110000000000000001000000350523204f766572766965770a0a54686973207061676520636f6e7461696e7320616c6c20696e666f726d6174696f6e206f6e20686f7720746f20736574757020796f7572206e6f646520616e64206265636f6d696e672061206056616c696461746f7260206f6e20746865204a6f7973747265616d20546573746e6574732e2049742077696c6c206265207570646174656420666f7220696d70726f76656d656e74732c20616e64207768656e20736f6d657468696e67206368616e67657320666f72206e657720746573746e6574732e0a0a496620796f752077616e7420746f206561726e206d6f726520604a6f796020746f6b656e732c2062757420666f7220736f6d6520726561736f6e2063616e2774206f7220776f6e2774206265636f6d652061206056616c696461746f72602c20796f752063616e20604e6f6d696e6174656020696e73746561642e00000100000000000000ac81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[36,"2400000000000000120000000000000001000000350523204f766572766965770a0a54686973207061676520636f6e7461696e7320616c6c20696e666f726d6174696f6e206f6e20686f7720746f20736574757020796f7572206e6f646520616e64206265636f6d696e672061206056616c696461746f7260206f6e20746865204a6f7973747265616d20546573746e6574732e2049742077696c6c206265207570646174656420666f7220696d70726f76656d656e74732c20616e64207768656e20736f6d657468696e67206368616e67657320666f72206e657720746573746e6574732e0a0a496620796f752077616e7420746f206561726e206d6f726520604a6f796020746f6b656e732c2062757420666f7220736f6d6520726561736f6e2063616e2774206f7220776f6e2774206265636f6d652061206056616c696461746f72602c20796f752063616e20604e6f6d696e6174656020696e73746561642e00000100000000000000ca81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[37,"2500000000000000130000000000000001000000e90d0a23232052756e206173206120736572766963650a0a496620796f75206172652072756e6e696e6720796f7572206e6f6465206f6e2061205b6c696e75785d28236c696e75782920616e642077616e7420746f2072756e2069742061732061205b736572766963655d2868747470733a2f2f77696b692e64656269616e2e6f72672f73797374656d642f5365727669636573292c20796f752063616e207365742069742075702074686973207761792e0a4e6f7465207468617420796f752073686f756c642061766f6964207468697320756e6c65737320796f75206b6e6f77207768617420796f752061726520646f696e672c206172652072756e6e696e6720796f7572206e6f6465206f6e202a2a796f7572206f776e205650532a2a206f7220612073696e676c6520626f61726420636f6d70757465722e205769746820677265617420287375646f292070726976696c656765732c20636f6d657320677265617420726573706f6e736962696c6974696573210a0a496620796f752061726520616c72656164792072756e6e696e672061732061206076616c696461746f72602c20636f6e7369646572205b756e7374616b696e675d2823756e7374616b696e67292066697273742c20617320796f75206d617920657870657269656e636520736f6d6520646f776e74696d6520696620796f75206d616b6520616e79206d697374616b657320696e207468652073657475702e0a0a2323232320436f6e6669677572652074686520736572766963650a0a45697468657220617320726f6f742c206f72206120757365722077697468207375646f2070726976696c656765732e20496620746865206c61747465722c2061646420607375646f60206265666f726520636f6d6d616e64732e0a0a6060600a24206364202f6574632f73797374656d642f73797374656d0a2320796f752063616e2063686f6f7365207768617465766572206e616d6520796f75206c696b652c2062757420746865206e616d652068617320746f20656e642077697468202e736572766963650a2420746f756368206a6f7973747265616d2d6e6f64652e736572766963650a23206f70656e207468652066696c65207769746820796f7572206661766f7269746520656469746f7220284920757365206e616e6f2062656c6f77290a24206e616e6f206a6f7973747265616d2d6e6f64652e736572766963650a606060000001000000000000005482835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[38,"26000000000000001400000000000000010000005d0123232054726f75626c6573686f6f74696e670a496620796f752068616420616e79206973737565732073657474696e672069742075702c20796f75206d61792066696e6420796f757220616e737765722068657265210a000001000000000000007882835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[39,"27000000000000001500000000000000010000004d0223204f766572766965770a0a54686973207468726561642077696c6c20636f6e7461696e20616c6c20696e666f726d6174696f6e206f6e20686f7720746f20736574757020796f75722073746f72616765206e6f646520616e64206265636f6d696e672061206053746f726167652050726f766964657260206f6e20746865204a6f7973747265616d20546573746e6574732e000001000000000000008083835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[40,"28000000000000001600000000000000010000005501232054726f75626c6573686f6f74696e670a496620796f752068616420616e79206973737565732073657474696e672069742075702c20796f75206d61792066696e6420796f757220616e73776572206865726521000001000000000000009883835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[41,"2900000000000000170000000000000001000000dd03232047657420537461727465640a546f20676574207374617274656420616e64207061727469636970617465206f6e20746865204a6f7973747265616d20746573746e6574732c20796f75206d7573742066697273742067656e657261746520604b6579287329602c20616e64207369676e20757020666f72206120604d656d62657273686970602e2054686973207265717569726573206e6f20736f667477617265206f7220646f776e6c6f6164732c20616e642063616e20626520646f6e6520696e20796f75722062726f77736572205b686572655d28687474703a2f2f746573746e65742e6a6f7973747265616d2e6f7267292e00000100000000000000ca84835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[42,"2a00000000000000180000000000000001000000510223204f766572766965770a0a54686973207061676520636f6e7461696e7320612064657461696c65642067756964652061626f757420686f772074686520676f7665726e616e63652073797374656d20776f726b73206f6e207468652063757272656e74204a6f7973747265616d20746573746e65742c20616e6420686f7720796f752063616e2070617274696369706174652e00000100000000000000e284835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[43,"2b000000000000001900000000000000010000003504576520686176656e277420726563656976656420616e79207265706f727473206f662070726f626c656d732077697468207468697320726f6c652c20736f20746869732074726f75626c6573686f6f74696e672074687265616420697320626c616e6b20666f72206e6f772e204c6574207573206b6e6f7720696620796f7520617265207374727567676c696e67207769746820616e797468696e67206f6e205b4769744875625d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b2f292c206f7220696e206f7572205b54656c656772616d2047726f75705d2868747470733a2f2f742e6d652f4a6f7953747265616d4f6666696369616c292e00000100000000000000f484835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[44,"2c000000000000001a0000000000000001000000e904232320427567205265706f72746572730a4173207769746820616c6c20736f6674776172652c20616e6420657370656369616c6c7920746865206561726c792076657273696f6e732c2074686572652077696c6c20626520706c656e7479206f6620627567732c206d697373696e6720666561747572657320616e6420656e68616e63656d656e74732072657175697265642e20426f746820746f20696d70726f766520617320776520676f2c20616e6420746f2022747261696e2220612067726f7570206f66207465737465727320616e6420646576656c6f7065727320666f72206f7572206175746f6e6f6d6f757320706c6174666f726d2c2077652077616e74205f6f75747369646572735f20746f20737461727420636f6e747269627574696e6720617320736f6f6e20617320706f737369626c652e000001000000000000003085835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[45,"2d000000000000001b0000000000000001000000cd0823232320496e737472756374696f6e730a417320616e206f70656e2d736f757263652070726f6a6563742c2077652074727920746f20666f6c6c6f7720746865207374616e6461726420636f6e76656e74696f6e7320616e6420776f726b666c6f772e0a0a496620796f752066696e642061206275672c206f722077616e7420746f20696d70726f7665206f722061646420736f6d657468696e6720696e2074686520636f64652c20646f63756d656e746174696f6e73206f72206775696465732c206c6f636174652074686520636f7272656374207265706f2066726f6d20746865206f7267616e697a6174696f6e205b696e6465785d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d237265706f7369746f72792d696e646578292e20466f726b20746865207265706f2c206d616b6520746865206368616e67657320796f752077616e7420746f20616464726573732c20616e64206372656174652061206050756c6c2072657175657374602e20466f72206f7572206d757475616c20636f6e76656e69656e63652c20697420776f756c64206265206e69636520696620796f752072616973656420616e206049737375656020666972737420736f2077652063616e206167726565206f6e207468652073636f70652c207468652073697a65206f662074686520626f756e747920616e64206d616b652073757265207468697320697320736f6d657468696e672077652077616e742f6e6565642e000001000000000000008485835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[46,"2e000000000000000c00000000000000020000005d06232323232053636f7065206f6620576f726b20262044656c6976657261626c65730a466f726b20746865207265706f2c20616e642066697820776861742069732062726f6b656e2e205468656e206d616b65206120505220696e20746865206170706c696361626c65207265706f2c20616e6420726566657220746f2069742061207265706c7920616e7377657220696e207468697320746872656164206f7220746865204769744875622069737375652e0a0a4170706c696361626c65207265706f73206172653a0a0a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d0a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b0a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f636f6d6d756e69636174696f6e730a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965730a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f64657369676e000001000000000000007001855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[47,"2f000000000000000c0000000000000003000000fd0e2323232320436f6e73747261696e74730a312e20416c74686f7567682073756767657374696f6e7320666f7220636c6172696669636174696f6e732c20696d70726f76656d656e74732c206574632e2061726520616c776179732077656c636f6d652c20706c6561736520616464207468656d20617320636f6d6d656e747320696e7374656164206f6620696e636c7564696e67207468656d20696e2074686520505220697473656c662c20746f206d616b65207468652050522065617369657220746f207265766965772e2049662074686520726576696577657220616772656573207769746820796f75722073756767657374696f6e2c20796f752063616e206164642061206e657720636f6d6d697420746f207468652050522e0a322e20416c6c206c696e6b732077697468696e207468652073616d65207265706f206d7573742062652072656c617469766520696e7374656164206f66206162736f6c7574652e204578616d706c653a0a0a6060600a232046726f6d2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f746573746e6574732f6163726f706f6c69730a2320596f752077616e7420746f206c696e6b20746f3a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f6d656574696e67732f6163726f706f6c6973236c61756e63682d6d656574696e670a2320446f20746869733a0a5b6c696e6b5d282e2e2f2e2e2f6d656574696e67732f6163726f706f6c69732f236c61756e63682d6d656574696e67290a23204e6f7420746869733a0a5b6c696e6b5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f6d656574696e67732f6163726f706f6c6973236c61756e63682d6d656574696e67290a6060600a0a332e205768656e20796f7520737461727420776f726b696e672c206665656c206672656520746f206d616b65206120647261667420505220746f2073686f7720796f757220696e74656e742c206275742070726566657261626c7920636865636b2074686520656e74697265207265706f206265666f72650a50726566657261626c7920676f207468726f756768205f616c6c5f20746865206c696e6b73206265666f7265206d61726b696e6720697420726561647920666f72207265766965772c20616e642061737369676e696e6720736f6d656f6e6520746f2072657669657720796f75722e000001000000000000008801855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[48,"30000000000000000c0000000000000004000000090a5f557064617465202d2030352e30382e31395f0a0a342e20506c656173652075736520555320456e676c697368207370656c6c696e6720666f7220636f6e73697374656e6379206163726f737320746865206f7267616e697a6174696f6e2e0a352e20496465616c6c792c20757365205b61746f6d5d2868747470733a2f2f61746f6d2e696f2f2920617320796f757220656469746f722c20616e64206164642074686520666f6c6c6f77696e6720706c7567696e733a0a0a2a205b6d61726b646f776e2d707265766965772d656e68616e6365645d2868747470733a2f2f61746f6d2e696f2f7061636b616765732f6d61726b646f776e2d707265766965772d656e68616e636564290a2a205b6d61726b646f776e2d746f632d6175746f5d2868747470733a2f2f61746f6d2e696f2f7061636b616765732f6d61726b646f776e2d746f632d6175746f290a0a546f20656e737572652069742072656e6465727320636f72726563746c792e0a0a2323232320426f756e747920666f726d61740a466972737420636f6d652066697273742073657276652e20506179206f7574206f6e2064656c69766572792e0a466f72206f757220636f6e76656e69656e63652c20616464206120636f6d6d656e7420616e64206c696e6b20746f2074686520505220696e20746869732069737375652c2077697468206e756d626572206f6620666978657320616e64206578706563746564207061796f7574732e0a0a2323232320446561646c696e650a57696c6c206d6f7374206c696b656c79206265206b657074206f70656e20666f722079656172732e2057696c6c20686f6e6f7220636f6e747269627574696f6e732034386820616674657220636c6f73696e672e00000100000000000000c401855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[49,"31000000000000000c00000000000000050000008902232320546f20736565206675727468657220636f6e766572736174696f6e732061626f7574207468697320626f756e747920616e6420746f20706f737420796f757220636f6e747269627574696f6e732c20706c6561736520766973697420746865205b4769744875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f33292e000001000000000000005402855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[50,"32000000000000000b000000000000000200000059044a7367656e6573697320697320616c736f206d616b696e67207765656b6c79207061796f75747320666f722070617274696369706174696f6e206f6e20746865205b4a6f7973747265616d20746573746e6574735d28687474703a2f2f746573746e65742e6a6f7973747265616d2e6f72672f292e204d6f726520696e666f726d6174696f6e2061626f757420746865207768617420796f752063616e2c207768617420796f752063616e206d616b652c20616e642077687920776527726520646f696e6720746869732063616e20626520666f756e6420696e206f7572205b68656c706465736b207265706f5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b292e000001000000000000000203855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[51,"33000000000000000b000000000000000300000029022a2a4b65657020696e206d696e642074686174206f757220626f756e74792073797374656d2069732061205749502c20616e642069742073686f756c642062652065787065637465642074686174206368616e67657320746f207468652070726f636573732077696c6c206265206d616465206173207468652070726f6a6563742067726f77732e2a2a000001000000000000002003855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[52,"34000000000000000b000000000000000400000029070a23232053756d6d617279206f6620426f756e746965730a0a7c204c6173742055706461746564207c20426f756e7469657320436f6e636c75646564207c204f6e676f696e6720426f756e74696573207c204f6666696369616c6c792050616964207c204f6c64205061796f757473602a6020207c0a7c3a2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c0a7c2031372e30372e313920202020207c20202020202020203020202020202020202020207c2020202020202020203320202020202020207c202020202a2a243632362a2a20202020207c20202020202a2a243231342a2a202020207c0a0a602a602044656e6f74657320626f756e746965732070616964206f7574206265666f72652074686520226f6666696369616c22207265706f207761732075702e20536f6d65206f6620746865736520626f756e746965732063616e20626520666f756e6420696e206f74686572207265706f732c20736f6d6520776572652073696d706c7920706f73746564206f6e2054656c656772616d2e000001000000000000004a03855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[53,"35000000000000000b00000000000000050000001d0923232053756d6d617279206f6620546573746e65742050617274696369706174696f6e205061796f7574730a0a23232320546f74616c0a0a7c204c6173742055706461746564207c2056616c696461746f7273207c20436f756e63696c204d656d62657273207c2053746f726167652050726f7669646572737c20546f74616c20202020202020202020207c0a7c3a2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c0a7c2030322e30382e313920202020207c2020202024383537202020207c20202020202024393337202020202020207c2020202020243338333920202020202020207c2020202a2a24353633332a2a20202020207c0a0a0a232323204163726f706f6c69730a0a7c204c6173742055706461746564207c2056616c696461746f7273207c20436f756e63696c204d656d62657273207c2053746f726167652050726f7669646572737c20546f74616c20202020202020202020207c0a7c3a2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c0a7c2030322e30382e313920202020207c2020202024343833202020207c20202020202024353130202020202020207c2020202020202433303634202020202020207c202020202a2a24343035372a2a202020207c0a000001000000000000006803855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[54,"36000000000000000b0000000000000006000000790723232320417468656e730a0a7c204c6173742055706461746564207c2056616c696461746f7273207c20436f756e63696c204d656d62657273207c2053746f726167652050726f7669646572737c20546f74616c20202020202020202020207c0a7c3a2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c0a7c2032342e30362e313920202020207c2020202020243236332020207c20202020202020243237322020202020207c2020202020202437373520202020202020207c2020202a2a24313331302a2a20202020207c0a0a0a232323205370617274610a0a7c204c6173742055706461746564207c2056616c696461746f7273207c20436f756e63696c204d656d62657273207c2020202020546f74616c202020202020207c0a7c3a2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c0a7c2030312e30342e313920202020207c2020202020243131312020207c20202020202024313535202020202020207c20202020202a2a243236362a2a202020207c000001000000000000007a03855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[55,"37000000000000000b00000000000000070000000d07232320426f756e746965730a0a2d202a2a4e756d6265722a2a0a20202d205768656e206120626f756e7479206265636f6d65732060616374697665602c2069742077696c6c2062652061737369676e65642061206e756d626572206261736564206f6e20697473206368726f6e6f6c6f676963616c206f726465722e0a0a2d202a2a5469746c652a2a0a20202d20412062726965662c206465736372697074697665207469746c650a0a2d202a2a4c696e6b2a2a0a20202d204c696e6b20746f20746865205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732920776974682064657461696c732e0a0a2d202a2a43617465676f72792a2a0a286e6f6e2d65786861757374697665290a20202d206042756720666978600a20202d206054657374696e67600a20202d2060446f63756d656e746174696f6e600a20202d2060496d70726f76656d656e7473600a20202d20604d61726b6574696e67600a20202d2060476f7665726e616e6365600a20202d20604e65772066656174757265600a20202d206050726f6a656374206d616e6167656d656e74600a20202d206048656c7060000001000000000000009e03855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[56,"38000000000000000b0000000000000008000000d5082d202a2a537461727420446174652a2a0a20202d2054686520646174652074686520626f756e747920626563616d652060616374697665600a0a2d202a2a41737369676e65652873292a2a0a20202d20496620616e206170706c6963616e7420686173206265656e20617070726f76656420746f20737461727420776f726b2c2074686520706572736f6e2773204769744875622060557365726e616d65602077696c6c206265206c69737465642e0a20202d20496e20736f6d652063697263756d7374616e6365732c2069742063616e2062652061636365707461626c6520746f206a757374207374617465206041737369676e6564602e0a0a2d202a2a5374617475732a2a0a20202d2041637469766520426f756e746965730a202020202d20604f70656e600a202020202d206041737369676e6564600a202020202d2060556e64657220726576696577600a202020202d20604f6e20486f6c64600a20202d20436f6e636c7564656420426f756e746965730a202020202d2060436f6d706c65746564600a202020202d206045787069726564600a202020202d206041626f72746564600a20202d204d6f72652064657461696c73206f6e20746865207374617475732063616e20626520666f756e6420627920666f6c6c6f77696e6720746865206c696e6b20666f72207468652070726f706f73616c206f6620696e7465726573742e0a0a2d202a2a506169642a2a0a20202d2054686520616d6f756e742070616964206f75742074687573206661722e00000100000000000000aa03855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[57,"39000000000000000b0000000000000009000000b1072d202a2a426f756e74792a2a0a20202d2041637469766520426f756e746965730a202020202d205468652076616c7565206f662074686520626f756e74792e0a20202d20436f6e636c7564656420426f756e746965730a202020202d2054686520746f74616c20616d6f756e742070616964206f75742e0a20202d2049662074686520616d6f756e7420697320666f6c6c6f77656420627920602a602c20636f6e73756c7420746865206c696e6b6564205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732920666f72206d6f726520696e666f726d6174696f6e2e0a0a2d202a2a456e6420446174652a2a0a20202d2054686520646174652074686520626f756e7479207761732060636f6e636c75646564600a0a2d202a2a436c61696d616e742873292a2a0a20202d2049662074686520626f756e747920776173207375636365737366756c6c7920636c61696d65642c2074686520706572736f6e2773204769744875622060557365726e616d65602077696c6c206265206c69737465642e0a20202d20496e20736f6d652063697263756d7374616e6365732c2069742063616e2062652061636365707461626c6520746f206a7573742073746174652060436c61696d6564602e0a00000100000000000000e603855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[58,"3a000000000000000b000000000000000a000000310523232050726f706f73616c730a0a496e206164646974696f6e20746f20746865204a7367656e65736973207465616d2c20636f6d6d756e697479206d656d626572732c206e657720616e64206f6c642c2073686f756c64206e6f742062652061667261696420746f2070726f706f736520626f756e746965732e20417420736f6d6520706f696e742c20776520686f706520746f2063726561746520612073797374656d206569746865722073696d696c617220746f20746865205b4249505d2868747470733a2f2f6769746875622e636f6d2f626974636f696e2f62697073292070726f6365737320666f7220626974636f696e20616e642f6f7220746f20746865205b4646535d2868747470733a2f2f666f72756d2e6765746d6f6e65726f2e6f72672f392f776f726b2d696e2d70726f6772657373292073797374656d20666f72206d6f6e65726f2e000001000000000000005804855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[59,"3b000000000000000b000000000000000b000000950f232323205374657020627920537465700a0a546869732073656374696f6e206f75746c696e6573207468652073746570732066726f6d20612070726f706f73616c73206973206d6164652c20746f2068617665206974206265636f6d6520616e205b41637469766520426f756e74795d28236163746976652d626f756e74696573292e0a0a312e20496620796f7520617265206e6f742066616d696c6961722077697468207468652070726f6a65637420616e642069747320676f616c732c20636f6e73696465722074686520666f6c6c6f77696e6720736f75726365733a0a20202d205468652070726f6a656374205b6d616e69666573746f5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6d616e69666573746f292e0a20202d205468652070726f6a656374205b776869746570617065725d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f77686974657061706572292e0a20202d204f7572206c6f6e67206f722073686f7274207465726d205b4f4b52735d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f6f6b7273292e0a596f75722070726f706f73616c2073686f756c642070726566657261626c7920626520696e206c696e6520776974682c206f72206174206c65617374206e6f74206f7274686f676f6e616c20746f20746865736520736f75726365732e20526566657272696e6720746f20616e2069737375652066726f6d206f6e65206f66206f7572206f74686572207265706f732063616e20616c736f206265206120676f6f6420736f757263652e0a0a496620796f75206861766520612070726f706f73616c207468617420646f6573206e6f74207265616c6c792066697420756e64657220616e79206f66207468652061626f76652c206665656c206672656520746f2067617567652074686520696e74657265737420616e642072656c6576616e636520696e2061206d6f726520696e666f726d616c206d616e6e65722c20652e672e20696e206f6e65206f66206f757220636f6d6d756e69636174696f6e206368616e6e656c732c2073756368206173205b54656c656772616d5d2868747470733a2f2f742e6d652f4a6f7953747265616d4f6666696369616c292c206f722074686520666f72756d2c20616674657220697420686173206265656e20696e74726f647563656420696e205b4163726f706f6c69735d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f746573746e6574732f6163726f706f6c6973292e000001000000000000006a04855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[60,"3c000000000000000b000000000000000c000000f907322e204d616b6520616e205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732920696e2074686520626f756e74696573207265706f2c207374727563747572656420617320666f6c6c6f77733a0a0a0a23232323205469746c650a0a2d202a2a4a43502a2a202d202a2a4465736372697074697665205469746c652a2a0a0a232323232320426f64790a0a2d202a2a50726f626c656d3a2a2a0a50726f766964652061206465736372697074696f6e206f66207468652070726f626c656d206f7220696d70726f76656d656e7420796f75207769736820746f2073656520696d706c656d656e7465642e0a2d202a2a476f616c733a2a2a0a41206272696566206465736372697074696f6e206f662074686520676f616c7320796f7520686f706520746f20616368696576652c20616e6420686f772069742077696c6c2062656e6566697420746865204a6f7973747265616d2050726f6a6563742e0a0a54686573652061726520746865206d696e696d756d20726571756972656d656e74732c2062757420796f752061726520656e636f75726167656420746f206c6f6f6b20617420746865205b626f756e7479207374727563747572655d2823626f64792d312920666f7220616e797468696e6720657874726120746f206164642e000001000000000000008804855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[61,"3d000000000000000b000000000000000d0000003106332e20496620796f7520776973682c20616e6e6f756e636520796f75722070726f706f73616c20696e206f6e65206f66206f757220636f6d6d756e69636174696f6e206368616e6e656c73206d656e74696f6e65642061626f76652e20546869732077696c6c206c696b656c792067656e6572617465206d6f726520666565646261636b2e0a0a342e2041206d656d626572206f6620746865204a7367656e65736973207465616d2077696c6c207265706c7920696e20612074696d656c79206d616e6e65722c2061736b696e6720666f72206d6f726520696e666f726d6174696f6e2c2072656a656374696e67206f7220617070726f76696e6720796f75722070726f706f73616c2e0a0a352e204966206974206765747320617070726f7665642c204a7367656e657369732077696c6c2065697468657220777269746520616e6420616e6e6f756e63652074686520626f756e7479206173206465736372696265642062656c6f772c206f722064656c65676174652074686520726573706f6e736962696c6974792e0a000001000000000000009404855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[62,"3e000000000000000b000000000000000e000000850623232320416e6e6f756e63696e672041637469766520426f756e746965730a0a5768656e2061205b70726f706f73616c5d282370726f706f73616c732920686173206265656e20617070726f7665642c206f72204a7367656e657369732068617665206964656e74696669656420736f6d657468696e67207375697461626c6520666f72206120626f756e74792c2069742077696c6c20626520616e6e6f756e63656420617320616e205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f697373756573292c20616e6420616464656420746f20746865205b41637469766520426f756e746965735d28236163746976652d626f756e7469657329207461626c652e0a0a486f77207468652070726f63657373206c6f6f6b732066726f6d2074686520604163746976656020737461676520746f2060436f6e636c75646564602077696c6c20646570656e64206f6e207468652073636f7065206f6620776f726b2c202a2a43617465676f72792a2a2c207061796f7574207374727563747572652c206574632e00000100000000000000b204855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[63,"3f000000000000000b000000000000000f000000f901232320466f72206d6f726520696e666f726d6174696f6e206f6e20626f756e746965732c20706c6561736520766973697420746865205b6a6f7973747265616d2f626f756e746965735d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f29207265706f7369746f72792e00000100000000000000ae05855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[64,"40000000000000000d00000000000000020000001d0823232050726f626c656d0a417320646f63756d656e74656420696e205b4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2336385d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f3638292c205b4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2336395d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f3639292c2073686f776e20696e205b74656c656d74657472795d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f232f4a6f7973747265616d253230546573746e657425323076322920616e64206469736375737365642068656176696c7920696e206f757220636f6d6d756e697479206368616e6e656c732c206b656570696e672061207375737461696e65642068696768207065657220636f756e74206861732070726f76656420646966666963756c742e2052756e6e696e6720746865206e6f646520776974682064656661756c742073657474696e677320616e64206c656176696e6720697420666f722061206c6f6e672074696d652077696c6c206c696b656c7920726573756c7420696e3a00000100000000000000a007855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[65,"41000000000000000d00000000000000030000005908312e204120636f6e74696e756f75732064726f7020696e20706565727320286173207468652022706f6f6c22206f6620323520676574732066696c6c656420776974682066726f7a656e206e6f6465732c20616e64206e6f6465732066726f6d206f74686572206e6574776f726b73292e0a322e20412074656e64656e637920666f7220636c7573746572696e67207065657273202869652e20612067726f7570206f66206e6f646573206f6e6c792f6d6f73746c7920636f6e6e656374656420746f2065616368206f74686572290a332e2048696768206c6174656e63792c206c656176696e67206076616c696461746f72736020746f20676574207761726e696e67732f736c617368696e67732f62616e6e65642064756520746f20616e2022756e666f7274756e61746522206f7264657220696e207468652071756575652e0a342e205468697320616761696e20686173206c65616420746f20666f726b732c20656974686572206265636175736520746865206f6e6520226f75747369646522206e6f646520696e2074686520636c7573746572202872656620322e292068617320676f6e65206f66666c696e652c20616e642f6f72206265636175736520736f6d65206e6f64657320636f6e7369646572207468652070726f706f73656420626c6f636b20746f2062652077697468696e207468652074696d65206c696d69742c20616e64206f7468657273206e6f742e00000100000000000000be07855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[66,"42000000000000000d00000000000000040000001d0a417320612073696465206e6f74652c207468657265206973206120636c7573746572696e67206f66206e6f64657320696e204575726f70652c20627574207468652072657374206f662074686520776f726c64206973206e6f742061732077656c6c20726570726573656e7465642c20696e6372656173696e67206c6174656e637920616e6420616464696e6720746f207468652070726f626c656d2e0a0a417320776520646f6e27742077616e7420746f2072657374617274206f7572206e6574776f726b20616761696e20286173206f75746c696e656420696e205b4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2336395d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f363929292c2077652068617665206164766973656420757365727320746f3a0a0a2a20696e637265617365207065657220636f756e7420627920616464696e672074686520666c6167730a2020602d2d696e2d7065657273206e202d2d6f7574207065657273206d600a20207768657265206e20616e64206d203e2032352e0a2a2072657374617274207468656972206e6f646520617420726567756c617220696e74657276616c730a0a426f7468206f6620746865736520696d70726f7665732074686520736974756174696f6e2c206275742074686520666f726d657220696e63726561736573206d656d6f72792075736167652c20616e6420746865206c61747465722072657175697265732061206d6f72652068616e6473206f6e20617070726f6163682c206f72206d6f726520616476616e6365642073657474696e67732e0a00000100000000000000d007855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[67,"43000000000000000d0000000000000005000000110d23232050726f706f73616c0a446f2061206d61726b6574696e672063616d706169676e2c207768657265206578697374696e6720636f6d6d756e697479206d656d626572732061726520676976656e20604a6f7973747265616d60206272616e6465642073696e676c6520626f61726420636f6d70757465727320287261737062657272792070692773206f722073696d696c61722920666f7220667265652c20746f2072756e206173206e6f6465732e20546865792077696c6c207265636569766520726567756c6172206d6f6e65726f207061796d656e747320746f20636f76657220656c65637472696369747920616e642074686569722074696d65206966207468656972206e6f64657320686176652073756666696369656e7420757074696d652e20546865792077696c6c206f6620636f757273652067657420746f206b656570207468652052425073206e6f206d617474657220776861742e205468657365206e6f6465732077696c6c206d6179206f72206d6179206e6f74206265207061696420666f72206265696e67206076616c696461746f7273602e0a492062656c6965766520746869732063616e2068656c7020696e2074686520666f6c6c6f77696e6720776179733a0a0a312e20496e63726561736520746865206e6f646520636f756e742c2077686963682077696c6c3a0a2020200a2020202a20696d70726f766520746865206e6574776f726b0a2020202a2070726f6d6f7465206f75722022706f736974696f6e2220696e20746865205b74656c656d74657472795d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f232f4a6f7973747265616d253230546573746e6574253230763229206869657261726368790a322e2046757274686572206275696c6420616e6420656e636f75726167652074686520636f6d6d756e6974792e0a332e2048656c7020696d70726f76652074686520746563686e6963616c20736b696c6c73206f662074686520726563656976696e67206d656d626572732028746865792077696c6c206f6620636f757273652067657420737570706f72742c206275742077652077696c6c206e6f74207368697020746865206e6f646573207769746820736f6674776172652900000100000000000000e207855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[68,"44000000000000000d0000000000000006000000810c232320436f73740a41205b7261737062657272792070695d2868747470733a2f2f7777772e616d617a6f6e2e636f6d2f41424f582d5261737062657272792d436f6d706c6574652d4d6f74686572626f6172642d4865617473696e6b2f64702f423037443856585752592f7265663d73725f315f31373f637269643d31385153535758575649485059266b6579776f7264733d7261737062657272792b70692b332b62253242267169643d3135353735303930363826733d6761746577617926737072656669783d7261737062657272792b702532436170732532433430392673723d382d313729207769746820616c6c20746865206e65656465642065787472612065717569706d656e7420636f7374732061726f756e64207e38302420772f6f207368697070696e672e2042792073686f7070696e672061726f756e642c20627579696e6720696e2062756c6b2c20616e6420636f6e7369646572206368656170657220626f617264732a2c20612076657279206869676820656e6420657374696d61746520636f6d657320746f202431303020736869707065642e2047657474696e672074686520636f737420646f776e20746f20243530206d6967687420626520706f737369626c652c20627574206120627564676574206f6620243130302f707220626f6172642069732073696d706c6520616e6420636f6e7365727661746976652e0a0a2a63757272656e746c792c20626f617264732061732073696d706c6520617320746865205b6f72616e6765207069207a65726f5d2868747470733a2f2f7777772e616c69657870726573732e636f6d2f6974656d2f4f72616e67652d50692d5a65726f2d48322d517561642d436f72652d4f70656e2d736f757263652d3531324d422d50726f746563746976652d57686974652d436173652d646576656c6f706d656e742d626f6172642d6265796f6e642d5261737062657272792f33323739393131313631312e68746d6c3f73706d3d61326730732e393034323331312e302e302e3165663734633464414778444932292063616e205f63757272656e746c795f2072756e206f6e20746865206e6574776f726b2e00000100000000000000f407855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[69,"45000000000000000d0000000000000007000000910a57652077696c6c20706c616365206120626f756e747920666f7220617272616e67696e67207468652077686f6c65207468696e672c2069652e206465616c696e67207769746820737570706c6965727320666f7220626f6172647320616e64206272616e64696e672c20636f6d70696c696e672061206c697374206f6620726563697069656e74732c20616e6420617272616e67696e6720666f72207368697070696e672e205342437320706f77657220636f6e73756d7074696f6e20697320636c6f736520746f206e65676c696769626c652c20736f20706179696e672024382f6d6f6e7468202d3e20243130302f796561722c20666f7220757074696d65203e393525207365656d7320666169722e0a0a417373756d696e672077652070726f7669646520353020626f617264732c2074686520746f74616c20636f737420617373756d696e672074686520626f617264732061726520706f77657266756c20656e6f75676820746f20737570706f72742074686520696e6372656173696e67206e6574776f726b206c6f616420666f72207e3120796561722e202857652077696c6c206c696b656c79206861766520746f207374617274206e657720636861696e73206f6e6365206f72207477696365207072207965617220616e79776179292e0a0a4974656d0951747909436f73740a426f61726409353009243130300a205061796f757473097e3438302a0924380a426f756e74792a2a093109243235300a2a2a544f54414c2a2a092a2a4e412a2a092a2a24393039302a2a0a2a417373756d696e6720736f6d65206c6f737320616c6f6e6720746865207761792e0a2a2a74686520626f756e747920636f7374207761732063686f73656e20627920612070736575646f2d72616e646f6d206e756d6265722067656e657261746f722e0a000001000000000000001208855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[70,"46000000000000000d0000000000000008000000190823232054686f75676874730a57652068617665207468757320666172206f7074656420666f7220616e20696e74657261637469766520776179206f66206d61726b6574696e6720746f206275696c642074686520636f6d6d756e6974792c20617320776520686f7065207468697320617070726f6163682077696c6c20696d70726f766520746865205f7175616c6974795f20726174686572207468616e206a75737420746865205f7175616e746974795f206f66206f7572206d656d626572732e204d6f7265206f6e20746869732063616e20626520666f756e64205b686572655d2868747470733a2f2f626c6f672e6a6f7973747265616d2e6f72672f7061792d666f722d706c61792f292e20546869732066616c6c7320696e206c696e652077697468207468617420617070726f6163682c20617320697420726571756972657320736f6d65206f66206f7572206c65737320746563686e6963616c20666f6c6c6f7765727320746f206765742066616d696c696172697a65642077697468206c696e757820616e642074686520636f6d6d616e64206c696e652e0a0a496e707574206f6e2074686973206973206d6f7265207468616e2077656c636f6d652e20426f74682066726f6d20746865204a7367656e65736973207465616d2c20636f6e7472696275746f72732c20616e6420636f6d6d756e697479206d656d626572732e000001000000000000003008855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[71,"47000000000000000d00000000000000090000008902232320546f20736565206675727468657220636f6e766572736174696f6e732061626f7574207468697320626f756e747920616e6420746f20706f737420796f757220636f6e747269627574696f6e732c20706c6561736520766973697420746865205b4769744875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f35292e00000100000000000000d808855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[72,"48000000000000000e00000000000000020000008d02232320546f20736565206675727468657220636f6e766572736174696f6e732061626f7574207468697320626f756e747920616e6420746f20706f737420796f757220636f6e747269627574696f6e732c20706c6561736520766973697420746865205b4769744875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f3133292e000001000000000000009809855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[73,"49000000000000000f00000000000000020000001d0b232320476f616c730a54686520676f616c206f66207468697320626f756e74792069732074776f666f6c643a0a0a312e20546f20676574206d6f726520636f6e74656e74206f6e2074686520706c6174666f726d2c20616e6420666f7220737472657373207465737473206f66207468652073746f7261676520616e6420646973747269627574696f6e2073797374656d2c207765206e65656420746f20636f6d70696c652061206c697374206f6620667265656c7920617661696c61626c65206f6e2064656d616e64206d656469612e0a322e2057652061726520747279696e6720746f206275696c6420616e6420616461707461626c6520616e642064796e616d696320636f6e74656e74206469726563746f72792073797374656d20666f72206f7572206e65787420746573746e65742c2060526f6d65602e2054686520737065637320617265207374696c6c2061205749502c20627574207468652067656e6572616c20636f6e6365707420697320646973637573736564205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f6973737565732f3734292e20466f722074686520696e697469616c20696d706c656d656e746174696f6e2c2077652077616e7420746f206c6561726e206d6f72652061626f75742077686174206d65746164617461206973207479706963616c6c79206173736f636961746564207769746820656163682074797065206f66206d656469612c20616e6420686f77206974277320737472756374757265642e0a0a5573696e6720617564696f20617320616e206578616d706c653a0a576861742061726520746865206d6f737420696d706f7274616e7420616e642072656c6576616e74206d6574616461746120666f723a0a0a2a20536f6e67730a2a20416c62756d730a2a20417564696f626f6f6b730a2a20506f64636173747300000100000000000000880a855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[74,"4a000000000000000f00000000000000030000008d03232320526577617264730a4561636820636f6e747269627574696f6e2077696c6c206265206576616c7561746564206f6e20616e20696e646976696475616c2062617369732c206275742077652077696c6c2061737369676e206120627564676574206f66202432303020666f722074686520626f756e74792e0a0a23232053636f7065206f6620576f726b0a536561726368207468652077656220666f72207369746573206f72206f7468657220706c6174666f726d20636f6e7461696e696e6720667265656c7920617661696c61626c65206d6564696120636f6e74656e742e0a00000100000000000000a60a855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[75,"4b000000000000000f00000000000000040000005d0823232044656c6976657261626c65730a2a2050726f76696465206c696e6b7320746f207765627369746573206f72206f74686572206d6564696120706c6174666f726d20636f6e7461696e696e6720226c617267652220616d6f756e7473206f66206d6564696120636f6e74656e742028766964656f2c20617564696f2c20652d626f6f6b73292e0a2a20496e636c756465206173206d75636820696e666f726d6174696f6e20617320706f737369626c652061626f7574207468653a0a20200a20202a2054797065206f6620636f6e74656e742c206966206170706c696361626c65202865672e20766964656f20646f63756d656e746172696573206f6e6c79290a20202a204c6963656e73696e67207265737472696374696f6e732028696620746865207369746520636f6e7461696e732061206d6978206f6620636f6e74656e74207769746820646966666572656e74207265737472696374696f6e73290a0a416e7920696e666f726d6174696f6e2061626f75742074686520666f6c6c6f77696e672077696c6c206164642076616c75652c20616e64207468757320696e63726561736520746865207265776172642e0a0a2a20486f7720746f20646f776e6c6f6164207468652066696c657320616e64206d6574616461746120696e2062756c6b0a2a20416e79206164646974696f6e616c20696e666f726d6174696f6e2074686174206164647265737365732060322e6000000100000000000000b80a855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[76,"4c000000000000000f00000000000000050000005906232320436f6e73747261696e74730a2a20416c6c207375626d697373696f6e73206d75737420626520696e206c696e652077697468206f7572205b546f535d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f70616765732f746f732920746f206265206576616c75617465642e0a0a232320426f756e747920666f726d61740a4f70656e20666f7220616c6c2e0a0a232320446561646c696e650a556e6c6573732077652061726520736174697366696564206265666f726520746869732074696d652c20746865207375626d697373696f6e20646561646c696e65206973207468652031387468206f662041756775737420323031392e0a0a496e2063617365206f662074686520666f726d65722c20746869732073656374696f6e2077696c6c20626520757064617465642c20627574206c656176696e67203234687220666f72207374726167676c65727320746f207375626d69742e0a0a285468697320626f756e7479206973206e6f7720636c6f7365642900000100000000000000e20a855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[77,"4d000000000000000f00000000000000060000008d02232320546f20736565206675727468657220636f6e766572736174696f6e732061626f7574207468697320626f756e747920616e6420746f20706f737420796f757220636f6e747269627574696f6e732c20706c6561736520766973697420746865205b4769744875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f3230292e00000100000000000000120b855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[78,"4e000000000000001500000000000000020000005d0f2320496e737472756374696f6e730a0a54686520696e737472756374696f6e732062656c6f772077696c6c20617373756d6520796f75206172652072756e6e696e672061732060726f6f74602e2054686973206d616b65732074686520696e737472756374696f6e7320736f6d6577686174206561736965722c20627574206c657373207361666520616e6420726f627573742e0a0a4e6f74652074686174207468697320686173206f6e6c79206265656e20746573746564206f6e20667265736820696d61676573206f6620605562756e74752031362e3034204c5453602c20605562756e74752031382e3034204c54536020616e64206044656269616e2038602e0a0a5468652073797374656d206861732073686f776e20746f206265207175697465207265736f7572636520696e74656e736976652c20736f20796f752073686f756c642063686f6f73652061205650532077697468207370656373206571756976616c656e7420746f205b4c696e6f6465203847425d2868747470733a2f2f7777772e6c696e6f64652e636f6d2f70726963696e673f6d73636c6b69643d65616131326530303532393331306534363635633733306436623031623031342675746d5f736f757263653d62696e672675746d5f6d656469756d3d6370632675746d5f63616d706169676e3d4c696e6f64652532302d2532304272616e642532302d2532305365617263682532302d2532304c6f7747656f2675746d5f7465726d3d6c696e6f64652675746d5f636f6e74656e743d4c696e6f646529206f722062657474657220286e6f7420616e20616666696c69617465206c696e6b292e0a0a506c65617365206e6f7465207468617420756e6c6573732074686572652061726520616e79206f70656e2073706f74732028776869636820796f752063616e20636865636b20696e205b50696f6e6565725d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e6565722920756e6465722060526f6c657360202d3e2060417661696c61626c6520526f6c657360292c20796f752077696c6c206e6f742062652061626c6520746f206a6f696e2e204e6f746520746861742077652077696c6c20626520717569746520766967696c616e7420696e20626f6f74696e67206e6f6e2d706572666f726d696e67206053746f726167652050726f766964657273602c20736f20696620796f7520686176652065766572797468696e6720736574757020696e20616476616e63652c20796f7520636f756c642062652074686520717569636b65737420746f2074616b65206120736c6f74207768656e206974206f70656e732100000100000000000000ea52865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[79,"4f00000000000000150000000000000003000000ed0c232320496e697469616c2073657475700a4669727374206f6620616c6c2c20796f75206e65656420612066756c6c792073796e636564205b4a6f7973747265616d2066756c6c206e6f64655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f72656c6561736573292e20466f7220696e737472756374696f6e73206f6e20686f7720746f2073657420746869732075702c20676f205b686572655d282e2e2f76616c696461746f7273292e204e6f7465207468617420796f752063616e2064697372656761726420616c6c207468652070617274732061626f7574206b6579732c20616e64206a75737420696e7374616c6c2074686520736f6674776172652e0a5765207374726f6e676c7920656e636f7572616765207468617420796f752072756e20626f746820746865205b6e6f64655d282e2e2f76616c696461746f72732372756e2d61732d612d736572766963652920616e6420746865206f7468657220736f6674776172652062656c6f77206173206120736572766963652e0a0a46697273742c20796f75206e65656420746f20736574757020606e6f6465602c20606e706d6020616e6420607961726e602e205468697320697320736f6d6574696d652074726f75626c65736f6d6520746f20646f207769746820746865206061707460207061636b616765206d616e616765722e20476f205b686572655d2823696e7374616c6c2d7961726e2d616e642d6e6f64652d776974686f75742d6f6e2d6c696e75782920746f20646f207468697320696620796f7520617265206e6f7420636f6e666964656e7420696e20796f7572206162696c697469657320746f206e617669676174652074686520726f75676820736561732e0a0a4e6f772c2067657420746865206164646974696f6e616c20646570656e64656e636965733a0a6060600a24206170742d67657420757064617465202626206170742d6765742075706772616465202d790a24206170742d67657420696e7374616c6c20676974206275696c642d657373656e7469616c206c6962746f6f6c206175746f6d616b65206175746f636f6e6620707974686f6e0a60606000000100000000000000fc52865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[80,"5000000000000000150000000000000004000000a505232320496e7374616c6c20697066730a546865206e65772073746f72616765206e6f64652075736573205b697066735d2868747470733a2f2f697066732e696f2f29206173206261636b656e642e0a6060600a2420776765742068747470733a2f2f646973742e697066732e696f2f676f2d697066732f76302e342e32312f676f2d697066735f76302e342e32315f6c696e75782d616d6436342e7461722e677a0a2420746172202d76786620676f2d697066735f76302e342e32315f6c696e75782d616d6436342e7461722e677a0a2420636420676f2d697066730a24202e2f6970667320696e6974202d2d70726f66696c65207365727665720a24202e2f696e7374616c6c2e73680a232073746172742069706673206461656d6f6e3a0a242069706673206461656d6f6e0a6060600a496620796f752073656520604461656d6f6e206973207265616479602061742074686520656e642c20796f752061726520676f6f64210a000001000000000000000e53865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[81,"5100000000000000150000000000000005000000b9072323232052756e2069706673206173206120736572766963650a0a546f20656e73757265206869676820757074696d652c2069742773206265737420746f20736574207468652073797374656d2075702061732061206073657276696365602e0a0a4578616d706c652066696c652062656c6f773a0a0a6060600a24206e616e6f202f6574632f73797374656d642f73797374656d2f697066732e736572766963650a2320506173746520696e2065766572797468696e672062656c6f772074686520737461706c6564206c696e650a2d2d2d0a5b556e69745d0a4465736372697074696f6e3d697066730a41667465723d6e6574776f726b2e7461726765740a0a5b536572766963655d0a547970653d73696d706c650a557365723d726f6f740a576f726b696e674469726563746f72793d2f726f6f740a4c696d69744e4f46494c453d383139320a50494446696c653d2f7661722f72756e2f697066732f697066732e7069640a4578656353746172743d2f7573722f6c6f63616c2f62696e2f69706673206461656d6f6e0a526573746172743d6f6e2d6661696c7572650a526573746172745365633d330a53746172744c696d6974496e74657276616c3d3630300a0a5b496e7374616c6c5d0a57616e74656442793d6d756c74692d757365722e7461726765740a606060000001000000000000001a53865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[82,"5200000000000000150000000000000006000000fd065361766520616e6420657869742e20436c6f736520746865206069706673206461656d6f6e602069662069742773207374696c6c2072756e6e696e672c207468656e3a0a6060600a242073797374656d63746c20737461727420697066730a232049662065766572797468696e6720776f726b732c20796f752073686f756c642067657420616e206f75747075742e2056657269667920776974683a0a242073797374656d63746c2073746174757320697066730a2320496620796f752073656520736f6d657468696e6720656c7365207468616e20224461656d6f6e206973207265616479222061742074686520656e642c2074727920616761696e20696e206120636f75706c65206f66207365636f6e64732e0a2320546f20686176652069706673207374617274206175746f6d61746963616c6c79206174207265626f6f743a0a242073797374656d63746c20656e61626c6520697066730a2320496620796f752077616e7420746f2073746f7020697066732c2065697468657220746f2065646974207468652066696c65206f7220736f6d65206f7468657220726561736f6e3a0a242073797374656d63746c2073746f7020697066730a606060000001000000000000002653865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[83,"5300000000000000150000000000000007000000310d232320536574757020486f7374696e670a496e206f7264657220746f20616c6c6f7720666f7220757365727320746f2075706c6f616420616e6420646f776e6c6f61642c20796f75206861766520746f20736574757020686f7374696e672c207769746820616e2061637475616c20646f6d61696e20617320626f7468204368726f6d6520616e642046697265666f78207265717569726573206068747470733a2f2f602e20496620796f7520686176652061202273706172652220646f6d61696e206f7220737562646f6d61696e20796f7520646f6e2774206d696e64207573696e6720666f72207468697320707572706f73652c20676f20746f20796f757220646f6d61696e2072656769737472617220616e6420706f696e7420796f757220646f6d61696e20746f2074686520495020796f752077616e742e20496620796f7520646f6e27742c20796f75206d75737420756e666f7274756e6174656c7920676f207075726368617365206f6e652e0a0a546f20636f6e6669677572652053534c2d63657274696669636174657320746865206561736965737420697320746f20757365205b63616464795d2868747470733a2f2f63616464797365727665722e636f6d2f292c20627574206665656c206672656520746f2074616b65206120646966666572656e7420617070726f6163682e204e6f7465207468617420696620796f7520617265207573696e6720636164647920666f7220636f6d6d65726369616c207573652c20796f75206e65656420746f20616371756972652061206c6963656e73652e20506c6561736520636865636b207468656972207465726d7320616e64206d616b65207375726520796f7520636f6d706c792077697468207768617420697320636f6e7369646572656420706572736f6e616c207573652e0a0a6060600a24206375726c2068747470733a2f2f67657463616464792e636f6d207c2062617368202d7320706572736f6e616c0a2320416c6c6f772063616464792061636365737320746f20726571756972656420706f7274733a0a242073657463617020276361705f6e65745f62696e645f736572766963653d2b657027202f7573722f6c6f63616c2f62696e2f63616464790a2420756c696d6974202d6e20383139320a606060000001000000000000003253865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[84,"54000000000000001500000000000000080000000d09436f6e666967757265206361646479207769746820606e616e6f207e2f436164647966696c656020616e6420706173746520696e2074686520666f6c6c6f77696e673a0a0a6060600a232053746f72616765204e6f6465204150490a68747470733a2f2f3c796f75722e636f6f6c2e75726c3e207b0a2020202070726f7879202f206c6f63616c686f73743a33303030207b0a20202020202020207472616e73706172656e740a202020207d0a20202020686561646572202f207b0a20202020202020204163636573732d436f6e74726f6c2d416c6c6f772d4f726967696e20202a0a20202020202020204163636573732d436f6e74726f6c2d416c6c6f772d4d6574686f647320224745542c205055542c20484541442c204f5054494f4e53220a202020207d0a7d0a6060600a4e6f7720796f752063616e20636865636b20696620796f7520636f6e6669677572656420636f72726563746c792c20776974683a0a6060600a24202f7573722f6c6f63616c2f62696e2f6361646479202d2d76616c6964617465202d2d636f6e66207e2f436164647966696c650a232057686963682073686f756c642072657475726e3a0a436164647966696c652069732076616c69640a0a2320596f752063616e206e6f772072756e20636164647920776974683a0a24202873637265656e29202f7573722f6c6f63616c2f62696e2f6361646479202d2d6167726565202d2d656d61696c203c796f75725f6d61696c40736f6d652e646f6d61696e3e202d2d636f6e66207e2f436164647966696c650a606060000001000000000000004453865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[85,"55000000000000001500000000000000090000002d092323232052756e206361646479206173206120736572766963650a546f20656e73757265206869676820757074696d652c2069742773206265737420746f20736574207468652073797374656d2075702061732061206073657276696365602e0a0a4578616d706c652066696c652062656c6f773a0a0a6060600a24206e616e6f202f6574632f73797374656d642f73797374656d2f63616464792e736572766963650a2320506173746520696e2065766572797468696e672062656c6f772074686520737461706c6564206c696e650a2d2d2d0a5b556e69745d0a4465736372697074696f6e3d526576657273652070726f787920666f722073746f72616765206e6f64650a41667465723d6e6574776f726b2e7461726765740a0a5b536572766963655d0a557365723d726f6f740a576f726b696e674469726563746f72793d2f726f6f740a4c696d69744e4f46494c453d383139320a50494446696c653d2f7661722f72756e2f63616464792f63616464792e7069640a4578656353746172743d2f7573722f6c6f63616c2f62696e2f6361646479202d6167726565202d656d61696c203c796f75725f6d61696c40736f6d652e646f6d61696e3e202d70696466696c65202f7661722f72756e2f63616464792f63616464792e706964202d636f6e66202f726f6f742f436164647966696c650a526573746172743d6f6e2d6661696c7572650a53746172744c696d6974496e74657276616c3d3630300a0a0a5b496e7374616c6c5d0a57616e74656442793d6d756c74692d757365722e7461726765740a606060000001000000000000005653865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[86,"560000000000000015000000000000000a00000061035361766520616e6420657869742e20436c6f736520606361646479602069662069742773207374696c6c2072756e6e696e672c207468656e3a0a6060600a242073797374656d63746c2073746172742063616464790a232049662065766572797468696e6720776f726b732c20796f752073686f756c642067657420616e206f75747075742e2056657269667920776974683a0a242073797374656d63746c207374617475732063616464790a232057686963682073686f756c642070726f6475636520736f6d657468696e67206c696b653a0a6060600a000001000000000000008653865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[87,"570000000000000015000000000000000b000000990d6060600a2d2d2d0ae2978f2063616464792e73657276696365202d20526576657273652070726f787920666f722073746f72616765206e6f64650a2020204c6f616465643a206c6f6164656420282f6574632f73797374656d642f73797374656d2f63616464792e736572766963653b2064697361626c6564290a2020204163746976653a20616374697665202872756e6e696e67292073696e63652054756520323031392d30362d31382031373a31353a3434205554433b2036732061676f0a204d61696e205049443a203536313320286361646479290a2020204347726f75703a202f73797374656d2e736c6963652f63616464792e736572766963650a2020202020202020202020e29494e2948035363133202f7573722f6c6f63616c2f62696e2f6361646479202d616772656520656d61696c203c796f75725f6d61696c40736f6d652e646f6d61696e3e202d70696466696c65202f7661722f72756e2f63616464792f63616464792e706964202d636f6e66202f726f6f742f436164647966696c650a0a4a756e2031382031373a31353a3434206c6f63616c686f73742073797374656d645b315d3a205374617274656420526576657273652070726f787920666f7220686f7374656420617070732e0a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2041637469766174696e6720707269766163792066656174757265732e2e2e20646f6e652e0a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2053657276696e67204854545053206f6e20706f7274203434330a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2053657276696e672048545450206f6e20706f72742038300a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a2d2d2d0a60606000000100000000000000c853865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[88,"580000000000000015000000000000000c000000c5026060600a2320546f2068617665206361646479207374617274206175746f6d61746963616c6c79206174207265626f6f743a0a242073797374656d63746c20656e61626c652063616464790a2320496620796f752077616e7420746f2073746f702063616464792c2065697468657220746f2065646974207468652066696c65206f7220736f6d65206f7468657220726561736f6e3a0a242073797374656d63746c2073746f702063616464790a60606000000100000000000000da53865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[89,"590000000000000015000000000000000d000000ad07232320496e7374616c6c20616e64205365747570207468652053746f72616765204e6f64650a0a46697273742c20796f75206e65656420746f20636c6f6e6520746865207265706f2e0a0a6060600a242067697420636c6f6e652068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f73746f726167652d6e6f64652d6a6f7973747265616d2e6769740a242063642073746f726167652d6e6f64652d6a6f7973747265616d0a24207961726e0a2320546573742074686174206974277320776f726b696e6720776974683a0a24207961726e2072756e20636f6c6f73737573202d2d68656c700a6060600a596f752063616e2073657420746865205041544820746f2061766f69642074686520607961726e2072756e60207072656669782062793a0a606e616e6f207e2f2e626173685f70726f66696c65600a616e6420617070656e643a0a6060600a2320436f6c6f737375730a616c69617320636f6c6f737375733d222f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d2f7061636b616765732f636f6c6f737375732f62696e2f636c692e6a73220a6060600a5468656e3a0a602e207e2f2e626173685f70726f66696c65600a4e6f772c20796f752063616e20746573742060636f6c6f73737573202d2d68656c70602e00000100000000000000f253865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[90,"5a0000000000000015000000000000000e000000bd04232323205570646174652053746f72616765204e6f64650a0a496620796f75206e65656420746f2075706461746520796f75722073746f72616765206e6f64652c20796f752077696c6c206669727374206e65656420746f2073746f702074686520736f6674776172652e0a0a6060600a2320496620796f75206172652072756e6e696e6720617320736572766963652028776869636820796f752073686f756c64290a242073797374656d63746c2073746f702073746f726167652d6e6f64650a24206364202f706174682f746f2f73746f726167652d6e6f64652d6a6f7973747265616d0a2320417373756d696e6720796f7520636c6f6e65642061732073686f776e2061626f76650a24206769742070756c6c206f726967696e206d61737465720a24207961726e0a606060000001000000000000000454865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[91,"5b0000000000000015000000000000000f000000d90c2323232047656e6572617465206b65797320616e64206d656d62657273686970730a0a436c69636b205b686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672920746f206f70656e20746865206050696f6e656572206170706020696e20796f75722062726f777365722e205468656e20666f6c6c6f7720696e737472756374696f6e73205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b236765742d737461727465642920746f2067656e6572617465206120736574206f6620604b657973602c2067657420746f6b656e732c20616e64207369676e20757020666f72206120604d656d62657273686970602e205468697320606b6579602077696c6c20626520726566657272656420746f2061732074686520606d656d62657260206b65792066726f6d206e6f77206f6e2e204d616b65207375726520746f207361766520746865206035596f75724a6f794d656d626572416464726573732e6a736f6e602066696c652e204e6f7465207468617420796f75206e65656420746f206b656570207468652072657374206f6620796f757220746f6b656e73206173207374616b6520746f206265636f6d652061206053746f726167652050726f7669646572602e0a0a2d2d2d0a0a417373756d696e6720796f75206172652072756e6e696e67207468652073746f72616765206e6f6465206f6e20612056505320766961207373682c206f6e20796f7572206c6f63616c206d616368696e653a0a0a6060600a2320476f20746865206469726563746f727920776865726520796f7520736176656420796f7572203c35596f75724a6f794d656d626572416464726573732e6a736f6e3e3a0a2420736370203c35596f75724a6f794d656d626572416464726573732e6a736f6e3e203c757365723e403c796f75722e7670732e69702e616464726573733e3a2f706174682f746f2f73746f726167652d6e6f64652d6a6f7973747265616d2f0a6060600a596f7572206035596f75724a6f794d656d626572416464726573732e6a736f6e602073686f756c64206e6f7720626520776865726520796f752077616e742069742e000001000000000000001c54865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[92,"5c00000000000000150000000000000010000000210d2323232320536574757020616e6420636f6e666967757265207468652073746f72616765206e6f64650a0a2a2a4d616b65207375726520796f75277265205b4a6f7973747265616d2066756c6c206e6f64655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d292069732066756c6c792073796e636564206265666f726520796f75206d6f766520746f20746865206e6578742073746570287329212a2a0a0a4f6e20746865206d616368696e652f56505320796f752077616e7420746f2072756e20796f75722073746f72616765206e6f64653a0a0a6060600a2320496620796f7520617265206e6f7420616c726561647920696e2074686174206469726563746f72793a0a242063642073746f726167652d6e6f64652d6a6f7973747265616d0a2320496620796f7520636f6e6669677572656420796f7572202e626173685f70726f66696c653a0a2420636f6c6f73737573207369676e7570203c35596f75724a6f794d656d626572416464726573732e6a736f6e3e0a2320496620796f75206469646e277420636f6e66696775726520796f7572202e626173685f70726f66696c653a0a24207961726e2072756e20636f6c6f73737573207369676e7570203c35596f75724a6f794d656d626572416464726573732e6a736f6e3e0a23204e6f74652074686174207468652072657374206f66207468652067756964652077696c6c20617373756d6520796f752064696420696e206661637420636f6e666967757265202e626173685f70726f66696c6520616e6420646f6e2774206e65656420227961726e2072756e220a2320466f6c6c6f772074686520696e737472756374696f6e732061732070726f6d707465642e20466f722065617365206f66207573652c2069742773206265737420746f206e6f742073657420612070617373776f72642e2e2e20496620796f7520646f2c2072656d656d62657220746f206164643a0a23202d2d70617373706872617365203c796f75725f706173737068726173653e20617320616e20617267756d656e742065766572792074696d6520796f752073746172742074686520636f6c6f73737573207365727665722e0a6060600a000001000000000000003454865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[93,"5d00000000000000150000000000000011000000490d546869732070726f64756365732061206e6577206b657920603c35596f757253746f72616765416464726573732e6a736f6e3e602c20616e642070726f6d70747320796f7520746f206f70656e20746865202261707022202850696f6e656572292e204d616b652073757265207468617420796f7520796f75722063757272656e742f64656661756c7420697320746865206035596f75724a6f794d656d6265724164647265737360206b65792e20416674657220796f7520636c69636b20605374616b65602c20796f752077696c6c207365652061206e6f74696669636174696f6e20696e2074686520746f7020726967687420636f726e65722e20496620796f752067657420616e206572726f722c2074686973206d6f7374206c696b656c79206d65616e7320616c6c2074686520736c6f7473206172652066756c6c2e20556e666f7274756e6174656c792c2074686973206d65616e7320796f75206861766520746f20696d706f72742074686520603c35596f757253746f72616765416464726573732e6a736f6e3e6020746f207265636f76657220796f757220746f6b656e732e0a0a4966206974207375636365656465642c2070726f636565642061732073686f776e2062656c6f773a0a0a6060600a2320546f206d616b6520737572652065766572797468696e672069732072756e6e696e6720736d6f6f74686c792c20697420776f756c642062652068656c7066756c20746f2072756e20776974682044454255473a0a242044454255473d2a20636f6c6f7373757320736572766572202d2d6b65792d66696c65203c35596f757253746f72616765416464726573732e6a736f6e3e202d2d7075626c69632d75726c2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a2320496620796f75207365742061207061737370687261736520666f72203c35596f757253746f72616765416464726573732e6a736f6e3e3a0a242044454255473d2a20636f6c6f7373757320736572766572202d2d6b65792d66696c65203c35596f757253746f72616765416464726573732e6a736f6e3e202d2d70617373706872617365203c796f75725f706173737068726173653e202d2d7075626c69632d75726c2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a606060000001000000000000004054865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[94,"5e000000000000001500000000000000120000005109496620796f7520646f20746869732c20796f752073686f756c642073656520736f6d657468696e67206c696b653a0a0a6060600a646973636f766572793a3a7075626c697368207b206e616d653a2027516d507777733537366e33427945364351557655743364676d6f6b6b32584e32634a67505948576f4d3653535553272c0a646973636f766572793a3a7075626c69736820202076616c75653a20272f697066732f516d6544415747526a62577836664d43787474393559545367546742686874626b317173476b746552586145535427207d202b3339316d730a6060600a596f752063616e206a75737420646f207468697320696e73746561642c206275742069742077696c6c206d616b65206974206d6f726520646966666963756c7420746f2064656275672e2e2e0a6060600a2420636f6c6f7373757320736572766572202d2d6b65792d66696c65203c35596f757253746f72616765416464726573732e6a736f6e3e202d2d7075626c69632d75726c2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a6060600a49662065766572797468696e6720697320776f726b696e6720736d6f6f74686c792c20796f752077696c6c206e6f772073746172742073796e63696e67207468652060636f6e74656e74206469726563746f7279600a4e6f7465207468617420756e6c65737320796f752072756e2074686973206973206120736572766963652c20796f75206e6f77206861766520746f206f70656e2061207365636f6e64207465726d696e616c20666f72207468652072656d61696e696e672073746570732e000001000000000000006454865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[95,"5f0000000000000015000000000000001300000069092323232320436865636b207468617420796f75206172652073796e63696e670a496e20796f7572207365636f6e64207465726d696e616c2077696e646f773a0a6060600a24206970667320626974737761702077616e746c6973740a2d2d2d0a23204f75747075742073686f756c642062652061206c6f6e67206c697374206f66206b6579732c2065672e204e6f74652074686174206974206d696768742074616b65206120666577206d696e75746573206265666f7265207468652061637475616c20636f6e74656e742066726f6d20746865204a6f7973747265616d20636f6e74656e74206469726563746f72792073686f77732075702e0a2d2d2d0a516d65737a65426a4245724651726b6951506838516854733368664345474a754b326a4e6f706174486e7073316b0a2e2e2e0a516d664362557359684b426d72646f7033794672657271564b77424a76593574627056316366394378334c314a380a6060600a496620796f7520646964207468697320696d6d6564696174656c79206166746572204649525354207374617274696e6720796f75722073746f72616765206e6f64652c20746865206077616e746c69737460206d6967687420626520656d7074792e20476976652069742061206d696e7574652c20616e642069742073686f756c6420636f6e7461696e206174206c6561737420746865206e756d626572206f66206974656d7320696e2074686520636f6e74656e74206469726563746f72792e20596f752063616e20616c736f20636865636b207768617420636f6e74656e7420796f7520686176652073746f7265642062793a000001000000000000007654865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[96,"600000000000000015000000000000001400000019096060600a697066732072656673206c6f63616c0a2d2d2d0a23204f75747075742073686f756c6420626520616e206576656e206c6f6e676572206c697374206f66206b6579732c2065672e0a2d2d2d0a516d65737a65426a4245724651726b6951506838516854733368664345474a754b326a4e6f706174486e7073316b0a516d657a756d33415764786b6d31417448653335445a475764666854513450566d6d5a61744777444c36385245530a2e2e2e0a516d6643436a43357739777854466f41614a3934377373326f63316a783652326d4d39786a55374363727135354d0a516d664362557359684b426d72646f7033794672657271564b77424a76593574627056316366394378334c314a380a6060600a0a496e20796f7572206669727374207465726d696e616c2028776865726529207468652073746f72616765206e6f64652069732072756e6e696e672c20796f752077696c6c20736f6f6e20656e6f7567682073656520746869733a0a6060600a2e2e2e0a6a6f7973747265616d3a72756e74696d653a62617365205458207374617475733a2046696e616c697a6564202b376d730a6a6f7973747265616d3a72756e74696d653a626173652054582046696e616c697a65642e202b316d730a6a6f7973747265616d3a73796e632073796e632072756e20636f6d706c657465202b306d730a6060600a0a496e20746865207365636f6e64207465726d696e616c3a0a6060600a2420697066732072656673206c6f63616c0a6060600a53686f756c642072657475726e206e6f7468696e672e000001000000000000009454865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[97,"6100000000000000150000000000000015000000690c2323232052756e2073746f72616765206e6f6465206173206120736572766963650a0a546f20656e73757265206869676820757074696d652c2069742773206265737420746f20736574207468652073797374656d2075702061732061206073657276696365602e204e6f7465207468617420746869732077696c6c206e6f7420776f726b20696620796f752073657420612070617373776f726420666f7220796f757220603c35596f757253746f72616765416464726573732e6a736f6e3e20602e0a0a4578616d706c652066696c652062656c6f773a0a0a6060600a24206e616e6f202f6574632f73797374656d642f73797374656d2f73746f726167652d6e6f64652e736572766963650a2320506173746520696e2065766572797468696e672062656c6f772074686520737461706c6564206c696e650a2d2d2d0a5b556e69745d0a4465736372697074696f6e3d4a6f7973747265616d2053746f72616765204e6f64650a41667465723d6e6574776f726b2e74617267657420697066732e73657276696365206a6f7973747265616d2d6e6f64652e736572766963650a0a5b536572766963655d0a557365723d726f6f740a576f726b696e674469726563746f72793d2f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d0a4c696d69744e4f46494c453d383139320a456e7669726f6e6d656e743d44454255473d2a0a4578656353746172743d2f7573722f6c6f63616c2f6c69622f6e6f64656a732f6e6f64652d7631302e31362e302d6c696e75782d7836342f62696e2f6e6f6465205c0a20202020202020207061636b616765732f636f6c6f737375732f62696e2f636c692e6a73205c0a20202020202020202d2d6b65792d66696c65203c35596f757253746f72616765416464726573732e6a736f6e3e202d2d7075626c69632d75726c2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a526573746172743d6f6e2d6661696c7572650a53746172744c696d6974496e74657276616c3d3630300a0a5b496e7374616c6c5d0a57616e74656442793d6d756c74692d757365722e7461726765740a60606000000100000000000000ac54865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[98,"620000000000000015000000000000001600000095085361766520616e6420657869742e20436c6f73652060636f6c6f73737573602069662069742773207374696c6c2072756e6e696e672c207468656e3a0a6060600a242073797374656d63746c2073746172742073746f726167652d6e6f64650a232049662065766572797468696e6720776f726b732c20796f752073686f756c642067657420616e206f75747075742e2056657269667920776974683a0a242073797374656d63746c207374617475732073746f726167652d6e6f64650a232057686963682073686f756c642070726f6475636520736f6d657468696e67206c696b653a0a2d2d2d0ae2978f2073746f726167652d6e6f64652e73657276696365202d204a6f7973747265616d2053746f72616765204e6f64650a2020204c6f616465643a206c6f6164656420282f6574632f73797374656d642f73797374656d2f73746f726167652d6e6f64652e736572766963653b2064697361626c6564290a2020204163746976653a20616374697665202872756e6e696e67292073696e63652054756520323031392d30362d31382031373a32353a3431205554433b20346d696e203139732061676f0a204d61696e205049443a20353635342028636f6c6f73737573290a2020204347726f75703a202f73797374656d2e736c6963652f73746f726167652d6e6f64652e736572766963650a2020202020202020202020e29494e294803536353420636f6c6f737375730a20202020202020202020200a60606000000100000000000000e854865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[99,"6300000000000000150000000000000017000000f10b6060600a0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54206a6f7973747265616d3a7574696c3a72616e676573203d20476f74206368756e6b207769746820627974652072616e6765205b20313535353936382c2031353630303633205d0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54206a6f7973747265616d3a7574696c3a72616e676573203d20476f74206368756e6b207769746820627974652072616e6765205b20313536303036342c2031353634313539205d0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54206a6f7973747265616d3a7574696c3a72616e6765732043757272656e74207265717565737465642072616e6765206973205b2033333732323834382c203434313935393833205d0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54206a6f7973747265616d3a7574696c3a72616e6765732049676e6f72696e67206368756e6b3b206974206973206f7574206f662072616e67652e0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54206a6f7973747265616d3a7574696c3a72616e676573203d20476f74206368756e6b207769746820627974652072616e6765205b20313536343136302c2031353638323535205d0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54200a2d2d2d0a606060000001000000000000001255865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[100,"640000000000000015000000000000001800000079036060600a2320546f206861766520636f6c6f73737573207374617274206175746f6d61746963616c6c79206174207265626f6f743a0a242073797374656d63746c20656e61626c6520636f6c6f737375730a2320496620796f752077616e7420746f2073746f70207468652073746f72616765206e6f64652c2065697468657220746f2065646974207468652073746f726167652d6e6f64652e736572766963652066696c65206f7220736f6d65206f7468657220726561736f6e3a0a242073797374656d63746c2073746f702073746f726167652d6e6f64650a606060000001000000000000003055865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[101,"6500000000000000150000000000000019000000e904232323205665726966792065766572797468696e6720697320776f726b696e670a0a496e20796f75722062726f777365722c2066696e6420636c69636b206f6e20616e2075706c6f61646564206d656469612066696c652e20436f70792074686520603c636f6e74656e742d69643e602c2069652e207768617420636f6d657320616674657220746865206c61737420602f602e0a0a5468656e2070617374652074686520666f6c6c6f77696e6720696e20796f75722062726f777365723a0a0a6068747470733a2f2f3c796f75722e636f6f6c2e75726c3e2f61737365742f76302f3c636f6e74656e742d69643e602e0a0a496620796f7520676574206120626c61636b2073637265656e20776974682061206d6564696120706c617965722c2074686174206d65616e7320796f752061726520676f6f6421000001000000000000004855865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[102,"6600000000000000160000000000000002000000590b232320506f7274206e6f74207365740a0a496620796f75206765742074686973206572726f723a0a6060600a547970654572726f72205b4552525f494e56414c49445f4f50545f56414c55455d3a205468652076616c756520227b20706f72743a20747275652c20686f73743a20273a3a27207d2220697320696e76616c696420666f72206f7074696f6e20226f7074696f6e73220a202020206174205365727665722e6c697374656e20286e65742e6a733a313435303a39290a2020202061742050726f6d69736520282f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d2f7061636b616765732f636f6c6f737375732f62696e2f636c692e6a733a3132393a3132290a202020206174206e65772050726f6d69736520283c616e6f6e796d6f75733e290a2020202061742073746172745f657870726573735f61707020282f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d2f7061636b616765732f636f6c6f737375732f62696e2f636c692e6a733a3132303a3130290a2020202061742073746172745f616c6c5f736572766963657320282f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d2f7061636b616765732f636f6c6f737375732f62696e2f636c692e6a733a3133383a3130290a202020206174204f626a6563742e73657276657220282f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d2f7061636b616765732f636f6c6f737375732f62696e2f636c692e6a733a3332383a3131290a2020202061742070726f636573732e5f7469636b43616c6c6261636b2028696e7465726e616c2f70726f636573732f6e6578745f7469636b2e6a733a36383a37290a6060600a0a4974206d6f7374206c696b656c79206d65616e7320796f757220706f7274206973206e6f74207365742c2028616c74686f7567682069742073686f756c642064656661756c7420746f2033303030292e000001000000000000007855865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[103,"6700000000000000160000000000000003000000c9066060600a2420636f6c6f73737573202d2d68656c700a232053686f756c64206c69737420746865207061746820746f20796f75722063757272656e7420636f6e6669672066696c652e0a2420636174202f706174682f746f2f2e636f6e6669672f636f6e66696773746f72652f406a6f7973747265616d2f636f6c6f737375732e6a736f6e0a232073686f756c642072657475726e20736f6d657468696e67206c696b653a0a2d2d2d0a7b0a2022706f7274223a20333030302c0a202273796e63506572696f64223a203330303030302c0a20227075626c696355726c223a202268747470733a2f2f3c796f75722e636f6f6c2e75726c3e222c0a20226b657946696c65223a20222f706174682f746f2f3c35596f757253746f72616765416464726573732e6a736f6e3e220a7d0a6060600a4966206022706f7274223a203c6e3e60206973206d697373696e672c206f72206e6f742061206e756d6265722c2070617373207468653a0a602d70203c6e3e206020617267756d656e74206f72206564697420796f757220636f6e6669672066696c652c20776865726520603c6e3e6020636f756c6420626520333030302e000001000000000000008a55865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[104,"68000000000000001600000000000000040000004909232320496e7374616c6c207961726e20616e64206e6f6465206f6e206c696e75780a0a476f205b686572655d2868747470733a2f2f6e6f64656a732e6f72672f656e2f646f776e6c6f61642f2920616e642066696e6420746865206e657765737420284c5453292062696e61727920666f7220796f75722064697374726f2e20546869732067756964652077696c6c20617373756d652036342d626974206c696e75782c20616e6420606e6f64652d7631302e31362e30602e0a0a496620796f752077616e7420746f20696e7374616c6c2061732060726f6f74602c20736f20796f757220757365722063616e2075736520606e706d6020776974686f757420607375646f602070726976696c656765732c20676f205b686572655d2823696e7374616c6c2d61732d726f6f74292e0a0a496620796f752077616e7420746f20696e7374616c6c20617320616e6f74686572207573657220286d757374206861766520607375646f602070726976696c65676573292c20676f205b686572655d2823696e7374616c6c2d61732d757365722d776974682d7375646f2d70726976696c65676573292e0a0a416c7465726e6174697665732073756368206173205b6e766d5d2868747470733a2f2f6769746875622e636f6d2f6e766d2d73682f6e766d29206f72205b6e6f6465736f757263655d2868747470733a2f2f6769746875622e636f6d2f6e6f6465736f757263652f646973747269627574696f6e732f626c6f622f6d61737465722f524541444d452e6d64292061726520616c736f20776f72746820636f6e7369646572696e672e000001000000000000009c55865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[105,"69000000000000001600000000000000050000000d092323232320496e7374616c6c20617320526f6f740a546869732073656374696f6e20617373756d657320796f752061726520696e7374616c6c696e672061732060726f6f74602e20497420616c736f2064656d6f6e7374726174657320686f7720796f752063616e2070726f7669646520616e6f7468657220757365722061636365737320776974686f757420686176696e6720746f2075736520607375646f602e20497420646f65736e2774206d6174746572206966207573657220606a6f7973747265616d602068617320607375646f602070726976696c65676573206f72206e6f742e0a0a6060600a2420776765742068747470733a2f2f6e6f64656a732e6f72672f646973742f7631302e31362e302f6e6f64652d7631302e31362e302d6c696e75782d7836342e7461722e787a0a24206d6b646972202d70202f7573722f6c6f63616c2f6c69622f6e6f64656a730a2420746172202d784a7666206e6f64652d7631302e31362e302d6c696e75782d7836342e7461722e787a202d43202f7573722f6c6f63616c2f6c69622f6e6f64656a730a24206e616e6f207e2f2e626173685f70726f66696c650a2d2d2d0a417070656e642074686520666f6c6c6f77696e67206c696e65733a0a2d2d2d0a23204e6f64656a730a56455253494f4e3d7631302e31362e300a44495354524f3d6c696e75782d7836340a6578706f727420504154483d2f7573722f6c6f63616c2f6c69622f6e6f64656a732f6e6f64652d2456455253494f4e2d2444495354524f2f62696e3a24504154480a60606000000100000000000000c055865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[106,"6a0000000000000016000000000000000600000045045361766520616e6420657869742c207468656e3a0a6060600a2420736f75726365207e2f2e626173685f70726f66696c650a23205665726966792076657273696f6e3a0a24206e6f6465202d760a24206e706d202d760a24206e7078202d760a2320496e7374616c6c207961726e0a24206e706d20696e7374616c6c207961726e202d670a24206e706d2069206e6f64652d67797040352e302e300a232049662065766572797468696e67206c6f6f6b73206f6b2c20616e6420796f752077616e7420746f20616c6c6f772075736572206a6f7973747265616d206163636573733a0a242063686f776e202d52206a6f7973747265616d202f7573722f6c6f63616c2f6c69622f6e6f64656a730a60606000000100000000000000d855865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[107,"6b000000000000001600000000000000070000002d074c6f6720696e20746f206a6f7973747265616d3a0a6060600a24207375206a6f7973747265616d0a242063640a232052657065617420746865202e626173685f70726f66696c6520636f6e6669673a0a24206e616e6f207e2f2e626173685f70726f66696c650a2d2d2d0a417070656e642074686520666f6c6c6f77696e67206c696e65733a0a2d2d2d0a23204e6f64656a730a56455253494f4e3d7631302e31362e300a44495354524f3d6c696e75782d7836340a6578706f727420504154483d2f7573722f6c6f63616c2f6c69622f6e6f64656a732f6e6f64652d2456455253494f4e2d2444495354524f2f62696e3a24504154480a6060600a5361766520616e6420657869742c207468656e3a0a6060600a2420736f75726365207e2f2e626173685f70726f66696c650a2320566572696679207468617420697420776f726b733a0a24206e6f6465202d760a24206e706d202d760a24206e7078202d760a24207961726e202d760a6060600a0a596f752068617665206e6f77207375636365737366756c6c7920696e7374616c6c656420746865206e657765737420284c5453292076657273696f6e73206f6620606e706d602c20606e6f64656020616e6420607961726e602e00000100000000000000e455865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[108,"6c00000000000000160000000000000008000000c90b2323232320496e7374616c6c2061732075736572207769746820607375646f602070726976696c656765730a546869732073656374696f6e20617373756d6573207468652073746570732061726520706572666f726d6564206173207573657220606a6f7973747265616d60207769746820607375646f602070726976696c656765732e0a0a417320606a6f7973747265616d600a6060600a2420776765742068747470733a2f2f6e6f64656a732e6f72672f646973742f7631302e31362e302f6e6f64652d7631302e31362e302d6c696e75782d7836342e7461722e787a0a24207375646f206d6b646972202d70202f7573722f6c6f63616c2f6c69622f6e6f64656a730a24207375646f20746172202d784a7666206e6f64652d7631302e31362e302d6c696e75782d7836342e7461722e787a202d43202f7573722f6c6f63616c2f6c69622f6e6f64656a730a24206e616e6f207e2f2e626173685f70726f66696c650a2d2d2d0a417070656e642074686520666f6c6c6f77696e67206c696e65733a0a2d2d2d0a23204e6f64656a730a56455253494f4e3d7631302e31362e300a44495354524f3d6c696e75782d7836340a6578706f727420504154483d2f7573722f6c6f63616c2f6c69622f6e6f64656a732f6e6f64652d2456455253494f4e2d2444495354524f2f62696e3a24504154480a6060600a5361766520616e6420657869742c207468656e3a0a6060600a2420736f75726365207e2f2e626173685f70726f66696c650a24207375646f2063686f776e202d52206a6f7973747265616d202f7573722f6c6f63616c2f6c69622f6e6f64656a730a2320566572696679207468617420697420776f726b733a0a24206e6f6465202d760a24206e706d202d760a24206e7078202d760a2320496e7374616c6c207961726e0a24206e706d20696e7374616c6c207961726e202d670a2320566572696679207468617420697420776f726b733a0a24207961726e202d760a24206e706d2069206e6f64652d67797040352e302e300a606060000001000000000000000e56865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[109,"6d00000000000000160000000000000009000000f105496620796f752077616e742060726f6f746020746f2062652061626c6520746f2075736520606e706d602061732077656c6c3a0a0a6060600a24207375646f2073750a24206e616e6f207e2f2e626173685f70726f66696c650a2d2d2d0a417070656e642074686520666f6c6c6f77696e67206c696e65733a0a2d2d2d0a23204e6f64656a730a56455253494f4e3d7631302e31362e300a44495354524f3d6c696e75782d7836340a6578706f727420504154483d2f7573722f6c6f63616c2f6c69622f6e6f64656a732f6e6f64652d2456455253494f4e2d2444495354524f2f62696e3a24504154480a6060600a5361766520616e6420657869742c207468656e3a0a0a602420736f75726365207e2f2e626173685f70726f66696c65600a0a596f752068617665206e6f77207375636365737366756c6c7920696e7374616c6c656420746865206e657765737420284c5453292076657273696f6e73206f6620606e706d602c20606e6f64656020616e6420607961726e602e0a000001000000000000002656865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[110,"6e00000000000000170000000000000002000000c90a23232047656e6572617465204b6579730a436c69636b20604d79204b6579736020696e2074686520736964656261722c20616e64207468656e2073656c656374207468652060437265617465204b65797360207461622e205468652063686f6963657320796f75206d616b652066726f6d20686572652c20646570656e64732061206c6974746c65206f6e20686f7720796f752077616e7420746f2070617274696369706174652e20496620796f75206a7573742077616e7420746f20706c61792061726f756e642c20796f752063616e206a75737420666f6c6c6f77207468652064656661756c74732e20496620796f752068617665206120737065636966696320726f6c6520696e206d696e642c20796f75206d696768742077616e7420746f20666f6c6c6f7720746865206c696e6b7320746f2074686520696e737472756374696f6e7320696e20746865206865616465722c206f7220616363657373207468656d20766961205b41637469766520526f6c65735d28236163746976652d726f6c6573292e0a0a496e20616e79206576656e742c2074686520604b657973602077696c6c2062652073746f72656420696e20796f75722062726f7773657220666f7220796f757220636f6e76656e69656e63652c2062757420697427732073616665737420746f207361766520796f757220605261772073656564602028796f75206e65656420697420666f72206365727461696e20726f6c65732920616e64207361766520746865202e6a736f6e2066696c652e2054686520604d6e656d6f6e6963602063616e20616c736f206265207573656420746f20726573746f726520796f757220604b657973602c206275742077696c6c206e6f7420646f20796f7520616e7920676f6f6420696620796f752077616e7420746f206265636f6d652061206056616c696461746f72602e00000100000000000000bc56865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[111,"6f00000000000000170000000000000003000000e10a2323204765742061204d656d626572736869700a546f206265636f6d65206120604d656d62657260206f662074686520706c6174666f726d2c20796f75206e65656420736f6d6520746f6b656e732e2045697468657220636c69636b2074686520604672656520546f6b656e7360206c696e6b2c206f7220636c69636b205b686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f666175636574292e20416674657220796f7520736f6c7665642074686520636170746368612c20796f757220746f6b656e732073686f756c64206265206f6e207468656972207761792e0a0a2a2a4e6f74652a2a0a416c6c207472616e73616374696f6e73202865787472696e736963732920636f73742031204a6f7920746f6b656e2c20736f20796f752073686f756c6420616c77617973206b6565702061206c6974746c6520696e20726573657276652c206173207468697320616c736f206170706c69657320746f207375636820616374696f6e7320617320766f74696e672c20756e7374616b696e672c20616e6420706f7374696e6720696e20746865206e6577205b666f72756d5d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f666f72756d292e0a0a4e6f772c20636c69636b20604d656d626572736020696e2074686520736964656261722c20616e642073656c656374207468652060526567697374657260207461622e2043686f6f73652061206048616e646c652f6e69636b6e616d65602e204f7074696f6e616c6c792c2070726f766964652061206c696e6b20746f20616e20696d6167652066696c6520666f7220796f7572206176617461722c20616e642066696c6c20696e20746865206d61726b646f776e20656e61626c6564206041626f757460206669656c642e00000100000000000000c856865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[112,"700000000000000018000000000000000200000015082320496e737472756374696f6e730a556e6c696b65206d6f7374206f6620746865206f746865722063757272656e7420616e642066757475726520726f6c6573206f6e20746865204a6f7973747265616d20506c6174666f726d2c206265636f6d696e6720612060436f756e63696c204d656d62657260206f7220766f74696e67206f6e2070726f706f73616c73207265717569726573206e6f20657874726120736f6674776172652e2045766572797468696e672063616e20626520646f6e6520696e207468652062726f777365722c20627920676f696e67205b686572655d28687474703a2f2f746573746e65742e6a6f7973747265616d2e6f7267292e0a0a2a2a4e6f74652a2a0a416674657220696e74726f647563696e6720604d656d62657273686970736020746f2074686520706c6174666f726d2c20776520666f756e6420697420746f20626520636f6e667573696e6720746f2068617665206120636f6e63657074206f6620626f746820604163636f756e74736020616e6420604d656d6265727368697073602e2057652061726520696e207468652070726f63657373206f662072656e616d696e672074686520604163636f756e74736020746f2074686520604b657973602c2062757420746865726520617265207374696c6c20747261636573206f6620604163636f756e7473602073686f77696e672075702e0a000001000000000000000a57865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[113,"71000000000000001800000000000000030000008903232047657420537461727465640a496620796f752077616e7420746f2067657420656c656374656420617320612060436f756e63696c204d656d62657260206f7220766f7465206f6e2074686520706c6174666f726d2c20796f75206e65656420746f206265206120604d656d626572602e20496e737472756374696f6e7320666f7220746869732063616e20626520666f756e64205b686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f666f72756d2f746872656164732f3233292e0a000001000000000000006457865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[114,"7200000000000000180000000000000004000000d5032320456c656374696f6e204379636c650a54686520656c656374696f6e206379636c6520636f6e736973747320666f7572207374616765732e0a312e2060416e6e6f756e63656d656e7460202d206c6173747320343332303020626c6f636b7320287e373268290a322e2060566f74696e6760202020202020202d206c6173747320313434303020626c6f636b7320287e323468290a332e206052657665616c60202020202020202d206c6173747320313434303020626c6f636b7320287e323468290a342e20605465726d602020202020202020202d206c617374732032303136303020626c6f636b7320287e31346461797329000001000000000000007c57865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[115,"7300000000000000180000000000000005000000810d232320416e6e6f756e63656d656e740a447572696e67207468652060416e6e6f756e63656d656e74602073746167652c20616e796f6e652074686174206973206120604d656d626572602c20616e6420686f6c6473206174206c6561737420756e7374616b65642031303030204a6f79202869652e20696620796f752075736520796f7572206076616c696461746f72602060737461736860206b65792c20796f75206e6565642061206062616c616e636560203e2060626f6e64656460202b2031303030204a6f792920746f6b656e732063616e20616e6e6f756e63652074686569722063616e64696461637920746f206265636f6d6520612060436f756e63696c204d656d626572602e0a0a53656c6563742060436f756e63696c6020696e2074686520736964656261722c20616e6420636c69636b2074686520604170706c6963616e747360207461622e205365742074686520616d6f756e74206f6620746f6b656e7320796f752077616e7420746f2c207374616b652c20616e6420636f6e6669726d2e0a496620796f752077616e7420746f20707574206d6f7265207374616b6520626568696e6420796f75722063616e646964616379206c617465722c20796f752063616e20746f7020757020617420616e7920706f696e7420647572696e67207468652073746167652e2041667465722073656e64696e6720746865207472616e73616374696f6e2c20796f752073686f756c642061707065617220756e64657220224170706c6963616e7473222e20546865206d6178206e756d626572206f66204170706c6963616e747320697320603235602e205768656e2074686520323574682063616e646964617465206170706c6965732c20746865206f6e65207769746820746865206c6f7765737420616d6f756e74207374616b65642077696c6c20626520707573686564206f666620746865206c6973742c20616e6420676574207468656972207374616b652072657475726e65642e20496e20746f74616c2c206031326020436f756e63696c204d656d62657273206d75737420626520656c65637465642e20496620746865726520617265206c657373207468616e203132206170706c6963616e74732c207468652060416e6e6f756e63656d656e74602073746167652077696c6c206265207265737461727465642e00000100000000000000a057865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[116,"74000000000000001800000000000000060000008909232320566f74696e670a417320736f6f6e206173207468652060416e6e6f756e63656d656e746020737461676520636c6f7365732c20796f752063616e20626567696e20766f74696e6720666f72206170706c6963616e74732e20417320776974682065766572797468696e6720656c73652c20796f75206e65656420746f207374616b6520696e206f7264657220746f20646f20736f2e204a6f7973747265616d2069732063757272656e746c7920776f726b696e6720756e6465722074686520224f6e6520546f6b656e202d204f6e6520566f746522207072696e636970616c2e20476f20746f207468652060566f74657360207461622c2073657420796f7572207374616b696e6720616d6f756e742c2073656c65637420796f75722063616e64696461746520616e642067656e65726174652061206052616e646f6d2073616c74602e20546869732077696c6c206265206e656564656420746f2072657665616c20616e642061637475616c6c79202262726f6164636173742220796f757220766f74652e20596f752063616e20766f7465206d6f7265207468616e206f6e63652c20666f7220796f75722073656c662c20616e6420666f72206d6f7265207468616e206f6e65206170706c6963616e742e20416c6c2074686520646174612077696c6c2062652073746f72656420696e20796f75722062726f777365722c20736f206173206c6f6e6720617320796f7520617265207573696e67207468652073616d65206d616368696e652f62726f777365722f636f6f6b6965732c20796f7520646f6e2774206e65656420746f207361766520616e797468696e672e00000100000000000000ac57865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[117,"7500000000000000180000000000000007000000f10323232052657665616c0a417320736f6f6e206173207468652060566f74696e676020737461676520636c6f7365732c207468652052657665616c696e6720737461676520626567696e732e2054686973206973207768656e20796f752063616e2072657665616c20796f757220766f74652e20476f20746f20746865206052657665616c206120766f746560207461622c20746f2061637475616c6c792062726f61646361737420796f757220766f74652e20566f746573207468617420617265206e6f742072657665616c656420696e2074696d652077696c6c206e6f742067657420636f756e74656420696e2074686520656c656374696f6e2e00000100000000000000b857865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[118,"760000000000000018000000000000000800000065052323205465726d0a417320736f6f6e20617320746865206052657665616c6020737461676520636c6f7365732c207468652031322063616e64696461746573207769746820746865206869676865737420746f74616c206261636b696e672c2069652e207468656972206f776e207374616b65202b20766f746572207374616b652c2077696c6c206265636f6d652060436f756e63696c204d656d62657273602e205468656972207465726d2077696c6c2072756e20666f7220313420646179732c2061667465722077686963682061206e65772060436f756e63696c602077696c6c206265656e20656c65637465642e0a0a4e6f7465207468617420746865206e6578742060416e6e6f756e63656d656e74602073746167652077696c6c2073746172742065786163746c792032303136303020626c6f636b7320283134206461797329206166746572207468652070726576696f75732e00000100000000000000c457865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[119,"77000000000000001a0000000000000002000000710723232320496e737472756374696f6e730a496620796f752066696e6420612062756720696e20616e79206f66206f757220736f6674776172652c207265706f7274696e67207468656d20617320604973737565736020696e2074686520636f7272656374205b7265706f5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d237265706f7369746f72792d696e646578292077696c6c20616c6c6f7720757320746f206164647265737320746869732e20417320737461746564205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b236275696c646572732d616e642d6275672d7265706f7274657273292c206974206d6967687420616c736f207175616c69667920666f72206120626f756e74792e20496620796f752066696e6420616e206572726f722c20736f6d657468696e6720756e636c656172206f72206a757374206d697373696e6720696e207468652067756964657320696e2074686973207265706f2c20746865205b73616d6520636f6e63657074206170706c6965735d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f33292e0a00000100000000000000d258865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[120,"78000000000000001a0000000000000003000000d50a417320612067656e6572616c206e6f74652c20696e206164646974696f6e20746f20746865207365766572697479206f6620746865206275672c20746865206d6f72652064657461696c7320796f7520696e636c75646520696e2074686520604973737565602c207468652062696767657220746865207265776172642077696c6c2062652e204578616d706c65206f6620612064657461696c656420604973737565603a0a2a20466f72206e6f64657320616e6420736f6674776172652072616e206f6e20796f757220636f6d70757465720a20202a204c6f677320616e64206372617368207265706f727473202866726f6d206f6e65206f6620746865206e6f646573290a20202a20537465707320746f20726570726f647563650a20202a20596f757220656e7669726f6e6d656e74202865672e206f7065726174696e672073797374656d20616e642076657273696f6e290a20202a206574632e0a2a2049662072656c6174656420746f206f7572206050696f6e65657260205b746573746e65745d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672920617070733a0a20202a20576861742028696620616e7929206572726f72206d6573736167652064696420796f7520736565643f0a20202a2057686174207765726520796f7520747279696e6720746f20646f3f0a20202a205768617420697320796f757220616464726573733f0a20202a205768617420697320796f75722062616c616e63653f0a20202a2057686174206973207468652074797065206f6620606b657960202869652e20605363686e6f72726b656c60206f7220604564776172647360293f0a20202a2041726520796f75206120604d656d626572603f0a20202a2049732074686520606b657960207573656420666f7220616e6f7468657220726f6c653f0a20202a206574632e00000100000000000000de58865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[121,"79000000000000001000000000000000020000008d0c2320496e737472756374696f6e730a0a496620796f752077616e7420746f2062652076697369626c6520696e2074686520706f6c6b61646f742f7375627374726174652074656c656d657472792c20676f205b686572655d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f292e204e6f7465207468617420666f722077696e646f777320616e642061726d76372028726173706265727279207069292c20796f75206e65656420746f2061646420612074656c656d6574727920666c616720617420737461727475702028736565206170706c696361626c65207365747570206e6f6465292e0a0a496620796f7572206056616c696461746f72602068617320657870657269656e63656420736f6d65206f6620746865206e6574776f726b696e672069737375657320646573637269626564205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f3638292c20636f6e73696465722072657374617274696e6720796f7572206e6f646520617420726567756c617220696e74657276616c732e20496620796f752077616e7420746f206175746f6d61746520746869732070726f636573732c20636f6e73696465722072756e6e696e6720796f7572206e6f64652061732061205b736572766963655d282372756e2d61732d612d73657276696365292e0a0a2a2a4e6f74652a2a0a416674657220696e74726f647563696e6720604d656d62657273686970736020746f2074686520706c6174666f726d2c20776520666f756e6420697420746f20626520636f6e667573696e6720746f2068617665206120636f6e63657074206f6620626f746820604163636f756e74736020616e6420604d656d6265727368697073602e2057652061726520696e207468652070726f63657373206f662072656e616d696e672074686520604163636f756e74736020746f2074686520604b657973602c2062757420746865726520617265207374696c6c20747261636573206f6620604163636f756e74602073686f77696e672075702e00000100000000000000aa59865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[122,"7a00000000000000100000000000000003000000210a23232057696e646f77730a0a2a2045766572792074696d6520736f6d657468696e67206973207772697474656e20696e20603c627261636b6574733e602c206974206d65616e7320796f75206861766520746f207265706c6163652074686973207769746820796f757220696e7075742c20776974686f75742074686520603c3e602e0a2a205768656e20736f6d657468696e67206973207772697474656e20696e206022646f75626c655f71756f74657322602c206974206d65616e7320746865206e756d6265722f646174612077696c6c207661727920646570656e64696e67206f6e20796f7572206e6f6465206f72207468652063757272656e74207374617465206f662074686520626c6f636b636861696e2e0a2a20466f72207465726d696e616c20636f6d6d616e64732c20603e60206d65616e7320796f75206d7573742074797065207768617420636f6d65732061667465722074686174206f6e2077696e646f777320616e64206d616320726573706563746976656c792e20602360204d65616e732069742773206a757374206120636f6d6d656e742f6578706c616e6174696f6e2c20616e64206d757374206e6f742062652074797065642e0a6060600a232054686973206973206a757374206120636f6d6d656e742c20646f6e27742074797065206f7220706173746520697420696e20796f7572207465726d696e616c210a3e20636420433a5c6a6f7973747265616d2d6e6f64652d312e302e302d77696e646f77732d7838365f36340a23204f6e6c7920747970652f7061737465207468652022636420433a5c6a6f7973747265616d2d6e6f64652d77696e646f77732d783634222c206e6f742074686520707265636564696e67203e20210a60606000000100000000000000b659865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[123,"7b00000000000000100000000000000004000000110c23232323205365747570204e6f64650a0a476574207468652062696e617279205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f72656c65617365732f646f776e6c6f61642f76312e302e302f6a6f7973747265616d2d6e6f64652d312e302e302d77696e646f77732d7838365f36342e7a6970292e20546f206d616b65207468652061637475616c20636f6d6d616e6473207468652073616d6520666f7220616c6c2075736572732c2049276d20676f696e6720746f20736176652069742060433a5c6020616e6420756e7a69702069742074686572652e2060433a5c6a6f7973747265616d2d6e6f64652d312e302e302d77696e646f77732d7838365f3634602e204665656c206672656520746f2073746f726520697420736f6d65776865726520656c73652c206a757374206d616b65207375726520796f75207573652074686520636f7272656374207061746820696e2074686520696e737472756374696f6e73207468617420666f6c6c6f77732e0a0a496620796f7520646f6e277420686176652069742c20646f776e6c6f6164204d6963726f736f66742056697375616c2053747564696f20432b2b2072756e74696d652064697374726962757461626c652032303135205b686572655d2868747470733a2f2f7777772e6d6963726f736f66742e636f6d2f656e2d69652f646f776e6c6f61642f64657461696c732e617370783f69643d3438313435292e20200a0a47657420746865206d697373696e672053534c206c6962726172696573205b686572655d2868747470733a2f2f696e64792e66756c67616e2e636f6d2f53534c2f6f70656e73736c2d312e302e32712d7836345f38362d77696e36342e7a6970292c20657874726163742c20616e64206d6f7665207468652066696c6573206073736c65617933322e646c6c6020616e6420606c696265617933322e646c6c6020746f2060433a5c6a6f7973747265616d2d6e6f64652d77696e646f77732d783634602e0a00000100000000000000c859865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[124,"7c00000000000000100000000000000005000000b10a4f70656e2060436f6d6d616e642050726f6d70746020287479706520696e20636d642e2e2e20616674657220636c69636b696e672077696e646f777320627574746f6e293a0a0a6060600a3e20636420433a5c6a6f7973747265616d2d6e6f64652d312e302e302d77696e646f77732d7838365f36340a3e206a6f7973747265616d2d6e6f64652e6578650a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a3e206a6f7973747265616d2d6e6f64652e657865202d2d6e616d65203c6e6f64656e616d653e0a2320496620796f752077616e7420796f7572206e6f646520746f2073686f7720757020696e207468652074656c656d657472793a2068747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f0a3e206a6f7973747265616d2d6e6f64652e657865202d2d6e616d65203c6e6f64656e616d653e202d2d74656c656d657472792d75726c2077733a2f2f74656c656d657472792e706f6c6b61646f742e696f3a313032342f0a0a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c206275742064656661756c742069732032352e0a60606000000100000000000000d459865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[125,"7d00000000000000100000000000000006000000950e596f7572206e6f64652073686f756c64206e6f772073746172742073796e63696e672074686520626c6f636b636861696e2e20546865206f75747075742073686f756c64206c6f6f6b206c696b6520746869733a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202256657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d20546573746e65742076320a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a2046554c4c0a47656e6572617465642061206e6577206b6579706169723a2022736f6d655f6c6f6e675f6f75707574220a496e697469616c697a696e672047656e6573697320626c6f636b2f7374617465202822736f6d655f6c6f6e675f6f7570757422290a4c6f6164656420626c6f636b2d74696d65203d2036207365636f6e64732066726f6d2067656e65736973206f6e2066697273742d6c61756e636820737461727475702e0a4265737420626c6f636b3a2023300a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a2e2e2e0a2e2e2e0a53796e63696e672c207461726765743d2322626c6f636b5f686569676874222028226e22207065657273292c20626573743a20232273796e6365645f68656967687422202822686173685f6f665f73796e6365645f74697022292c2066696e616c697a6564202330202822686173685f6f665f66696e616c697a65645f74697022292c20e2ac872022646f776e6c6f61645f73706565642269422f7320e2ac86202275706c6f61645f7370656564226b69422f730a6060600a46726f6d20746865206c617374206c696e652c206e6f7469636520607461726765743d2322626c6f636b5f686569676874226020616e642060626573743a20232273796e6365645f68656967687422600a5768656e2074686520607461726765743d23626c6f636b5f686569676874606973207468652073616d652061732060626573743a20232273796e6365645f68656967687422602c20796f7572206e6f64652069732066756c6c792073796e636564210a0a2a2a4b65657020746865207465726d696e616c2077696e646f77206f70656e2e2a2a00000100000000000000e059865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[126,"7e000000000000001000000000000000070000009d0323232323204b6579730a0a4e6f7720796f75206e65656420746f2067656e657261746520796f757220606b6579736020696e20746865206050696f6e65657220617070602e0a0a496620796f752077616e7420746f206861766520746865206170706c69636174696f6e2074616c6b20746f20796f7572206f776e206e6f64652c2063686f6f7365206053657474696e67736020696e2074686520736964656261722c20616e64206368616e676520746865206072656d6f7465206e6f64652f656e64706f696e7420746f20636f6e6e65637420746f6020746f206c6f63616c206e6f64652e0a00000100000000000000825a865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[127,"7f00000000000000100000000000000008000000490b232323232047656e657261746520796f7572206b6579730a0a5768696c6520746865206e6f64652069732073796e63696e672c20796f752063616e207374617274207468652070726f63657373206f662073657474696e672075702074686520726573742e0a0a312e20476f20746f20746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c20616e642073656c65637420604d79206b6579736020696e2074686520736964656261722e20436c69636b207468652060437265617465206b65797360207461622e0a0a4e616d65732061726520656e746972656c79206f7074696f6e616c2c2062757420746865206e6578742073746570732077696c6c2062652065617369657220696620796f7520666f6c6c6f77207468652073797374656d207375676765737465642e0a0a322e204e616d6520796f7572206669727374206b657970616972206073657373696f6e602c206f72206174206c6561737420736f6d657468696e67207468617420636f6e7461696e732074686520776f72642e20496520606a6f686e2d646f652d73657373696f6e2d6b6579602e0a332e20496e207468652064726f70646f776e20696e20746865206669656c642062656c6f772c2063686f6f736520605261772073656564602e204e6f7465207468617420656163682074696d6520796f7520746f67676c65206265747765656e20604d6e656d6f6e69636020616e6420605261772073656564602c20796f752077696c6c2067656e65726174652061206e6577206b657920706169722e0a342e20436f7079207468652060223078596f75724c6f6e6753657373696f6e5261775365656422602c20616e64207361766520697420736f6d6577686572652073616665202d206c696b6520612070617373776f7264206d616e616765722e20596f75206e6565642074686973206c617465722100000100000000000000fa5a865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[128,"8000000000000000100000000000000009000000fd08352e2043686f6f736520612070617373776f7264202874686973206b65792077696c6c20686f6c6420616c6c20796f757220746f6b656e7321290a362e20466f7220746865206073657373696f6e60206b65792c20796f7520616c736f206e65656420746f2073656c65637420604564776172647320286564323535313929602066726f6d207468652060416476616e636564206372656174696f6e206f7074696f6e73602e0a372e20436c69636b20605361766560202d3e206043726561746520616e64206261636b7570206b657973602e0a0a446570656e64696e67206f6e20796f75722062726f777365722c20796f75206d69676874206861766520746f20636f6e6669726d20736176696e672074686520602235596f75724a6f7953657373696f6e416464726573732e6a736f6e22602e0a0a526570656174207468652073746570732074776f206d6f72652074696d65732c20627574207769746820646966666572656e74206e616d65732c206c656176696e6720796f7520776974682074687265652073657473206f66206b6579732061732073686f776e2062656c6f773a0a2a20607374617368600a2a2060636f6e74726f6c6c6572600a2a206073657373696f6e600a0a4e6f7465207468617420796f75206f6e6c79202a7374726963746c79206e6565642a2074686520526177207365656420666f7220746865206073657373696f6e60206b6579706169722c20627574206974277320736166657220746f20646f20697420666f7220616c6c206f66207468656d2e00000100000000000000065b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[129,"810000000000000010000000000000000a0000000d0f232323232052652d737461727420796f7572206e6f646520617320612076616c696461746f720a0a496620796f7520686176656e277420616c72656164792c2067656e657261746520796f7572206b6579732e0a0a312e204f70656e20746865207465726d696e616c20746861742069732072756e6e696e6720796f7572206e6f64652c20616e64206b696c6c207468652073657373696f6e207769746820606374726c2b636020287477696365292e0a202020202a204f6e2057696e646f77732c2074686520666972737420606374726c2b63602077696c6c2070726f647563652061206c6f6e6720616e6420636f6e667573696e67206f75747075742e0a322e205265737461727420697420616761696e20776974682074686520666f6c6c6f77696e6720636f6d6d616e643a0a6060600a3e206a6f7973747265616d2d6e6f64652e657865202d2d76616c696461746f72202d2d6b6579203c30784d794c6f6e67526177536565643e0a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a3e206a6f7973747265616d2d6e6f64652e657865202d2d6e616d65203c6e6f64656e616d653e202d2d76616c696461746f72202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e0a2320496620796f7520616c736f2077616e742069742073686f7720757020696e2074656c656d657472793a0a3e206a6f7973747265616d2d6e6f64652e657865202d2d6e616d65203c6e6f64656e616d653e202d2d74656c656d657472792d75726c2077733a2f2f74656c656d657472792e706f6c6b61646f742e696f3a313032342f202d2d76616c696461746f72202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e0a0a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c20627574207468652064656661756c742069732032352e0a60606000000100000000000000365b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[130,"820000000000000010000000000000000b000000690c546869732074696d652c20746865206f75747075742073686f756c642073686f77206120736c696768746c7920646966666572656e742073746172747570206f75747075743a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202276657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d2053746167696e6720546573746e65740a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a20415554484f524954590a4265737420626c6f636b3a20232273796e6365645f686569676874220a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a5573696e6720617574686f72697479206b657920202235596f75724a6f7953657373696f6e416464726573732220202320536565204e6f74650a2e2e2e0a6060600a2a2a4e6f74652a2a0a496620796f7572206073657373696f6e60207761732067656e65726174656420617320605363686e6f72726b656c20287372323535313929602c2069742077696c6c2073686f77206120636f6d706c6574656c7920646966666572656e7420616464726573732e20496620746869732068617070656e732c20676f206261636b20616e642067656e65726174652061206e6577205b73657373696f6e206b65795d282367656e65726174652d796f75722d6b65797329207769746820604564776172647320286564323535313929602e20496620796f7520646f6e27742c20796f7572206e6f64652077696c6c2074727920746f207369676e20626c6f636b732077697468207468652077726f6e67206b65792e204173206120636f6e73657175656e63652c20796f752077696c6c2067657420736c617368656420616e64206b69636b6564206f75742061732061206056616c696461746f72602e00000100000000000000425b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[131,"830000000000000010000000000000000c0000002d01232323232046696e616c20537465700a0a4e6f7720697427732074696d6520746f20636f6e66696775726520796f7572206b65797320746f2073746172742076616c69646174696e672e20000001000000000000005a5b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[132,"840000000000000010000000000000000d000000d10c2323232320436f6e66696775726520796f75722076616c696461746f72206b6579730a0a496e206f7264657220746f2062652061206056616c696461746f72602c20796f75206e65656420746f207374616b652e204e6f7465207468617420796f75206d6179206861766520746f207265667265736820796f75722062726f7773657220696620796f75277265206e6f7420736565696e6720746865206f7074696f6e7320726967687420617761792e0a0a2a2a494d504f5254414e543a2a2a205265616420737465702031332e206361726566756c6c792e20596f7572206e6f6465206e6565647320746f2062652066756c6c792073796e6365642c206265666f72652070726f63656564696e6720746f20737465702031342e0a0a312e205374696c6c20696e2074686520604d79204b657973602073696465626172206f6620746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c2063686f6f736520796f75722060737461736860206b65792e0a322e20436c69636b2074686520604672656520546f6b656e7360206c696e6b2062656c6f7720796f757220616464726573732c205b6f7220636c69636b20686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f666175636574292e20536f6c76652074686520636170746368612c20616e6420796f752073686f756c64207265636569766520746f6b656e732e0a332e2053656e6420736f6d6520746f6b656e7320746f20796f75722060636f6e74726f6c6c6572602e204974206e6565647320746f20706572666f726d206174206c656173742074776f207472616e73616374696f6e732c206275742062657474657220746f2073656e64207e31302e0a342e204e6f772c20636c69636b206056616c696461746f72736020696e2074686520736964656261722c20616e64207468656e20746865206056616c696461746f72205374616b696e6760207461622e0a352e204c6f636174652074686520616464726573732f6b6579206e616d656420607374617368602c20616e6420636c69636b2060426f6e642046756e6473602e00000100000000000000725b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[133,"850000000000000010000000000000000e000000150b362e20496e2074686520706f7075702077696e646f772c2063686f6f736520796f75722060636f6e74726f6c6c657260206173207468652060636f6e74726f6c6c6572206163636f756e74602e0a372e20456e7465722074686520616d6f756e7420796f752077616e7420746f207374616b6520696e20746865206076616c756520626f6e64656460206669656c642e2028497420636f756c64206265207769736520746f206c65617665206120636f75706c65206f66204a6f79206c656674292e0a382e20496e2074686520607061796d656e742064657374696e6174696f6e602064726f70646f776e2c20746865726520617265207468726565206f7074696f6e732e2053656c656374207468652064656661756c7420605374617368206163636f756e742028696e6372656173652074686520616d6f756e74206174207374616b6529602c206f7220676f20746f205b616476616e6365645d2823626f6e64696e672d707265666572656e636573292e0a392e2054686520627574746f6e2060626f6e64602073686f756c6420626520686967686c696768746564206e6f772e20436c69636b2069742e0a31302e205479706520696e20796f75722070617373776f726420696e207468652060756e6c6f636b20776974682070617373776f726460206669656c6420616e6420636c69636b20607369676e20616e64207375626d6974602e0a31312e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f77206120605365742053657373696f6e204b65796020627574746f6e2e20436c69636b2069742e0a31322e20496e2074686520706f7075702c2073656c65637420796f7572206073657373696f6e6020617320796f7572206073657373696f6e206b65796020696e207468652064726f70646f776e2e20436f6e6669726d2c207369676e20616e64207375626d69742e00000100000000000000845b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[134,"860000000000000010000000000000000f000000c50d31332e20596f75206e65656420746f20636865636b20796f7572206e6f64652c20776869636820796f752073746172746564206561726c6965722e20496e20746865206f757470757420607461726765743d2322626c6f636b5f68656967687422602073686f756c6420657175616c2060626573743a20232273796e6365645f68656967687422602e20446f206e6f742070726f63656564206265666f72652074686f73652074776f2076616c75657320617265206964656e746963616c2c20617320796f7572206e6f64652077696c6c2062652064726f70706564206f75742066726f6d207468652076616c696461746f727320696620796f7572206e6f6465206973206e6f742066756c6c792073796e6365642e20496620796f752064696420737461727420796f7572206e6f6465207769746820602d2d6e616d65203c6e6f64656e616d653e6020706172616d657465722c207468656e20796f7520616c736f2063616e20636865636b20696620796f7572206e6f64652069732066756c6c792073796e6365642066726f6d205b54656c656d657472795d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f236c6973742f4a6f7973747265616d253230546573746e65742532307632292e0a31342e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f772061206056616c69646174656020627574746f6e2e20436c69636b2069742e0a31352e20596f752063616e206c65617665207468652060756e7374616b65207468726573686f6c646020616e6420607061796d656e7420707265666572656e636573602061732064656661756c74732c206f7220676f20746f205b616476616e6365645d282376616c69646174696e672d707265666572656e636573292e20436f6e6669726d2c207369676e20616e64207375626d69742e0a0a5265667265736820796f75722062726f777365722c20616e642073656c65637420746865206056616c696461746f72204f7665727669657760207461622e20496620796f7572206163636f756e742073686f777320756e64657220606e657874207570602c207761697420666f7220746865206e6578742060657261602c20616e6420796f752077696c6c206265206d6f76656420746f20746865206076616c696461746f727360206c6973742e0a000001000000000000009c5b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[135,"87000000000000001100000000000000020000008d0c2320496e737472756374696f6e730a0a496620796f752077616e7420746f2062652076697369626c6520696e2074686520706f6c6b61646f742f7375627374726174652074656c656d657472792c20676f205b686572655d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f292e204e6f7465207468617420666f722077696e646f777320616e642061726d76372028726173706265727279207069292c20796f75206e65656420746f2061646420612074656c656d6574727920666c616720617420737461727475702028736565206170706c696361626c65207365747570206e6f6465292e0a0a496620796f7572206056616c696461746f72602068617320657870657269656e63656420736f6d65206f6620746865206e6574776f726b696e672069737375657320646573637269626564205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f3638292c20636f6e73696465722072657374617274696e6720796f7572206e6f646520617420726567756c617220696e74657276616c732e20496620796f752077616e7420746f206175746f6d61746520746869732070726f636573732c20636f6e73696465722072756e6e696e6720796f7572206e6f64652061732061205b736572766963655d282372756e2d61732d612d73657276696365292e0a0a2a2a4e6f74652a2a0a416674657220696e74726f647563696e6720604d656d62657273686970736020746f2074686520706c6174666f726d2c20776520666f756e6420697420746f20626520636f6e667573696e6720746f2068617665206120636f6e63657074206f6620626f746820604163636f756e74736020616e6420604d656d6265727368697073602e2057652061726520696e207468652070726f63657373206f662072656e616d696e672074686520604163636f756e74736020746f2074686520604b657973602c2062757420746865726520617265207374696c6c20747261636573206f6620604163636f756e74602073686f77696e672075702e00000100000000000000eec5875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[136,"88000000000000001200000000000000020000008d0c2320496e737472756374696f6e730a0a496620796f752077616e7420746f2062652076697369626c6520696e2074686520706f6c6b61646f742f7375627374726174652074656c656d657472792c20676f205b686572655d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f292e204e6f7465207468617420666f722077696e646f777320616e642061726d76372028726173706265727279207069292c20796f75206e65656420746f2061646420612074656c656d6574727920666c616720617420737461727475702028736565206170706c696361626c65207365747570206e6f6465292e0a0a496620796f7572206056616c696461746f72602068617320657870657269656e63656420736f6d65206f6620746865206e6574776f726b696e672069737375657320646573637269626564205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f3638292c20636f6e73696465722072657374617274696e6720796f7572206e6f646520617420726567756c617220696e74657276616c732e20496620796f752077616e7420746f206175746f6d61746520746869732070726f636573732c20636f6e73696465722072756e6e696e6720796f7572206e6f64652061732061205b736572766963655d282372756e2d61732d612d73657276696365292e0a0a2a2a4e6f74652a2a0a416674657220696e74726f647563696e6720604d656d62657273686970736020746f2074686520706c6174666f726d2c20776520666f756e6420697420746f20626520636f6e667573696e6720746f2068617665206120636f6e63657074206f6620626f746820604163636f756e74736020616e6420604d656d6265727368697073602e2057652061726520696e207468652070726f63657373206f662072656e616d696e672074686520604163636f756e74736020746f2074686520604b657973602c2062757420746865726520617265207374696c6c20747261636573206f6620604163636f756e74602073686f77696e672075702e00000100000000000000f4c5875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[137,"890000000000000012000000000000000300000011092323204d61630a0a2a2045766572792074696d6520736f6d657468696e67206973207772697474656e20696e20603c627261636b6574733e602c206974206d65616e7320796f75206861766520746f207265706c6163652074686973207769746820796f757220696e7075742c20776974686f75742074686520603c3e602e0a2a205768656e20736f6d657468696e67206973207772697474656e20696e206022646f75626c655f71756f74657322602c206974206d65616e7320746865206e756d6265722f646174612077696c6c207661727920646570656e64696e67206f6e20796f7572206e6f6465206f72207468652063757272656e74207374617465206f662074686520626c6f636b636861696e2e0a2a20466f72207465726d696e616c20636f6d6d616e64732c20602460206d65616e7320796f75206d7573742074797065207768617420636f6d65732061667465722074686174206f6e2077696e646f777320616e64206d616320726573706563746976656c792e20602360204d65616e732069742773206a757374206120636f6d6d656e742f6578706c616e6174696f6e2c20616e64206d757374206e6f742062652074797065642e0a6060600a232054686973206973206a757374206120636f6d6d656e742c20646f6e27742074797065206f7220706173746520697420696e20796f7572207465726d696e616c210a24206364207e2f0a23204f6e6c7920747970652f70617374652074686520226364207e2f2c206e6f742074686520707265636564696e67202420210a6060600000010000000000000012c6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[138,"8a00000000000000120000000000000004000000f10c23232323205365747570204e6f64650a0a4f70656e20746865207465726d696e616c20284170706c69636174696f6e732d3e5574696c6974696573293a0a0a6060600a24206364207e2f0a2420776765742068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f72656c65617365732f646f776e6c6f61642f76312e302e302f6a6f7973747265616d2d6e6f64652d312e302e302d6f73782d7838365f36342e7a69700a2d2d2d2d0a2320496620796f7520646f6e27742068617665207767657420696e7374616c6c65642c20706173746520746865206c696e6b20696e20796f75722062726f7773657220736176652e0a2320417373756d696e67206974206765747320736176656420696e20796f7572207e2f446f776e6c6f61647320666f6c6465723a0a24206d76207e2f446f776e6c6f6164732f6a6f7973747265616d2d6e6f64652d312e302e302d6f73782d7838365f36342e7a6970207e2f0a2d2d2d0a2420746172202d767866206a6f7973747265616d2d6e6f64652d312e302e302d6f73782d7838365f36342e7a69700a24202e2f6a6f7973747265616d2d6e6f64650a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a3e202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e0a0a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c20627574207468652064656661756c742069732032352e0a606060000001000000000000001ec6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[139,"8b00000000000000120000000000000005000000950e596f7572206e6f64652073686f756c64206e6f772073746172742073796e63696e672074686520626c6f636b636861696e2e20546865206f75747075742073686f756c64206c6f6f6b206c696b6520746869733a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202256657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d20546573746e65742076320a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a2046554c4c0a47656e6572617465642061206e6577206b6579706169723a2022736f6d655f6c6f6e675f6f75707574220a496e697469616c697a696e672047656e6573697320626c6f636b2f7374617465202822736f6d655f6c6f6e675f6f7570757422290a4c6f6164656420626c6f636b2d74696d65203d2036207365636f6e64732066726f6d2067656e65736973206f6e2066697273742d6c61756e636820737461727475702e0a4265737420626c6f636b3a2023300a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a2e2e2e0a2e2e2e0a53796e63696e672c207461726765743d2322626c6f636b5f686569676874222028226e22207065657273292c20626573743a20232273796e6365645f68656967687422202822686173685f6f665f73796e6365645f74697022292c2066696e616c697a6564202330202822686173685f6f665f66696e616c697a65645f74697022292c20e2ac872022646f776e6c6f61645f73706565642269422f7320e2ac86202275706c6f61645f7370656564226b69422f730a6060600a46726f6d20746865206c617374206c696e652c206e6f7469636520607461726765743d2322626c6f636b5f686569676874226020616e642060626573743a20232273796e6365645f68656967687422600a5768656e2074686520607461726765743d23626c6f636b5f686569676874606973207468652073616d652061732060626573743a20232273796e6365645f68656967687422602c20796f7572206e6f64652069732066756c6c792073796e636564210a0a2a2a4b65657020746865207465726d696e616c2077696e646f77206f70656e2e2a2a000001000000000000002ac6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[140,"8c00000000000000120000000000000006000000990323232323204b6579730a0a4e6f7720796f75206e65656420746f2067656e657261746520796f757220606b6579736020696e20746865206050696f6e65657220617070602e0a0a496620796f752077616e7420746f206861766520746865206170706c69636174696f6e2074616c6b20746f20796f7572206f776e206e6f64652c2063686f6f7365206053657474696e67736020696e2074686520736964656261722c20616e64206368616e676520746865206072656d6f7465206e6f64652f656e64706f696e7420746f20636f6e6e65637420746f6020746f206c6f63616c206e6f64652e000001000000000000003cc6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[141,"8d00000000000000120000000000000007000000990e232323232047656e657261746520796f7572206b6579730a0a5768696c6520746865206e6f64652069732073796e63696e672c20796f752063616e207374617274207468652070726f63657373206f662073657474696e672075702074686520726573742e0a0a312e20476f20746f20746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c20616e642073656c65637420604d79206b6579736020696e2074686520736964656261722e20436c69636b207468652060437265617465206b65797360207461622e0a0a4e616d65732061726520656e746972656c79206f7074696f6e616c2c2062757420746865206e6578742073746570732077696c6c2062652065617369657220696620796f7520666f6c6c6f77207468652073797374656d207375676765737465642e0a0a322e204e616d6520796f7572206669727374206b657970616972206073657373696f6e602c206f72206174206c6561737420736f6d657468696e67207468617420636f6e7461696e732074686520776f72642e20496520606a6f686e2d646f652d73657373696f6e2d6b6579602e0a332e20496e207468652064726f70646f776e20696e20746865206669656c642062656c6f772c2063686f6f736520605261772073656564602e204e6f7465207468617420656163682074696d6520796f7520746f67676c65206265747765656e20604d6e656d6f6e69636020616e6420605261772073656564602c20796f752077696c6c2067656e65726174652061206e6577206b657920706169722e0a342e20436f7079207468652060223078596f75724c6f6e6753657373696f6e5261775365656422602c20616e64207361766520697420736f6d6577686572652073616665202d206c696b6520612070617373776f7264206d616e616765722e20596f75206e6565642074686973206c61746572210a352e2043686f6f736520612070617373776f7264202874686973206b65792077696c6c20686f6c6420616c6c20796f757220746f6b656e7321290a362e20466f7220746865206073657373696f6e60206b65792c20796f7520616c736f206e65656420746f2073656c65637420604564776172647320286564323535313929602066726f6d207468652060416476616e636564206372656174696f6e206f7074696f6e73602e0a372e20436c69636b20605361766560202d3e206043726561746520616e64206261636b7570206b657973602e000001000000000000006cc6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[142,"8e000000000000001200000000000000080000002104526570656174207468652073746570732074776f206d6f72652074696d65732c20627574207769746820646966666572656e74206e616d65732c206c656176696e6720796f7520776974682074687265652073657473206f66206b6579732061732073686f776e2062656c6f773a0a2a20607374617368600a2a2060636f6e74726f6c6c6572600a2a206073657373696f6e600a0a4e6f7465207468617420796f75206f6e6c79202a7374726963746c79206e6565642a2074686520526177207365656420666f7220746865206073657373696f6e60206b6579706169722c20627574206974277320736166657220746f20646f20697420666f7220616c6c206f66207468656d2e000001000000000000009cc6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[143,"8f00000000000000120000000000000009000000290a232323232052652d737461727420796f7572206e6f646520617320612076616c696461746f720a0a312e204f70656e20746865207465726d696e616c20746861742069732072756e6e696e6720796f7572206e6f64652c20616e64206b696c6c207468652073657373696f6e207769746820606374726c2b63602e0a322e205265737461727420697420616761696e20776974682074686520666f6c6c6f77696e6720636f6d6d616e643a0a6060600a24202e2f6a6f7973747265616d2d6e6f6465202d2d76616c696461746f72202d2d6b6579203c30784d794c6f6e67526177536565643e0a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a24202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e202d2d76616c696461746f72202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e0a0a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c20627574207468652064656661756c742069732032352e0a60606000000100000000000000a8c6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[144,"900000000000000012000000000000000a000000690c546869732074696d652c20746865206f75747075742073686f756c642073686f77206120736c696768746c7920646966666572656e742073746172747570206f75747075743a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202276657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d2053746167696e6720546573746e65740a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a20415554484f524954590a4265737420626c6f636b3a20232273796e6365645f686569676874220a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a5573696e6720617574686f72697479206b657920202235596f75724a6f7953657373696f6e416464726573732220202320536565204e6f74650a2e2e2e0a6060600a2a2a4e6f74652a2a0a496620796f7572206073657373696f6e60207761732067656e65726174656420617320605363686e6f72726b656c20287372323535313929602c2069742077696c6c2073686f77206120636f6d706c6574656c7920646966666572656e7420616464726573732e20496620746869732068617070656e732c20676f206261636b20616e642067656e65726174652061206e6577205b73657373696f6e206b65795d282367656e65726174652d796f75722d6b6579732d3129207769746820604564776172647320286564323535313929602e20496620796f7520646f6e27742c20796f7572206e6f64652077696c6c2074727920746f207369676e20626c6f636b732077697468207468652077726f6e67206b65792e204173206120636f6e73657175656e63652c20796f752077696c6c2067657420736c617368656420616e64206b69636b6564206f7574206173206056616c696461746f72602e00000100000000000000c0c6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[145,"910000000000000012000000000000000b0000002d01232323232046696e616c20537465700a0a4e6f7720697427732074696d6520746f20636f6e66696775726520796f7572206b65797320746f2073746172742076616c69646174696e672e2000000100000000000000ccc6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[146,"920000000000000012000000000000000c000000d10c2323232320436f6e66696775726520796f75722076616c696461746f72206b6579730a0a496e206f7264657220746f2062652061206056616c696461746f72602c20796f75206e65656420746f207374616b652e204e6f7465207468617420796f75206d6179206861766520746f207265667265736820796f75722062726f7773657220696620796f75277265206e6f7420736565696e6720746865206f7074696f6e7320726967687420617761792e0a0a2a2a494d504f5254414e543a2a2a205265616420737465702031332e206361726566756c6c792e20596f7572206e6f6465206e6565647320746f2062652066756c6c792073796e6365642c206265666f72652070726f63656564696e6720746f20737465702031342e0a0a312e205374696c6c20696e2074686520604d79204b657973602073696465626172206f6620746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c2063686f6f736520796f75722060737461736860206b65792e0a322e20436c69636b2074686520604672656520546f6b656e7360206c696e6b2062656c6f7720796f757220616464726573732c205b6f7220636c69636b20686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f666175636574292e20536f6c76652074686520636170746368612c20616e6420796f752073686f756c64207265636569766520746f6b656e732e0a332e2053656e6420736f6d6520746f6b656e7320746f20796f75722060636f6e74726f6c6c6572602e204974206e6565647320746f20706572666f726d206174206c656173742074776f207472616e73616374696f6e732c206275742062657474657220746f2073656e64207e31302e0a342e204e6f772c20636c69636b206056616c696461746f72736020696e2074686520736964656261722c20616e64207468656e20746865206056616c696461746f72205374616b696e6760207461622e0a352e204c6f636174652074686520616464726573732f6b6579206e616d656420607374617368602c20616e6420636c69636b2060426f6e642046756e6473602e00000100000000000000dec6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[147,"930000000000000012000000000000000d000000150b362e20496e2074686520706f7075702077696e646f772c2063686f6f736520796f75722060636f6e74726f6c6c657260206173207468652060636f6e74726f6c6c6572206163636f756e74602e0a372e20456e7465722074686520616d6f756e7420796f752077616e7420746f207374616b6520696e20746865206076616c756520626f6e64656460206669656c642e2028497420636f756c64206265207769736520746f206c65617665206120636f75706c65206f66204a6f79206c656674292e0a382e20496e2074686520607061796d656e742064657374696e6174696f6e602064726f70646f776e2c20746865726520617265207468726565206f7074696f6e732e2053656c656374207468652064656661756c7420605374617368206163636f756e742028696e6372656173652074686520616d6f756e74206174207374616b6529602c206f7220676f20746f205b616476616e6365645d2823626f6e64696e672d707265666572656e636573292e0a392e2054686520627574746f6e2060626f6e64602073686f756c6420626520686967686c696768746564206e6f772e20436c69636b2069742e0a31302e205479706520696e20796f75722070617373776f726420696e207468652060756e6c6f636b20776974682070617373776f726460206669656c6420616e6420636c69636b20607369676e20616e64207375626d6974602e0a31312e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f77206120605365742053657373696f6e204b65796020627574746f6e2e20436c69636b2069742e0a31322e20496e2074686520706f7075702c2073656c65637420796f7572206073657373696f6e6020617320796f7572206073657373696f6e206b65796020696e207468652064726f70646f776e2e20436f6e6669726d2c207369676e20616e64207375626d69742e00000100000000000000eac6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[148,"940000000000000012000000000000000e000000c10d31332e20596f75206e65656420746f20636865636b20796f7572206e6f64652c20776869636820796f752073746172746564206561726c6965722e20496e20746865206f757470757420607461726765743d2322626c6f636b5f68656967687422602073686f756c6420657175616c2060626573743a20232273796e6365645f68656967687422602e20446f206e6f742070726f63656564206265666f72652074686f73652074776f2076616c75657320617265206964656e746963616c2c20617320796f7572206e6f64652077696c6c2062652064726f70706564206f75742066726f6d207468652076616c696461746f727320696620796f7572206e6f6465206973206e6f742066756c6c792073796e6365642e20496620796f752064696420737461727420796f7572206e6f6465207769746820602d2d6e616d65203c6e6f64656e616d653e6020706172616d657465722c207468656e20796f7520616c736f2063616e20636865636b20696620796f7572206e6f64652069732066756c6c792073796e6365642066726f6d205b54656c656d657472795d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f236c6973742f4a6f7973747265616d253230546573746e65742532307632292e0a31342e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f772061206056616c69646174656020627574746f6e2e20436c69636b2069742e0a31352e20596f752063616e206c65617665207468652060756e7374616b65207468726573686f6c646020616e6420607061796d656e7420707265666572656e636573602061732064656661756c74732c206f7220676f20746f205b616476616e6365645d282376616c69646174696e672d707265666572656e636573292e20436f6e6669726d2c207369676e20616e64207375626d69742e0a0a5265667265736820796f75722062726f777365722c20616e642073656c65637420746865206056616c696461746f72204f7665727669657760207461622e20496620796f7572206163636f756e742073686f777320756e64657220606e657874207570602c207761697420666f7220746865206e6578742060657261602c20616e6420796f752077696c6c206265206d6f76656420746f20746865206076616c696461746f727360206c6973742e00000100000000000000fcc6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[149,"950000000000000011000000000000000300000021092323204c696e75780a0a2a2045766572792074696d6520736f6d657468696e67206973207772697474656e20696e20603c627261636b6574733e602c2074686973206d65616e7320796f75206861766520746f207265706c6163652074686973207769746820796f757220696e7075742c20776974686f75742074686520603c3e602e0a2a205768656e20736f6d657468696e67206973207772697474656e20696e206022646f75626c655f71756f74657322602c206974206d65616e7320746865206e756d6265722f646174612077696c6c207661727920646570656e64696e67206f6e20796f7572206e6f6465206f72207468652063757272656e74207374617465206f662074686520626c6f636b636861696e2e0a2a20466f72207465726d696e616c20636f6d6d616e64732c20602460206d65616e7320796f75206d7573742074797065207768617420636f6d65732061667465722074686174206f6e2077696e646f777320616e64206d616320726573706563746976656c792e20602360204d65616e732069742773206a757374206120636f6d6d656e742f6578706c616e6174696f6e2c20616e64206d757374206e6f742062652074797065642e0a6060600a232054686973206973206a757374206120636f6d6d656e742c20646f6e27742074797065206f7220706173746520697420696e20796f7572207465726d696e616c210a24206364207e2f0a23204f6e6c7920747970652f70617374652074686520226364207e2f2c206e6f742074686520707265636564696e67202420210a6060600000010000000000000026c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[150,"9600000000000000110000000000000004000000950b23232323205365747570204e6f64650a0a4f70656e20746865207465726d696e616c3a0a0a6060600a24206364207e2f0a23203634206269742064656269616e206261736564206c696e75780a2420776765742068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f72656c65617365732f646f776e6c6f61642f76312e302e302f6a6f7973747265616d2d6e6f64652d312e302e302d6c696e75782d7838365f36342e7461722e677a0a2420746172202d767866206a6f7973747265616d2d6e6f64652d312e302e302d6c696e75782d7838365f36342e7461722e677a0a232061726d76372028726173706265727279207069290a2420776765742068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f72656c65617365732f646f776e6c6f61642f76312e302e302f6a6f7973747265616d2d6e6f64652d312e302e302d61726d76372e7461722e677a0a2420746172202d767866206a6f7973747265616d2d6e6f64652d312e302e302d61726d76372e7461722e677a0a2320466f7220626f74680a24202e2f6a6f7973747265616d2d6e6f64650a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a24202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e0a2320496620796f752077616e7420796f7572206e6f646520746f2073686f7720757020696e207468652074656c656d657472793a2068747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f0a24202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e202d2d74656c656d657472792d75726c2077733a2f2f74656c656d657472792e706f6c6b61646f742e696f3a313032342f0a6060600000010000000000000044c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[151,"97000000000000001100000000000000050000006d046060600a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c20627574207468652064656661756c742069732032352e0a6060600000010000000000000050c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[152,"9800000000000000110000000000000006000000950e596f7572206e6f64652073686f756c64206e6f772073746172742073796e63696e672074686520626c6f636b636861696e2e20546865206f75747075742073686f756c64206c6f6f6b206c696b6520746869733a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202256657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d20546573746e65742076320a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a2046554c4c0a47656e6572617465642061206e6577206b6579706169723a2022736f6d655f6c6f6e675f6f75707574220a496e697469616c697a696e672047656e6573697320626c6f636b2f7374617465202822736f6d655f6c6f6e675f6f7570757422290a4c6f6164656420626c6f636b2d74696d65203d2036207365636f6e64732066726f6d2067656e65736973206f6e2066697273742d6c61756e636820737461727475702e0a4265737420626c6f636b3a2023300a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a2e2e2e0a2e2e2e0a53796e63696e672c207461726765743d2322626c6f636b5f686569676874222028226e22207065657273292c20626573743a20232273796e6365645f68656967687422202822686173685f6f665f73796e6365645f74697022292c2066696e616c697a6564202330202822686173685f6f665f66696e616c697a65645f74697022292c20e2ac872022646f776e6c6f61645f73706565642269422f7320e2ac86202275706c6f61645f7370656564226b69422f730a6060600a46726f6d20746865206c617374206c696e652c206e6f7469636520607461726765743d2322626c6f636b5f686569676874226020616e642060626573743a20232273796e6365645f68656967687422600a5768656e2074686520607461726765743d23626c6f636b5f686569676874606973207468652073616d652061732060626573743a20232273796e6365645f68656967687422602c20796f7572206e6f64652069732066756c6c792073796e636564210a0a2a2a4b65657020746865207465726d696e616c2077696e646f77206f70656e2e2a2a0000010000000000000062c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[153,"99000000000000001100000000000000070000009d0323232323204b6579730a0a4e6f7720796f75206e65656420746f2067656e657261746520796f757220606b6579736020696e20746865206050696f6e65657220617070602e0a0a496620796f752077616e7420746f206861766520746865206170706c69636174696f6e2074616c6b20746f20796f7572206f776e206e6f64652c2063686f6f7365206053657474696e67736020696e2074686520736964656261722c20616e64206368616e676520746865206072656d6f7465206e6f64652f656e64706f696e7420746f20636f6e6e65637420746f6020746f206c6f63616c206e6f64652e0a000001000000000000006ec7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[154,"9a00000000000000110000000000000008000000990e232323232047656e657261746520796f7572206b6579730a0a5768696c6520746865206e6f64652069732073796e63696e672c20796f752063616e207374617274207468652070726f63657373206f662073657474696e672075702074686520726573742e0a0a312e20476f20746f20746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c20616e642073656c65637420604d79206b6579736020696e2074686520736964656261722e20436c69636b207468652060437265617465206b65797360207461622e0a0a4e616d65732061726520656e746972656c79206f7074696f6e616c2c2062757420746865206e6578742073746570732077696c6c2062652065617369657220696620796f7520666f6c6c6f77207468652073797374656d207375676765737465642e0a0a322e204e616d6520796f7572206669727374206b657970616972206073657373696f6e602c206f72206174206c6561737420736f6d657468696e67207468617420636f6e7461696e732074686520776f72642e20496520606a6f686e2d646f652d73657373696f6e2d6b6579602e0a332e20496e207468652064726f70646f776e20696e20746865206669656c642062656c6f772c2063686f6f736520605261772073656564602e204e6f7465207468617420656163682074696d6520796f7520746f67676c65206265747765656e20604d6e656d6f6e69636020616e6420605261772073656564602c20796f752077696c6c2067656e65726174652061206e6577206b657920706169722e0a342e20436f7079207468652060223078596f75724c6f6e6753657373696f6e5261775365656422602c20616e64207361766520697420736f6d6577686572652073616665202d206c696b6520612070617373776f7264206d616e616765722e20596f75206e6565642074686973206c61746572210a352e2043686f6f736520612070617373776f7264202874686973206b65792077696c6c20686f6c6420616c6c20796f757220746f6b656e7321290a362e20466f7220746865206073657373696f6e60206b65792c20796f7520616c736f206e65656420746f2073656c65637420604564776172647320286564323535313929602066726f6d207468652060416476616e636564206372656174696f6e206f7074696f6e73602e0a372e20436c69636b20605361766560202d3e206043726561746520616e64206261636b7570206b657973602e0000010000000000000080c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[155,"9b00000000000000110000000000000009000000ad05446570656e64696e67206f6e20796f75722062726f777365722c20796f75206d69676874206861766520746f20636f6e6669726d20736176696e672074686520602235596f75724a6f7953657373696f6e416464726573732e6a736f6e22602e0a0a526570656174207468652073746570732074776f206d6f72652074696d65732c20627574207769746820646966666572656e74206e616d65732c206c656176696e6720796f7520776974682074687265652073657473206f66206b6579732061732073686f776e2062656c6f773a0a2a20607374617368600a2a2060636f6e74726f6c6c6572600a2a206073657373696f6e600a0a4e6f7465207468617420796f75206f6e6c79202a7374726963746c79206e6565642a2074686520526177207365656420666f7220746865206073657373696f6e60206b6579706169722c20627574206974277320736166657220746f20646f20697420666f7220616c6c206f66207468656d2e0a0000010000000000000092c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[156,"9c0000000000000011000000000000000a000000f90d232323232052652d737461727420796f7572206e6f646520617320612076616c696461746f720a0a312e204f70656e20746865207465726d696e616c20746861742069732072756e6e696e6720796f7572206e6f64652c20616e64206b696c6c207468652073657373696f6e207769746820606374726c2b63602e0a322e205265737461727420697420616761696e20776974682074686520666f6c6c6f77696e6720636f6d6d616e643a0a6060600a24202e2f6a6f7973747265616d2d6e6f6465202d2d76616c696461746f72202d2d6b6579203c30784d794c6f6e67526177536565643e0a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a24202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e202d2d76616c696461746f72202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e0a232061726d7637202872617370626572727920706929206f6e6c793a0a2320496620796f752077616e7420796f7572206e6f646520746f2073686f7720757020696e207468652074656c656d657472793a2068747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f0a24202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e202d2d76616c696461746f72202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e202d2d74656c656d657472792d75726c2077733a2f2f74656c656d657472792e706f6c6b61646f742e696f3a313032342f0a0a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c20627574207468652064656661756c742069732032352e0a60606000000100000000000000a4c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[157,"9d0000000000000011000000000000000b000000690c546869732074696d652c20746865206f75747075742073686f756c642073686f77206120736c696768746c7920646966666572656e742073746172747570206f75747075743a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202276657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d2053746167696e6720546573746e65740a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a20415554484f524954590a4265737420626c6f636b3a20232273796e6365645f686569676874220a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a5573696e6720617574686f72697479206b657920202235596f75724a6f7953657373696f6e416464726573732220202320536565204e6f74650a2e2e2e0a6060600a2a2a4e6f74652a2a0a496620796f7572206073657373696f6e60207761732067656e65726174656420617320605363686e6f72726b656c20287372323535313929602c2069742077696c6c2073686f77206120636f6d706c6574656c7920646966666572656e7420616464726573732e20496620746869732068617070656e732c20676f206261636b20616e642067656e65726174652061206e6577205b73657373696f6e206b65795d282367656e65726174652d796f75722d6b6579732d3229207769746820604564776172647320286564323535313929602e20496620796f7520646f6e27742c20796f7572206e6f64652077696c6c2074727920746f207369676e20626c6f636b732077697468207468652077726f6e67206b65792e204173206120636f6e73657175656e63652c20796f752077696c6c2067657420736c617368656420616e64206b69636b6564206f7574206173206056616c696461746f72602e00000100000000000000e6c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[158,"9e0000000000000011000000000000000c0000002d01232323232046696e616c20537465700a0a4e6f7720697427732074696d6520746f20636f6e66696775726520796f7572206b65797320746f2073746172742076616c69646174696e672e2000000100000000000000f2c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[159,"9f0000000000000011000000000000000d000000cd0b2323232320436f6e66696775726520796f75722076616c696461746f72206b6579730a0a496e206f7264657220746f2062652061206056616c696461746f72602c20796f75206e65656420746f207374616b652e204e6f7465207468617420796f75206d6179206861766520746f207265667265736820796f75722062726f7773657220696620796f75277265206e6f7420736565696e6720746865206f7074696f6e7320726967687420617761792e0a0a2a2a494d504f5254414e543a2a2a205265616420737465702031332e206361726566756c6c792e20596f7572206e6f6465206e6565647320746f2062652066756c6c792073796e6365642c206265666f72652070726f63656564696e6720746f20737465702031342e0a0a312e205374696c6c20696e2074686520604d79204b657973602073696465626172206f6620746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c2063686f6f736520796f75722060737461736860206b65792e0a322e20436c69636b2074686520604672656520546f6b656e7360206c696e6b2062656c6f7720796f757220616464726573732c205b6f7220636c69636b20686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f666175636574292e20536f6c76652074686520636170746368612c20616e6420796f752073686f756c64207265636569766520746f6b656e732e0a332e2053656e6420736f6d6520746f6b656e7320746f20796f75722060636f6e74726f6c6c6572602e204974206e6565647320746f20706572666f726d206174206c656173742074776f207472616e73616374696f6e732c206275742062657474657220746f2073656e64207e31302e0a342e204e6f772c20636c69636b206056616c696461746f72736020696e2074686520736964656261722c20616e64207468656e20746865206056616c696461746f72205374616b696e6760207461622e0000010000000000000004c8875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[160,"a00000000000000011000000000000000e000000190c352e204c6f636174652074686520616464726573732f6b6579206e616d656420607374617368602c20616e6420636c69636b2060426f6e642046756e6473602e0a362e20496e2074686520706f7075702077696e646f772c2063686f6f736520796f75722060636f6e74726f6c6c657260206173207468652060636f6e74726f6c6c6572206163636f756e74602e0a372e20456e7465722074686520616d6f756e7420796f752077616e7420746f207374616b6520696e20746865206076616c756520626f6e64656460206669656c642e2028497420636f756c64206265207769736520746f206c65617665206120636f75706c65206f66204a6f79206c656674292e0a382e20496e2074686520607061796d656e742064657374696e6174696f6e602064726f70646f776e2c20746865726520617265207468726565206f7074696f6e732e2053656c656374207468652064656661756c7420605374617368206163636f756e742028696e6372656173652074686520616d6f756e74206174207374616b6529602c206f7220676f20746f205b616476616e6365645d2823626f6e64696e672d707265666572656e636573292e0a392e2054686520627574746f6e2060626f6e64602073686f756c6420626520686967686c696768746564206e6f772e20436c69636b2069742e0a31302e205479706520696e20796f75722070617373776f726420696e207468652060756e6c6f636b20776974682070617373776f726460206669656c6420616e6420636c69636b20607369676e20616e64207375626d6974602e0a31312e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f77206120605365742053657373696f6e204b65796020627574746f6e2e20436c69636b2069742e0a31322e20496e2074686520706f7075702c2073656c65637420796f7572206073657373696f6e6020617320796f7572206073657373696f6e206b65796020696e207468652064726f70646f776e2e20436f6e6669726d2c207369676e20616e64207375626d69742e0000010000000000000010c8875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[161,"a10000000000000011000000000000000f000000c10d31332e20596f75206e65656420746f20636865636b20796f7572206e6f64652c20776869636820796f752073746172746564206561726c6965722e20496e20746865206f757470757420607461726765743d2322626c6f636b5f68656967687422602073686f756c6420657175616c2060626573743a20232273796e6365645f68656967687422602e20446f206e6f742070726f63656564206265666f72652074686f73652074776f2076616c75657320617265206964656e746963616c2c20617320796f7572206e6f64652077696c6c2062652064726f70706564206f75742066726f6d207468652076616c696461746f727320696620796f7572206e6f6465206973206e6f742066756c6c792073796e6365642e20496620796f752064696420737461727420796f7572206e6f6465207769746820602d2d6e616d65203c6e6f64656e616d653e6020706172616d657465722c207468656e20796f7520616c736f2063616e20636865636b20696620796f7572206e6f64652069732066756c6c792073796e6365642066726f6d205b54656c656d657472795d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f236c6973742f4a6f7973747265616d253230546573746e65742532307632292e0a31342e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f772061206056616c69646174656020627574746f6e2e20436c69636b2069742e0a31352e20596f752063616e206c65617665207468652060756e7374616b65207468726573686f6c646020616e6420607061796d656e7420707265666572656e636573602061732064656661756c74732c206f7220676f20746f205b616476616e6365645d282376616c69646174696e672d707265666572656e636573292e20436f6e6669726d2c207369676e20616e64207375626d69742e0a0a5265667265736820796f75722062726f777365722c20616e642073656c65637420746865206056616c696461746f72204f7665727669657760207461622e20496620796f7572206163636f756e742073686f777320756e64657220606e657874207570602c207761697420666f7220746865206e6578742060657261602c20616e6420796f752077696c6c206265206d6f76656420746f20746865206076616c696461746f727360206c6973742e000001000000000000001cc8875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[162,"a200000000000000130000000000000002000000a90a2323232323204578616d706c6520776974682075736572206a6f7973747265616d0a0a546865206578616d706c652062656c6f7720617373756d65732074686520666f6c6c6f77696e673a0a2d20596f752077616e7420746f207265737461727420796f7572206e6f64652065766572792032346820286038363430306073290a2d20596f7520686176652073657475702061207573657220606a6f7973747265616d6020746f2072756e20746865206e6f64650a2d20546865207061746820746f2074686520606a6f7973747265616d2d6e6f6465602062696e61727920697320602f686f6d652f6a6f7973747265616d2f6a6f7973747265616d2d6e6f6465600a0a6060600a5b556e69745d0a4465736372697074696f6e3d4a6f7973747265616d204e6f64650a41667465723d6e6574776f726b2e7461726765740a0a5b536572766963655d0a547970653d73696d706c650a557365723d6a6f7973747265616d0a576f726b696e674469726563746f72793d2f686f6d652f6a6f7973747265616d2f0a4578656353746172743d2f686f6d652f6a6f7973747265616d2f6a6f7973747265616d2d6e6f6465205c0a20202020202020202d2d6f75742d706565727320313030205c0a20202020202020202d2d696e2d706565727320313030205c0a20202020202020202d2d76616c696461746f72205c0a20202020202020202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e205c0a20202020202020202d2d6e616d65203c6e6f64656e616d653e0a526573746172743d616c776179730a52756e74696d654d61785365633d38363430300a526573746172745365633d330a4c696d69744e4f46494c453d383139320a0a5b496e7374616c6c5d0a57616e74656442793d6d756c74692d757365722e7461726765740a60606000000100000000000000e8c8875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[163,"a3000000000000001300000000000000030000002102496620796f75206a7573742077616e7420746f206861766520746865206e6f6465207265737461727420696620697420637261736865732c207265706c6163653a0a0a6060600a526573746172743d616c776179730a52756e74696d654d61785365633d38363430300a2320776974680a526573746172743d6f6e2d6661696c7572650a6060600a00000100000000000000f4c8875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[164,"a400000000000000130000000000000004000000d9092323232323204578616d706c6520617320726f6f740a0a546865206578616d706c652062656c6f7720617373756d65732074686520666f6c6c6f77696e673a0a2d20596f752077616e7420746f207265737461727420796f7572206e6f64652065766572792032346820286038363430306073290a2d20596f752068617665207365747570206120757365722060726f6f746020746f2072756e20746865206e6f64650a2d20546865207061746820746f2074686520606a6f7973747265616d2d6e6f6465602062696e61727920697320602f726f6f742f6a6f7973747265616d2d6e6f6465600a0a6060600a5b556e69745d0a4465736372697074696f6e3d4a6f7973747265616d204e6f64650a41667465723d6e6574776f726b2e7461726765740a0a5b536572766963655d0a547970653d73696d706c650a557365723d726f6f740a576f726b696e674469726563746f72793d2f726f6f742f0a4578656353746172743d2f726f6f742f6a6f7973747265616d2d6e6f6465205c0a20202020202020202d2d6f75742d706565727320313030205c0a20202020202020202d2d696e2d706565727320313030205c0a20202020202020202d2d76616c696461746f72205c0a20202020202020202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e205c0a20202020202020202d2d6e616d65203c6e6f64656e616d653e0a526573746172743d616c776179730a52756e74696d654d61785365633d38363430300a526573746172745365633d330a4c696d69744e4f46494c453d383139320a0a5b496e7374616c6c5d0a57616e74656442793d6d756c74692d757365722e7461726765740a6060600000010000000000000000c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[165,"a5000000000000001300000000000000050000001d02496620796f75206a7573742077616e7420746f206861766520746865206e6f6465207265737461727420696620697420637261736865732c207265706c6163653a0a0a6060600a526573746172743d616c776179730a52756e74696d654d61785365633d38363430300a2320776974680a526573746172743d6f6e2d6661696c7572650a6060600000010000000000000006c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[166,"a6000000000000001300000000000000060000000d0d23232323205374617274696e672074686520736572766963650a0a596f752063616e206164642f72656d6f766520616e792060666c61677360206173206c6f6e6720617320796f752072656d656d62657220746f20696e636c75646520605c6020666f72206576657279206c696e652062757420746865206c6173742e20416c736f206e6f746520746861742073797374656d6420697320766572792073656e73697469766520746f2073796e7461782c20736f206d616b65207375726520746865726520617265206e6f20657874726120737061636573206265666f7265206f722061667465722074686520605c602e0a0a416674657220796f7520617265206861707079207769746820796f757220636f6e66696775726174696f6e3a0a0a6060600a242073797374656d63746c206461656d6f6e2d72656c6f61640a232074686973206973206f6e6c79207374726963746c79206e656365737361727920616674657220796f75206368616e67656420746865202e736572766963652066696c652061667465722072756e6e696e672c20627574206368616e6365732061726520796f752077696c6c206e65656420746f20757365206974206f6e6365206f722074776963652e0a2320696620796f7572206e6f6465206973207374696c6c2072756e6e696e672c206e6f77206973207468652074696d6520746f206b696c6c2069742e0a242073797374656d63746c207374617274206a6f7973747265616d2d6e6f64650a232069662065766572797468696e6720697320636f72726563746c7920636f6e666967757265642c207468697320636f6d6d616e642077696c6c206e6f742072657475726e20616e797468696e672e0a2320546f2076657269667920697427732072756e6e696e673a0a242073797374656d63746c20737461747573206a6f7973747265616d2d6e6f64650a2320746869732077696c6c206f6e6c792073686f7720746865206c61737420666577206c696e65732e20546f2073656520746865206c61746573742031303020656e74726965732028616e6420666f6c6c6f77206173206e657720617265206164646564290a24206a6f75726e616c63746c202d6e20313030202d66202d75206a6f7973747265616d2d6e6f64650000010000000000000024c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[167,"a700000000000000130000000000000007000000b5056060600a2320546f206d616b65207468652073657276696365207374617274206175746f6d61746963616c6c7920617420626f6f743a0a242073797374656d63746c20656e61626c65206a6f7973747265616d2d6e6f64650a6060600a596f752063616e207265737461727420746865207365727669636520776974683a0a2d206073797374656d63746c2072657374617274206a6f7973747265616d2d6e6f6465600a0a496620796f752077616e7420746f206368616e676520736f6d657468696e6720286f72206a7573742073746f70292c2072756e3a0a2d206073797374656d63746c2073746f70206a6f7973747265616d2d6e6f6465600a0a4265666f726520796f75206d616b6520746865206368616e6765732e204166746572206368616e67696e673a0a0a6060600a242073797374656d63746c206461656d6f6e2d72656c6f61640a242073797374656d63746c207374617274206a6f7973747265616d2d6e6f64650a6060600000010000000000000030c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[168,"a800000000000000130000000000000008000000b50623232323204572726f72730a0a496620796f75206d616b652061206d697374616b6520736f6d6577686572652c206073797374656d63746c207374617274206a6f7973747265616d2d6e6f6465602077696c6c2070726f6d70743a0a6060600a4661696c656420746f207374617274206a6f7973747265616d2d6e6f64652e736572766963653a20556e6974206a6f7973747265616d2d6e6f64652e73657276696365206973206e6f74206c6f616465642070726f7065726c793a20496e76616c696420617267756d656e742e0a5365652073797374656d206c6f677320616e64202773797374656d63746c20737461747573206a6f7973747265616d2d6e6f64652e736572766963652720666f722064657461696c732e0a6060600a466f6c6c6f772074686520696e737472756374696f6e732c20616e642073656520696620616e797468696e67206c6f6f6b732077726f6e672e20436f72726563742069742c207468656e3a0a0a6060600a242073797374656d63746c206461656d6f6e2d72656c6f61640a242073797374656d63746c207374617274206a6f7973747265616d2d6e6f64650a6060600a0000010000000000000078c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[169,"a900000000000000130000000000000009000000b10c23232053657474696e67730a0a496620796f7520646f6e27742077616e7420746f20757365207468652064656661756c742073657474696e67732c20686572652061726520736f6d65206f6620746865206f7074696f6e7320796f752063616e20636f6e6669677572652e0a0a2323232320426f6e64696e6720707265666572656e6365730a54686520626f6e64696e6720707265666572656e6365732064656369646573206f6e20686f7720776865726520796f757220284a6f7929207374616b696e672072657761726473206172652064697374726962757465642e2054686572652061726520746872656520616c7465726e6174697665733a0a312e20605374617368206163636f756e742028696e6372656173652074686520616d6f756e74206174207374616b652960202864656661756c74292e0a0a54686973206175746f6d61746963616c6c792073656e647320616c6c207265776172647320746865206073746173686020616464726573732c207768657265206974206765747320626f6e64656420617320616e206164646974696f6e616c207374616b652e20546869732077696c6c20696e63726561736520796f75722070726f626162696c697479206f662073746179696e6720696e20746865206076616c696461746f7260207365742e0a0a322e20605374617368206163636f756e742028646f206e6f20696e6372656173652074686520616d6f756e74206174207374616b6529600a0a4173206c696b652060312e602074686973206175746f6d61746963616c6c792073656e647320616c6c207265776172647320746865206073746173686020616464726573732c2062757420646f6573202a6e6f742a2067657420626f6e646564206173207374616b652c206d65616e696e6720796f752069742077696c6c206e6f742068656c70202267756172642220796f75722073706f7420696e20746865206076616c696461746f7260207365742e0a0a332e2060436f6e74726f6c6c6572206163636f756e74600a0a546869732073656e647320616c6c207265776172647320746f207468652060636f6e74726f6c6c6572602c20617420796f757220646973706f73616c2e0000010000000000000090c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[170,"aa0000000000000013000000000000000a000000410a232323232056616c69646174696e6720707265666572656e6365730a312e205468652060756e7374616b65207468726573686f6c646020697320746865206e756d626572206f662074696d657320796f752063616e2067657420736c61736865642028666f72206265696e67206f66666c696e6529206265666f726520796f75277265206175746f6d61746963616c6c79205b756e7374616b65645d2823756e7374616b696e67292e2041206c6f77206e756d6265722063616e206d65616e20796f752073746f70206265696e67206076616c696461746f7260206a757374206265636175736520796f757220696e7465726e657420697320646f776e2061206d696e7574652c2062757420696620796f752073657420746865206e756d62657220746f6f20686967682c20796f752077696c6c2067657420736c61736865642068656176696c7920696620796f7572206e6f646520627265616b7320646f776e206f7220796f75206c6f73652074686520696e7465726e657420666f7220616e20686f75722e0a0a322e2054686520607061796d656e7420707265666572656e6365736020697320686f772074686520286a6f7929207374616b696e672072657761726473206172652073706c6974206265747765656e20796f757273656c6620616e6420616e7920706f74656e7469616c205b6e6f6d696e61746f72735d28236e6f6d696e6174696e67292e205468652064656661756c7420283029206d65616e73207468617420746865207265776172642069732073706c6974206261736564206f6e2074686520616d6f756e74206f6620626f6e646564207374616b6520746865206076616c696461746f726020616e6420606e6f6d696e61746f7273602068617665207075742075702e2000000100000000000000aec9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[171,"ab0000000000000013000000000000000b00000075064578616d706c653a0a0a4c657420607660205b4a6f795d2062652074686520626f6e64656420746f6b656e7320666f72207468652076616c696461746f7220607374617368600a4c657420607060205b4a6f795d2062652074686520607061796d656e7420707265666572656e6365602064656369646564206279207468652076616c696461746f720a4c657420606e3160205b4a6f795d20626520746865c2a0626f6e64656420746f6b656e7320666f7220746865206e6f6d696e61746f723120607374617368600a4c657420606e3260205b4a6f795d20626520746865c2a0626f6e64656420746f6b656e7320666f7220746865206e6f6d696e61746f723220607374617368600a4c657420607260205b4a6f795d206265207468652072657761726420746861742060657261600a0a6060600a23207061796f757420666f72207468652076616c696461746f720a70202b2028762f28762b6e312b6e32292a28722d7029290a23207061796f757420666f7220746865206e6f6d696e61746f72310a286e312f28762b6e312b6e32292a28722d7029290a60606000000100000000000000bac9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[172,"ac0000000000000013000000000000000c0000006d092323204e6f6d696e6174696e670a0a496620796f752077616e7420746f2067657420736f6d652072657475726e206f6e20796f757220746f6b656e7320776974686f75742072756e6e696e672061206e6f646520796f757273656c662c20796f752063616e20606e6f6d696e6174656020616e6f74686572206076616c696461746f726020616e64206765742061207368617265206f6620746865697220726577617264732e0a0a54686973206d6967687420616c736f20636f6d6520696e2068616e64792069662074686572652061726520746f6f206d616e79206076616c696461746f72736020616e6420796f7520646f6e2774206861766520656e6f75676820746f6b656e732067657420612073706f742c206f7220696620796f75206861766520746f207368757420646f776e20796f7572206f776e206e6f646520666f722061207768696c652e0a0a232323232047656e6572617465206b6579730a496620796f7520686176656e277420616c7265616479206265656e207468726f756768207468652070726f63657373206f662073657474696e6720757020796f757220607374617368602c2060636f6e74726f6c6c65726020616e64206073657373696f6e60206b65792c20796f75206669727374206e65656420746f2067656e657261746520796f7572206b65797320287365652076616c696461746f72207365747570292e204e6f7465207468617420796f7520646f6e2774206e6565642061206073657373696f6e60206b657920746f206e6f6d696e6174652c20736f20796f752063616e20736b69702074686f73652073746570732e00000100000000000000d2c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[173,"ad0000000000000013000000000000000d0000006d0b2323232320436f6e66696775726520796f7572206e6f6d696e6174696e67206b6579730a496e206f7264657220746f206265206120606e6f6d696e61746f72602c20796f75206e656564207374616b652e204e6f7465207468617420796f75206d6179206861766520746f207265667265736820796f75722062726f7773657220696620796f75277265206e6f7420736565696e6720746865206f7074696f6e7320726967687420617761792e20496620796f7520686176652070726576696f75736c79206265656e2061206056616c696461746f72602c206f7220747269656420746f20646f20736f2c20736b697020616865616420746f20737465702060392e602e0a0a312e20496e2074686520604d79204b6579736020736964656261722c2063686f6f736520796f75722060737461736860206b65792e0a322e20436c69636b2074686520604672656520546f6b656e7360206c696e6b2062656c6f7720796f757220616464726573732c205b6f7220636c69636b20686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f666175636574292e20536f6c76652074686520636170746368612c20616e6420796f752073686f756c64207265636569766520746f6b656e732e0a332e2053656e6420736f6d6520746f6b656e7320746f20796f75722060636f6e74726f6c6c6572602e204974206e6565647320746f20706572666f726d206174206c656173742074776f207472616e73616374696f6e732c206275742062657474657220746f2073656e64207e31302e0a342e204e6f772c20636c69636b206056616c696461746f72736020696e2074686520736964656261722c20616e64207468656e20746865206056616c696461746f72205374616b696e6760207461622e0a352e204c6f636174652074686520616464726573732f6b6579206e616d656420607374617368602c20616e6420636c69636b2060426f6e642046756e6473602e00000100000000000000f0c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[174,"ae0000000000000013000000000000000e000000e909362e20496e2074686520706f7075702077696e646f772c2063686f6f736520796f75722060636f6e74726f6c6c657260206173207468652060636f6e74726f6c6c6572206163636f756e74602e0a372e20456e7465722074686520616d6f756e7420796f752077616e7420746f207374616b6520696e20746865206076616c756520626f6e64656460206669656c642e0a382e20496e2074686520607061796d656e742064657374696e6174696f6e602064726f70646f776e2c20746865726520617265207468726565206f7074696f6e732e2053656c656374207468652064656661756c7420605374617368206163636f756e742028696e6372656173652074686520616d6f756e74206174207374616b6529602c206f7220676f20746f205b616476616e6365645d2823626f6e64696e672d707265666572656e636573292e0a392e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f77206120605365742053657373696f6e204b65796020616e64206120604e6f6d696e6174696e676020627574746f6e2e20436c69636b20746865206c61747465722e0a31302e20496e2074686520706f7075702c2073656c6563742f70617374652074686520607374617368602061646472657373206f6620746865206056616c696461746f726020796f75207769736820746f206e6f6d696e6174652e20436f6e6669726d2c207369676e20616e64207375626d69742e0a0a496e20746865206e6578742060657261602c20796f752077696c6c2073686f77206173206120606e6f6d696e61746f7260206f6620746865206056616c696461746f726020796f75206e6f6d696e617465642e00000100000000000000fcc9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[175,"af00000000000000140000000000000002000000e10e232323232053657373696f6e206b65790a0a44696420796f75206163636964656e74616c6c792063686f6f736520605363686e6f72726b656c20287372323535313929602c20696e7374656164206f66206045647761726473202865643235353139296020666f7220796f7572206073657373696f6e60206b65792c20616e64206469646e2774206e6f74696365206265666f726520796f7520636f6e6669677572656420796f7572206056616c696461746f72206b657973603f20546869732063616e206265207265736f6c7665642e0a0a312e20476f20746f206056616c696461746f727360202d3e206056616c696461746f72205374616b696e676020616e642060556e7374616b65602e0a0a322e2047656e65726174652061206e6577206073657373696f6e60206b6579207769746820604564776172647320286564323535313929602c207265737461727420796f7572206e6f64652c20616e64207265706c616365207468652060726177207365656460207769746820746865206e6577206f6e652e0a0a332e205468656e2c2063686f6f7365206053657474696e67736020696e2074686520736964656261722c20616e64207377697463682066726f6d20604261736963206665617475726573206f6e6c796020746f206046756c6c79206665617475726564602e0a0a342e20476f20746f206045787472696e73696373602c20616e642073656c65637420796f75722060636f6e74726f6c6c657260206b65792066726f6d207468652064726f70646f776e2061742074686520746f702e20496e20746865207365636f6e642064726f70646f776e2c2073656c656374206073657373696f6e602c20616e6420696e207468652074686972642c20607365744b6579602e2046696e616c6c792c2063686f6f736520796f7572206e6577206073657373696f6e60206b657920696e2074686520666f7572746820616e642066696e616c2064726f70646f776e2c20616e64207375626d69742e0a0a352e204f6e636520697420636f6e6669726d732c20676f206261636b20746f206056616c696461746f727360202d3e206056616c696461746f72205374616b696e676020616e6420605374616b65602e0a0a496e2074686520604e657874207570602c20796f7572206e6577206073657373696f6e60206b65792073686f756c642073686f772c20616e64206d61746368207468652060617574686f72697479206b65796020696e20796f7572206e6f64652e20286d696e7573207468652066696e616c20332063686172616374657273292e0a0000010000000000000086ca875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[176,"b000000000000000140000000000000003000000850b2323232320556e7374616b696e670a0a496620796f752073746f702076616c69646174696e67206279206b696c6c696e6720796f7572206e6f6465206265666f726520756e7374616b696e672c20796f752077696c6c2067657420736c617368656420616e64206b69636b65642066726f6d20746865206076616c696461746f7260207365742e20496620796f75206b6e6f7720696e20616476616e636520287e3168722920796f752063616e20646f2074686520666f6c6c6f77696e6720737465707320696e73746561643a0a0a46697273742c206d616b65207375726520796f75206861766520736574206046756c6c792046656174757265646020696e7465726661636520696e20746865206053657474696e67736020736964656261722e0a0a312e20496e206056616c696461746f72205374616b696e67602c20636c69636b206053746f702056616c69646174696e6760207769746820796f757220636f6e74726f6c6c65722e20546869732063616e20616c736f20626520646f6e6520766961206045787472696e736963603a20576974682060636f6e74726f6c6c657260202d3e20607374616b696e6760202d3e20606368696c6c2829602e0a0a496620796f7520617265206a7573742070617573696e6720746865206076616c696461746f726020616e6420696e74656e6420746f207374617274206974207570206c617465722c20796f752063616e2073746f7020686572652e205768656e20796f752061726520726561647920746f20737461727420616761696e2c206669726520757020796f7572206e6f64652c20676f20746f206056616c696461746f72205374616b696e67602c20616e6420636c69636b206056616c6964617465602e0a0a496620796f752077616e7420746f2073746f70206265696e672061206076616c696461746f726020616e64206d6f766520796f757220746f6b656e7320746f206f746865722f626574746572207573652c20636f6e74696e75652e000001000000000000009eca875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[177,"b10000000000000014000000000000000400000011040a322e204e65787420796f75206d75737420756e626f6e642e20496e206045787472696e73696373602c207573696e67207468652060636f6e74726f6c6c6572602c2073656c65637420607374616b696e6760202d3e2060756e626f6e642876616c7565296020616e642063686f6f736520686f77206d75636820796f752077616e7420746f20756e626f6e642c20603c756e626f6e64696e673e602e205375626d6974205472616e73616374696f6e2e0a0a4174207468697320706f696e742c20796f752063616e206a7573742077616974203268727320746f20626520737572652c20616e642070726f6365656420746f20737465702060362e60200a0a4f723a0a00000100000000000000bcca875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[178,"b200000000000000140000000000000005000000550e332e20476f20746f2060436861696e20537461746560202d3e20607374616b696e6760202d3e20606c6564676572284163636f756e744964293a204f7074696f6e3c5374616b696e674c65646765723e602077697468207468652060636f6e74726f6c6c6572602e204f75747075743a0a6060600a2320496620796f752068617665207375636365737366756c6c7920696e6974696174656420756e7374616b696e673a0a7b227374617368223a2235596f7572537461736841646472657373222c22746f74616c223a3c746f745f626f6e6465643e2c22616374697665223a2c3c6163745f626f6e6465643e3a5b7b2276616c7565223a3c756e626f6e64696e673e2c22657261223a3c455f756e626f6e6465643e7d5d7d0a2320496620796f752068617665206e6f74207375636365737366756c6c7920696e6974696174656420756e7374616b696e672c206f722069742068617320616c726561647920636f6d706c657465643a0a7b227374617368223a2235596f7572537461736841646472657373222c22746f74616c223a3c746f745f626f6e6465643e2c22616374697665223a2c223c6163745f626f6e6465643e223a5b5d7d0a6060600a2a20603c746f745f626f6e6465643e602049732074686520746f74616c20616d6f756e7420796f752068617665207374616b65642f626f6e6465640a2a20603c6163745f626f6e6465643e602049732074686520616d6f756e74206f6620746f6b656e732074686174206973206e6f74206265696e6720756e6c6f636b65640a2a20603c756e626f6e64696e673e602049732074686520616d6f756e74206f6620746f6b656e73207468617420697320696e207468652070726f63657373206f66206265696e672066726565640a20202a20603c756e626f6e64696e673e60202b20603c6163745f626f6e6465643e60203d20603c746f745f626f6e6465643e600a2a20603c455f756e626f6e6465643e6020497320746865206065726160207768656e20796f757220746f6b656e732077696c6c2062652022667265652220746f207472616e736665722f626f6e642f766f74650a0a5468652060657261602073686f756c64206f6e6c79206368616e67652065766572792036303020626c6f636b732c20627574206365727461696e206576656e7473206d617920747269676765722061206e6577206572612e20546f2063616c63756c617465207768656e20796f75722066756e6473206172652022667265652200000100000000000000e6ca875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[179,"b300000000000000140000000000000006000000fd09342e20496e2060436861696e20537461746560202d3e20607374616b696e6760202d3e206063757272656e744572612829602e204c6574206f757470757420626520603c455f63757272656e743e600a352e20496e20604578706c6f7265646020636f6c6c65637420603c626c6f636b735f696e5f6572613e2f3630306020756e646572206572612e0a6060600a363030283c455f756e626f6e6465643e202d203c455f63757272656e743e202d203129202d203c626c6f636b735f696e5f6572613e203d203c626c6f636b735f6c6566743e0a283c626c6f636b735f6c6566743e202a2036292f3630203d203c6d696e757465735f6c6566743e0a6060600a416674657220603c6d696e757465735f6c6566743e6020686173207061737365642c2069652e20603c455f63757272656e743e60203d20603c455f756e626f6e6465643e602c20796f757220746f6b656e732073686f756c6420626520667265652e0a52657065617420737465702060332e6020696620796f752077616e7420746f20636f6e6669726d2e0a6060600a2320496620796f75206861766520636f6d706c6574656420756e7374616b696e673a0a7b227374617368223a2235596f7572537461736841646472657373222c22746f74616c223a3c746f745f626f6e6465643e2c22616374697665223a2c223c6163745f626f6e6465643e223a5b5d7d0a6060600a0a0a362e20496e206045787472696e73696373602c207573696e67207468652060636f6e74726f6c6c6572602c2073656c65637420607374616b696e6760202d3e20607769746864726177556e626f6e6465642829600a0a596f757220746f6b656e732073686f756c64206e6f77206265202266726565222e0000010000000000000010cb875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[180,"b400000000000000140000000000000007000000ad062323232320526573746172742076616c69646174696e672061667465722067657474696e6720626f6f7465640a496620796f7572206e6f6465207368757420646f776e206265666f726520796f75206861642073746f707065642076616c69646174696e6720616e642f6f722074686520677261636520706572696f6420666f7220607374616b696e672e6368696c6c602077617320636f6d706c657465642c20616c6c20796f75206e65656420746f206973207374617274206076616c69646174696e676020616761696e2066726f6d206056616c696461746f72205374616b696e67602e204a757374206d616b652073757265207468617420796f7572206e6f6465206973206261636b2075702c20616e64207468652060617574686f7269747960206b65792073686f77696e67206174206e6f64652073746172747570206973207468652073616d6520617320796f7572206073657373696f6e60206b65792e0a2a2a4e6f74652a2a0a497420646f65736e2774206d617474657220696620796f75722060737461736860206861732061206062616c616e636560203c2060626f6e646564602e0a0000010000000000000022cb875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[181,"b5000000000000001c00000000000000010000009c4a6f7973747265616d20666f72756d20697320617765736f6d652c206c6574277320706f73742e00000100000000000000869af95d0000000083f56c776eb3cfba9c7c82f73cbcabd9c203e15cb8e11bde2857a1ae84691b47"],[182,"b6000000000000001d00000000000000010000009c446f206c6574207573206b6e6f7720686f7720746f2062652061206469737472696275746f722e000001000000000000003079fb5d0000000015960c38e07613475b5cbaa2849cb65a5a9a11ea034860a4e7519d611f62b00f"],[183,"b7000000000000001e00000000000000010000002901596573204920616d2061637475616c6c7920616e2061727469737420616e64207468697320697320746865206265737420492063616e20646f207769746820637265617469766974792e00000100000000000000ec33275e00000000b4c62287a60c28c7da4f09db40396e9b02b8bbad7aac6bf574766fe33577185d"],[184,"b8000000000000001e00000000000000020000006074657374207265706c792028736e65616b79206564697429000001000000000000003236275e00000000b4c62287a60c28c7da4f09db40396e9b02b8bbad7aac6bf574766fe33577185d"],[185,"b9000000000000001e00000000000000030000002c666f6f206261722062617a000001000000000000003446275e00000000b4c62287a60c28c7da4f09db40396e9b02b8bbad7aac6bf574766fe33577185d"],[186,"ba000000000000001f00000000000000010000002c6265746120746872656164000001000000000000005657275e00000000b4c62287a60c28c7da4f09db40396e9b02b8bbad7aac6bf574766fe33577185d"],[187,"bb000000000000001f00000000000000020000002874657374207265706c7900000100000000000000c257275e00000000b4c62287a60c28c7da4f09db40396e9b02b8bbad7aac6bf574766fe33577185d"]],"threads":[[1,"01000000000000003c436f6465206f6620436f6e647563740100000000000000010000000001000000000000000100000000000000082c115d0000000042be11a654ef34dbbfba9aa252ed093ef0890e874091b66e4193913ee2913953"],[2,"02000000000000001101546869732069732074686520666972737420706f7374206576657220666f7220746865204a6f7973747265616d205368697420506f7374696e6720436f6d6d756e6974790300000000000000010000000006000000000000000100000000000000de2e115d0000000007cd1fb09a58aff8bf48eba12fc659d37822a74b81270b85a1fb5baf3aa591cf"],[3,"030000000000000070486f7720746f20537461727420412053746f72616765204e6f64653f0100000000000000020000000001000000000000000100000000000000202f115d0000000007cd1fb09a58aff8bf48eba12fc659d37822a74b81270b85a1fb5baf3aa591cf"],[4,"04000000000000003c436f6e74656e742043757261746f720200000000000000010000000002000000000000000100000000000000c41a125d00000000b032b7392bd29cd9389d56891d38495ea2b1bafa9793ae3d26a2477669b8eb6e"],[5,"05000000000000004043727970746f63757272656e6369657303000000000000000200000000020000000000000001000000000000003cba125d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[6,"06000000000000006c496e74726f64756374696f6e3a2042656465686f204d656e64657201000000000000000300000000020000000000000001000000000000004460135d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[7,"0700000000000000505374616b656420506f6463617374202d204570360300000000000000030000000003000000000000000100000000000000a0d1155d000000007cbd2c992945e5fc83d937a180e402ff32699718c1fc753f7a0214492e3ff035"],[8,"080000000000000078496d70726f76696e6720466f72756d2046756e6374696f6e616c6974793f01000000000000000400000000070000000000000001000000000000006aaf1c5d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[9,"0900000000000000804469737472696275746f72202842616e6477696474682050726f76696465722902000000000000000200000001010000000000000094052a5d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad744d65616e7420746f20626520612073756263617465676f72792e2e2e2e01000000000000000100000000000000e8022a5d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[10,"0a000000000000008c4a6f7973747265616d20556e6f6666696369616c205475746f7269616c20566964656f0100000000000000050000000003000000000000000100000000000000d8122a5d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[11,"0b000000000000006041626f7574204a6f7973747265616d20426f756e746965730a0000000000000001000000000f000000000000000100000000000000aab7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[12,"0c000000000000000501426f756e7479202330202d204669782062726f6b656e206c696e6b732c20666f726d617474696e672c2065746320696e20524541444d4573202d2024322f6669780a00000000000000020000000005000000000000000100000000000000c2b7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[13,"0d00000000000000f4426f756e7479202331202d20496d70726f7665206e6574776f726b696e67202b2070726f6d6f74696f6e616c2063616d706169676e202d20243530302a0a00000000000000030000000009000000000000000100000000000000e6b7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[14,"0e00000000000000f8426f756e7479202332202d204c697374206f66206d656469612066696c652074797065732f657874656e73696f6e7320706c617961626c65202d202435300a00000000000000040000000002000000000000000100000000000000feb7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[15,"0f000000000000000d01426f756e7479202333202d20436f6d70696c65206c697374206f662066726565206d6564696120616e64206d6574616461746120736f7572636573202d20243230302a0a0000000000000005000000000600000000000000010000000000000028b8825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[16,"100000000000000078536574757020596f75722056616c696461746f72202857696e646f777329040000000000000001000000000f0000000000000001000000000000008e81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[17,"110000000000000070536574757020596f75722056616c696461746f7220284c696e757829040000000000000002000000000f000000000000000100000000000000ac81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[18,"120000000000000068536574757020596f75722056616c696461746f7220284d616329040000000000000003000000000e000000000000000100000000000000ca81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[19,"1300000000000000c8416476616e636564202852756e20417320536572766963652c2053657474696e677320616e64204e6f6d696e6174696e6729040000000000000004000000000e0000000000000001000000000000005482835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[20,"14000000000000003c54726f75626c6573686f6f74696e6704000000000000000500000000070000000000000001000000000000007882835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[21,"15000000000000006c536574757020596f75722053746f726167652050726f766964657205000000000000000100000000190000000000000001000000000000008083835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[22,"16000000000000003c54726f75626c6573686f6f74696e6705000000000000000200000000090000000000000001000000000000009883835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[23,"1700000000000000685265676973746572696e6720466f72204d656d626572736869700600000000000000010000000003000000000000000100000000000000ca84835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[24,"18000000000000007c4765742053746172746564204173204120436f756e63696c204d656d6265720600000000000000020000000008000000000000000100000000000000e284835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[25,"19000000000000003c54726f75626c6573686f6f74696e670600000000000000030000000001000000000000000100000000000000f484835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[26,"1a0000000000000034427567205265706f72746572730b000000000000000100000000030000000000000001000000000000003085835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[27,"1b000000000000005c4275696c646572732028436f6e7472696275746f7273290b000000000000000200000000010000000000000001000000000000008485835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[28,"1c00000000000000684a6f7973747265616d20666f72756d20697320617765736f6d650100000000000000060000000001000000000000000100000000000000869af95d0000000083f56c776eb3cfba9c7c82f73cbcabd9c203e15cb8e11bde2857a1ae84691b47"],[29,"1d0000000000000068486f772063616e207765206265206469737472696275746f723f09000000000000000100000000010000000000000001000000000000003079fb5d0000000015960c38e07613475b5cbaa2849cb65a5a9a11ea034860a4e7519d611f62b00f"],[30,"1e000000000000002c54657374207468726561640100000000000000070000000003000000000000000100000000000000ec33275e00000000b4c62287a60c28c7da4f09db40396e9b02b8bbad7aac6bf574766fe33577185d"],[31,"1f00000000000000405465737420746872656164206265746101000000000000000800000000020000000000000001000000000000005657275e00000000b4c62287a60c28c7da4f09db40396e9b02b8bbad7aac6bf574766fe33577185d"]]}
diff --git a/node/res/forum_data_acropolis_serialized.json b/node/res/forum_data_acropolis_serialized.json
new file mode 100644
index 0000000000..cd8e446d18
--- /dev/null
+++ b/node/res/forum_data_acropolis_serialized.json
@@ -0,0 +1 @@
+{"categories":[[1,{"id":1,"title":[71,101,110,101,114,97,108,32,68,105,115,99,117,115,115,105,111,110],"description":[72,101,114,101,32,121,111,117,32,99,97,110,32,100,105,115,99,117,115,115,32,97,110,121,116,104,105,110,103,32,121,111,117,32,119,97,110,116,33,10,40,106,117,115,116,32,107,101,101,112,32,116,104,105,110,103,115,32,99,105,118,105,108,41],"created_at":{"block":1,"time":1561400376},"deleted":false,"archived":false,"num_direct_subcategories":0,"num_direct_unmoderated_threads":8,"num_direct_moderated_threads":0,"position_in_parent_category":null,"moderator_id":"5CJzTaCp5fuqG7NdJQ6oUCwdmFHKichew8w4RZ3zFHM8qSe6"}],[2,{"id":2,"title":[74,111,121,115,116,114,101,97,109,32,82,111,108,101,115],"description":[85,115,101,32,116,104,105,115,32,99,97,116,101,103,111,114,121,32,116,111,32,100,105,115,99,117,115,115,32,116,104,101,32,99,117,114,114,101,110,116,32,97,110,100,32,102,117,116,117,114,101,32,74,111,121,115,116,114,101,97,109,32,110,101,116,119,111,114,107,32,114,111,108,101,115,46],"created_at":{"block":1,"time":1561400460},"deleted":false,"archived":false,"num_direct_subcategories":5,"num_direct_unmoderated_threads":1,"num_direct_moderated_threads":1,"position_in_parent_category":null,"moderator_id":"5CJzTaCp5fuqG7NdJQ6oUCwdmFHKichew8w4RZ3zFHM8qSe6"}],[3,{"id":3,"title":[79,102,102,45,116,111,112,105,99,32,40,115,104,105,116,112,111,115,116,105,110,103,41],"description":[74,117,115,116,32,107,101,101,112,32,116,104,105,110,103,115,32,99,105,118,105,108,33],"created_at":{"block":1,"time":1561400940},"deleted":false,"archived":false,"num_direct_subcategories":0,"num_direct_unmoderated_threads":3,"num_direct_moderated_threads":0,"position_in_parent_category":null,"moderator_id":"5CJzTaCp5fuqG7NdJQ6oUCwdmFHKichew8w4RZ3zFHM8qSe6"}],[4,{"id":4,"title":[86,97,108,105,100,97,116,111,114,115],"description":[72,101,114,101,32,121,111,117,32,99,97,110,32,100,105,115,99,117,115,115,32,97,108,108,32,116,104,105,110,103,115,32,114,101,108,97,116,101,100,32,116,111,32,98,101,105,110,103,32,97,32,96,86,97,108,105,100,97,116,111,114,96,194,160,111,110,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,110,101,116,119,111,114,107,46],"created_at":{"block":1,"time":1561467750},"deleted":false,"archived":false,"num_direct_subcategories":0,"num_direct_unmoderated_threads":5,"num_direct_moderated_threads":0,"position_in_parent_category":{"parent_id":2,"child_nr_in_parent_category":0},"moderator_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[5,{"id":5,"title":[83,116,111,114,97,103,101,32,80,114,111,118,105,100,101,114,115],"description":[72,101,114,101,32,121,111,117,32,99,97,110,32,100,105,115,99,117,115,115,32,97,108,108,32,109,97,116,116,101,114,115,32,114,101,103,97,114,100,105,110,103,32,116,104,101,32,96,83,116,111,114,97,103,101,32,80,114,111,118,105,100,101,114,96,194,160,114,111,108,101,32,111,110,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,110,101,116,119,111,114,107,46],"created_at":{"block":1,"time":1561467828},"deleted":false,"archived":false,"num_direct_subcategories":0,"num_direct_unmoderated_threads":2,"num_direct_moderated_threads":0,"position_in_parent_category":{"parent_id":2,"child_nr_in_parent_category":1},"moderator_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[6,{"id":6,"title":[67,111,117,110,99,105,108,32,77,101,109,98,101,114,115],"description":[72,101,114,101,32,121,111,117,32,99,97,110,32,100,105,115,99,117,115,115,32,97,108,108,32,109,97,116,116,101,114,115,32,114,101,103,97,114,100,105,110,103,32,116,104,101,32,96,67,111,117,110,99,105,108,32,77,101,109,98,101,114,96,32,114,111,108,101,32,111,110,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,110,101,116,119,111,114,107,46],"created_at":{"block":1,"time":1561467888},"deleted":false,"archived":false,"num_direct_subcategories":0,"num_direct_unmoderated_threads":3,"num_direct_moderated_threads":0,"position_in_parent_category":{"parent_id":2,"child_nr_in_parent_category":2},"moderator_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[7,{"id":7,"title":[71,111,118,101,114,110,97,110,99,101,32,97,110,100,32,80,114,111,112,111,115,97,108,115],"description":[84,104,105,115,32,105,115,32,116,104,101,32,112,108,97,99,101,32,116,111,32,100,105,115,99,117,115,115,32,103,111,118,101,114,110,97,110,99,101,32,111,110,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,78,101,116,119,111,114,107,46],"created_at":{"block":1,"time":1561468044},"deleted":true,"archived":false,"num_direct_subcategories":0,"num_direct_unmoderated_threads":0,"num_direct_moderated_threads":0,"position_in_parent_category":null,"moderator_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[8,{"id":8,"title":[74,111,121,115,116,114,101,97,109,32,67,111,109,112,101,116,105,116,105,111,110,115],"description":[84,104,105,115,32,99,97,116,101,103,111,114,121,32,99,111,110,116,97,105,110,115,32,105,110,102,111,32,111,110,32,112,97,115,116,44,32,99,117,114,114,101,110,116,32,97,110,100,32,102,117,116,117,114,101,32,99,111,109,112,101,116,105,116,105,111,110,115,32,102,111,114,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,99,111,109,109,117,110,105,116,121,46],"created_at":{"block":1,"time":1562489298},"deleted":true,"archived":false,"num_direct_subcategories":0,"num_direct_unmoderated_threads":0,"num_direct_moderated_threads":0,"position_in_parent_category":null,"moderator_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[9,{"id":9,"title":[68,105,115,116,114,105,98,117,116,111,114,32,40,66,97,110,100,119,105,100,116,104,32,80,114,111,118,105,100,101,114,41],"description":[72,101,114,101,32,121,111,117,32,99,97,110,32,100,105,115,99,117,115,115,32,97,108,108,32,116,104,105,110,103,115,32,114,101,108,97,116,101,100,32,116,111,32,98,101,105,110,103,32,97,32,68,105,115,116,114,105,98,117,116,111,114,32,111,110,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,110,101,116,119,111,114,107,46,10,10,84,104,105,115,32,114,111,108,101,32,119,105,108,108,32,98,101,99,111,109,101,32,97,99,116,105,118,97,116,101,100,32,102,111,114,32,116,104,101,32,110,101,120,116,32,116,101,115,116,110,101,116,33],"created_at":{"block":1,"time":1563034584},"deleted":false,"archived":false,"num_direct_subcategories":0,"num_direct_unmoderated_threads":1,"num_direct_moderated_threads":0,"position_in_parent_category":{"parent_id":2,"child_nr_in_parent_category":3},"moderator_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[10,{"id":10,"title":[74,111,121,115,116,114,101,97,109,32,66,111,117,110,116,105,101,115],"description":[65,32,99,97,116,101,103,111,114,121,32,102,111,114,32,112,114,111,112,111,115,105,110,103,44,32,112,111,115,116,105,110,103,32,97,110,100,32,101,118,97,108,117,97,116,105,110,103,32,98,111,117,110,116,105,101,115,32,102,111,114,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,112,114,111,106,101,99,116,46],"created_at":{"block":1,"time":1568847744},"deleted":false,"archived":false,"num_direct_subcategories":0,"num_direct_unmoderated_threads":5,"num_direct_moderated_threads":0,"position_in_parent_category":null,"moderator_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[11,{"id":11,"title":[66,117,105,108,100,101,114,115,32,97,110,100,32,66,117,103,32,82,101,112,111,114,116,101,114,115],"description":[72,101,108,112,32,111,117,116,32,74,111,121,115,116,114,101,97,109,32,98,121,32,114,101,112,111,114,116,105,110,103,32,98,117,103,115,32,111,114,32,99,111,110,116,114,105,98,117,116,105,110,103,32,116,111,32,111,117,114,32,115,111,102,116,119,97,114,101,46],"created_at":{"block":1,"time":1568899824},"deleted":false,"archived":false,"num_direct_subcategories":0,"num_direct_unmoderated_threads":2,"num_direct_moderated_threads":0,"position_in_parent_category":{"parent_id":2,"child_nr_in_parent_category":4},"moderator_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}]],"posts":[[1,{"id":1,"thread_id":1,"nr_in_thread":1,"current_text":[80,108,101,97,115,101,32,102,111,108,108,111,119,32,111,117,114,32,116,101,114,109,115,32,111,102,32,115,101,114,118,105,99,101,44,32,97,110,100,32,103,101,110,101,114,97,108,32,114,117,108,101,115,32,97,110,100,32,103,117,105,100,101,108,105,110,101,115,32,102,111,114,32,116,104,101,32,102,111,114,117,109,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1561406472},"author_id":"5DaDUnNVzZPwK9KLwyPFgeSbc9Xeh6G39A2oq36tiV9aEzcx"}],[2,{"id":2,"thread_id":2,"nr_in_thread":1,"current_text":[87,104,97,116,32,100,111,32,121,111,117,32,101,120,112,101,99,116,32,109,101,32,116,111,32,119,114,105,116,101,63],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1561407198},"author_id":"5CEw8JxuM1kh34VoocG9bqqjqs98pdA7fG5uaTtPdjzShqFb"}],[3,{"id":3,"thread_id":3,"nr_in_thread":1,"current_text":[87,105,108,108,32,98,101,32,112,111,115,116,105,110,103,32,97,108,108,32,116,104,101,32,105,110,102,111,32,104,101,114,101,32,117,110,116,105,108,32,116,104,101,110,32,10,71,111,32,104,101,114,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,104,101,108,112,100,101,115,107,47,116,114,101,101,47,109,97,115,116,101,114,47,114,111,108,101,115,47,115,116,111,114,97,103,101,45,112,114,111,118,105,100,101,114,115],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1561407264},"author_id":"5CEw8JxuM1kh34VoocG9bqqjqs98pdA7fG5uaTtPdjzShqFb"}],[4,{"id":4,"thread_id":2,"nr_in_thread":2,"current_text":[84,104,105,115,32,105,115,32,116,104,101,32,118,101,114,121,32,102,105,114,115,116,32,114,101,112,108,121,32,111,110,32,116,104,114,101,97,100,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1561444074},"author_id":"5CiGc9SzUjaVPZd66HVDnJNSRh5Ld3TK477nGYiwurwHZnZv"}],[5,{"id":5,"thread_id":2,"nr_in_thread":3,"current_text":[74,117,115,116,32,99,97,109,101,32,116,111,32,115,97,121,32,116,104,105,115,32,105,115,32,116,104,101,32,116,117,114,100,32,112,111,115,116,32,105,110,32,116,104,101,32,116,104,114,101,97,100,33],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1561451058},"author_id":"5DaDUnNVzZPwK9KLwyPFgeSbc9Xeh6G39A2oq36tiV9aEzcx"}],[6,{"id":6,"thread_id":2,"nr_in_thread":4,"current_text":[34,87,104,97,116,32,100,111,32,121,111,117,32,101,120,112,101,99,116,32,109,101,32,116,111,32,119,114,105,116,101,63,34,10,65,116,32,108,101,97,115,116,32,97,110,32,101,110,116,105,114,101,32,110,111,118,101,108],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1561456236},"author_id":"5G3jMHcbqgzyqCiiBMZ26LFZoqTPw77XzMqwj8cyrb58ybhE"}],[7,{"id":7,"thread_id":4,"nr_in_thread":1,"current_text":[65,110,121,32,116,104,111,117,103,104,116,115,32,97,98,111,117,116,32,104,111,119,32,116,104,105,115,32,114,111,108,101,32,109,105,103,104,116,32,119,111,114,107,63,10,104,116,116,112,115,58,47,47,119,119,119,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,114,111,108,101,115,35,67,111,110,116,101,110,116,45,67,117,114,97,116,111,114],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1561467588},"author_id":"5G3jMHcbqgzyqCiiBMZ26LFZoqTPw77XzMqwj8cyrb58ybhE"}],[8,{"id":8,"thread_id":5,"nr_in_thread":1,"current_text":[87,104,105,99,104,32,111,110,101,115,32,100,111,32,121,111,117,32,116,104,105,110,107,32,119,105,108,108,32,115,116,105,108,108,32,98,101,32,97,114,111,117,110,100,32,98,121,32,50,48,51,48,63],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1561508412},"author_id":"5H8kTuZp2T2geceCuaEQ29Jg8fFjCJkwGQgZjRhhGLxFVMSC"}],[9,{"id":9,"thread_id":5,"nr_in_thread":2,"current_text":[88,77,82,32,77,97,121,98,101,46,46,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1561525326},"author_id":"5CEw8JxuM1kh34VoocG9bqqjqs98pdA7fG5uaTtPdjzShqFb"}],[10,{"id":10,"thread_id":6,"nr_in_thread":1,"current_text":[74,117,115,116,32,116,104,111,117,103,104,116,32,73,32,119,111,117,108,100,32,108,101,97,118,101,32,97,32,113,117,105,99,107,32,105,110,116,114,111,32,104,101,114,101,46,10,10,77,121,32,110,97,109,101,32,105,115,32,66,101,100,101,104,111,32,77,101,110,100,101,114,44,32,73,32,97,109,32,67,69,79,32,97,116,32,74,115,103,101,110,101,115,105,115,44,32,116,104,101,32,99,111,109,112,97,110,121,32,99,117,114,114,101,110,116,108,121,32,98,117,105,108,100,105,110,103,32,74,111,121,115,116,114,101,97,109,46,32,77,111,115,116,32,111,102,32,109,121,32,116,105,109,101,32,105,115,32,115,112,101,110,116,32,100,111,105,110,103,32,100,101,118,101,108,111,112,109,101,110,116,44,32,82,110,68,44,32,116,101,99,104,110,105,99,97,108,47,112,114,111,100,117,99,116,32,100,101,115,105,103,110,32,97,110,100,32,104,105,114,105,110,103,46,32,10,10,77,121,32,99,117,114,114,101,110,116,32,102,111,99,117,115,32,105,115,32,116,111,32,112,108,97,110,32,102,111,114,32,111,117,114,32,110,101,120,116,32,116,101,115,116,110,101,116,44,32,119,104,105,99,104,32,119,101,32,104,97,118,101,32,110,111,116,32,121,101,116,32,97,110,110,111,117,110,99,101,100,46,10,10,73,102,32,121,111,117,32,97,115,107,32,97,32,113,117,101,115,116,105,111,110,44,32,73,32,119,105,108,108,32,116,114,121,32,116,111,32,97,110,115,119,101,114,33],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1561550916},"author_id":"5GBonukAQsiG7pr7UFNUYW3BYudduTKWokKCJPy1bMeu7ZhB"}],[11,{"id":11,"thread_id":7,"nr_in_thread":1,"current_text":[87,101,32,104,97,118,101,110,39,116,32,104,97,100,32,116,104,101,32,116,105,109,101,32,116,111,32,109,97,107,101,32,97,110,32,101,112,105,115,111,100,101,32,105,110,32,97,32,119,104,105,108,101,44,32,98,117,116,32,119,101,39,108,108,32,116,114,121,32,97,110,100,32,109,97,107,101,32,111,110,101,32,110,101,120,116,32,119,101,101,107,46,32,65,110,121,32,105,110,116,101,114,101,115,116,105,110,103,32,110,101,119,115,32,111,114,32,116,111,112,105,99,115,32,119,101,32,115,104,111,117,108,100,32,99,111,118,101,114,63,10,10,36,49,48,32,98,111,117,110,116,121,32,102,111,114,32,97,32,108,105,110,107,32,116,111,32,97,32,116,119,101,101,116,47,97,114,116,105,99,108,101,32,116,104,97,116,32,103,101,116,115,32,109,101,110,116,105,111,110,101,100,33],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1561711008},"author_id":"5EtFzT8ZJN7VPKfcxjsQhtJUhHzuPsUFMaahPLGoaw5odaqj"}],[12,{"id":12,"thread_id":7,"nr_in_thread":2,"current_text":[114,101,99,101,110,116,32,104,105,116,32,116,111,32,99,111,105,110,100,101,115,107,32,119,104,101,110,32,99,108,111,117,100,102,108,97,114,101,32,119,101,110,116,32,100,111,119,110,46,10,104,116,116,112,115,58,47,47,116,119,105,116,116,101,114,46,99,111,109,47,99,111,105,110,100,101,115,107,47,115,116,97,116,117,115,47,49,49,52,54,48,53,54,56,55,52,57,56,56,54,52,50,51,48,54,63,115,61,49,57,10,10,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1562147196},"author_id":"5CNWS2V6RYKZVeqjqg9UqbQhAxGGphWtv9STxKKuuJW9kG3S"}],[13,{"id":13,"thread_id":2,"nr_in_thread":5,"current_text":[73,32,119,105,115,104,32,73,32,99,111,117,108,100,32,116,105,112,32,116,104,105,115,32,115,111,114,116,32,111,102,32,115,116,117,102,102,33,32,73,116,115,32,116,111,111,32,105,110,99,111,110,118,101,110,105,101,110,116,32,114,105,103,104,116,32,110,111,119],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1562160846},"author_id":"5GBonukAQsiG7pr7UFNUYW3BYudduTKWokKCJPy1bMeu7ZhB"}],[14,{"id":14,"thread_id":8,"nr_in_thread":1,"current_text":[35,32,87,104,97,116,32,119,111,117,108,100,32,121,111,117,32,102,105,120,63,10,10,73,32,119,111,117,108,100,32,97,100,100,10,10,49,46,32,65,99,99,117,114,97,116,101,32,115,117,98,99,97,116,101,103,111,114,121,32,97,110,100,32,116,104,114,101,97,100,32,99,111,117,110,116,115,33,32,73,116,115,32,99,111,110,102,117,115,105,110,103,44,32,97,110,100,32,104,97,114,100,32,116,111,32,116,114,97,99,107,32,110,101,119,32,112,111,115,116,115,46,10,50,46,32,72,111,119,32,99,97,110,32,119,101,32,115,117,114,102,97,99,101,32,110,101,119,32,112,111,115,116,115,32,98,101,116,116,101,114,63,10,50,46,32,83,111,109,101,32,115,111,114,116,32,111,102,32,116,97,103,103,105,110,103,32,111,102,32,117,115,101,114,115,44,32,119,105,116,104,32,110,111,116,105,102,105,99,97,116,105,111,110,115,32,40,73,32,107,110,111,119,32,104,97,114,100,41,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1562161002},"author_id":"5GBonukAQsiG7pr7UFNUYW3BYudduTKWokKCJPy1bMeu7ZhB"}],[15,{"id":15,"thread_id":8,"nr_in_thread":2,"current_text":[83,111,109,101,32,115,117,103,103,101,115,116,105,111,110,115,58,10,42,32,84,111,32,97,100,100,32,116,104,101,32,100,97,116,101,47,116,105,109,101,32,116,104,101,32,108,97,115,116,32,112,111,115,116,32,119,97,115,32,109,97,100,101,32,102,114,111,109,32,102,111,114,117,109,32,111,118,101,114,118,105,101,119,32,97,110,100,32,108,105,110,107,32,116,111,32,100,105,114,101,99,116,32,112,111,115,116,32,43,32,116,104,114,101,97,100,32,116,105,116,108,101,10,42,32,84,111,32,97,100,100,32,116,104,101,32,100,97,116,101,47,116,105,109,101,32,111,102,32,97,108,108,32,112,111,115,116,115,32,105,110,32,101,97,99,104,32,116,104,114,101,97,100,10,42,32,84,111,32,97,100,100,32,97,32,115,101,112,97,114,97,116,101,32,102,105,101,108,100,32,102,114,111,109,32,116,105,116,108,101,32,116,104,97,116,32,99,97,110,32,98,101,32,102,105,108,108,101,100,32,119,105,116,104,32,97,110,32,101,109,111,106,105,32,116,111,32,103,105,118,101,32,116,104,114,101,97,100,115,32,97,32,98,105,116,32,111,102,32,118,105,115,117,97,108,32,102,108,97,114,101,32,40,101,109,111,106,105,39,115,32,99,111,117,108,100,32,98,101,32,99,117,116,32,100,111,119,110,32,116,111,32,97,32,115,109,97,108,108,32,115,101,116,32,114,97,116,104,101,114,32,116,104,97,110,32,97,108,108,32,111,102,32,116,104,101,109,41,10,42,32,84,111,32,97,100,100,32,116,104,101,32,97,98,105,108,105,116,121,32,116,111,32,100,111,32,97,110,32,97,117,116,111,109,97,116,105,99,32,105,110,45,108,105,110,101,32,113,117,111,116,101,32,116,111,32,112,114,101,118,105,111,117,115,32,112,111,115,116,115,32,116,104,97,116,32,97,100,100,115,32,97,32,113,117,111,116,101,32,43,32,108,105,110,107,32,116,111,32,116,104,101,32,112,111,115,116,32,116,104,101,32,112,101,114,115,111,110,32,105,115,32,114,101,112,108,121,105,110,103,32,116,111,32,40,116,104,114,101,97,100,101,100,32,114,101,115,112,111,110,115,101,115,41,10,42,32,84,111,32,97,100,100,32,114,101,97,99,116,105,111,110,115,32,116,111,32,112,111,115,116,115,32,40,116,104,117,109,98,115,32,117,112,47,102,117,110,110,121,41,32,111,114,32,97,32,119,97,121,32,116,111,32,118,111,116,101,32,112,111,115,116,115,47,116,104,114,101,97,100,115,32,97,115,32,98,101,105,110,103,32,103,111,111,100,47,98,97,100,10,42,32,84,111,32,97,100,100,32,116,97,103,115,32,102,111,114,32,116,104,114,101,97,100,115,32,40,34,116,101,99,104,32,115,117,112,112,111,114,116,34,32,34,111,114,105,103,105,110,97,108,32,99,111,110,116,101,110,116,34,32,34,100,101,98,105,97,110,32,110,111,100,101,34,41,32,43,32,109,97,121,98,101,32,115,101,97,114,99,104,32,102,117,110,99,116,105,111,110,97,108,105,116,121,32,105,110,32,116,104,101,32,102,117,116,117,114,101,10,42,32,84,111,32,97,100,100,32,112,111,115,116,32,110,117,109,98,101,114,32,43,32,108,105,110,107,32,116,111,32,97,110,99,104,111,114,32,111,102,32,112,111,115,116,32,110,117,109,98,101,114,32,105,110,32,101,97,99,104,32,116,104,114,101,97,100,46,32,83,111,32,121,111,117,32,99,97,110,32,101,97,115,105,108,121,32,115,101,110,100,32,97,32,108,105,110,107,32,116,111,32,112,111,115,116,32,35,49,50,32,116,111,32,111,116,104,101,114,32,112,101,111,112,108,101,32,111,114,32,108,105,110,107,32,102,114,111,109,32,97,110,111,116,104,101,114,32,116,104,114,101,97,100,46,10,42,32,84,111,32,97,100,100,32,97,32,109,101,110,117,32,102,111,114,32,115,105,109,112,108,101,32,116,101,120,116,32,102,111,114,109,97,116,116,105,110,103,32,108,105,107,101,32,98,111,108,100,44,32,105,116,97,108,105,99,44,32,105,110,115,101,114,116,32,112,105,99,116,117,114,101,32],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1562247726},"author_id":"5G3jMHcbqgzyqCiiBMZ26LFZoqTPw77XzMqwj8cyrb58ybhE"}],[16,{"id":16,"thread_id":8,"nr_in_thread":3,"current_text":[84,104,105,115,32,105,115,32,97,32,114,101,97,108,108,121,32,103,114,101,97,116,32,108,105,115,116,44,32,116,104,97,110,107,115,33,10,10,73,32,116,104,105,110,107,32,119,101,32,99,97,110,32,100,111,32,97,32,108,111,116,32,111,102,32,116,104,105,115,32,119,105,116,104,111,117,116,32,97,32,114,117,110,116,105,109,101,32,117,112,103,114,97,100,101,44,32,119,104,105,99,104,32,105,115,32,110,105,99,101,46,32,87,101,32,97,114,101,32,103,111,105,110,103,32,116,111,32,105,110,118,101,115,116,32,109,111,114,101,32,105,110,116,111,32,116,104,101,32,102,111,114,117,109,44,32,115,111,32,119,101,32,110,101,101,100,32,116,111,32,109,97,107,101,32,105,116,32,101,97,115,105,101,114,32,116,111,32,117,115,101,46,10,10,89,111,117,32,100,105,100,110,39,116,32,116,111,117,99,104,32,115,111,32,109,117,99,104,32,111,110,32,116,104,101,32,105,115,115,117,101,32,111,102,32,115,117,114,102,97,99,105,110,103,32,110,101,119,32,99,111,110,116,101,110,116,44,32,97,110,121,32,116,105,112,115,32,111,110,32,116,104,97,116,63,10,10,73,32,104,97,118,101,32,97,32,118,101,114,121,32,118,101,114,121,32,104,97,114,100,32,116,105,109,101,32,102,105,103,117,114,105,110,103,32,111,117,116,32,97,32,119,104,101,114,101,32,110,101,119,32,97,99,116,105,118,105,116,121,32,105,115,32,116,97,107,105,110,103,32,112,108,97,99,101,32,119,104,101,110,32,73,32,104,105,116,32,116,104,101,32,109,97,105,110,32,102,111,114,117,109,32,112,97,103,101,44,32,111,114,32,101,118,101,110,32,115,117,98,99,97,116,101,103,111,114,105,101,115,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1562655690},"author_id":"5GBonukAQsiG7pr7UFNUYW3BYudduTKWokKCJPy1bMeu7ZhB"}],[17,{"id":17,"thread_id":8,"nr_in_thread":4,"current_text":[70,111,114,32,110,101,119,32,99,111,110,116,101,110,116,115,32,119,101,32,110,101,101,100,32,97,32,110,111,116,105,102,105,99,97,116,105,111,110,32,115,121,115,116,101,109,32,108,105,107,101,44,32,97,32,110,111,116,105,102,105,99,97,116,105,111,110,32,99,111,117,110,116,101,114,32,119,104,101,110,32,115,111,109,101,111,110,101,32,114,101,112,108,105,101,115,32,116,111,32,111,117,114,32,112,111,115,116,32,111,114,32,116,104,114,101,97,100,46,83,104,111,119,32,97,32,110,111,116,105,102,105,99,97,116,105,111,110,32,99,111,117,110,116,101,114,32,119,105,116,104,32,115,109,97,108,108,32,100,101,116,97,105,108,32,111,110,32,116,104,101,32,116,111,112,32,114,105,103,104,116,32,46,32,73,116,32,119,111,117,108,100,32,98,101,32,110,105,99,101,32,97,110,100,32,118,101,114,121,32,117,115,101,102,117,108,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1562693490},"author_id":"5CNWS2V6RYKZVeqjqg9UqbQhAxGGphWtv9STxKKuuJW9kG3S"}],[18,{"id":18,"thread_id":7,"nr_in_thread":3,"current_text":[104,116,116,112,115,58,47,47,119,119,119,46,99,111,105,110,100,101,115,107,46,99,111,109,47,116,104,101,114,101,115,45,97,45,115,101,99,111,110,100,45,116,111,107,101,110,45,97,45,98,114,101,97,107,100,111,119,110,45,111,102,45,102,97,99,101,98,111,111,107,115,45,98,108,111,99,107,99,104,97,105,110,45,101,99,111,110,111,109,121],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1562976942},"author_id":"5H8kTuZp2T2geceCuaEQ29Jg8fFjCJkwGQgZjRhhGLxFVMSC"}],[19,{"id":19,"thread_id":8,"nr_in_thread":5,"current_text":[73,102,32,97,32,110,111,116,105,102,105,99,97,116,105,111,110,32,99,111,117,110,116,101,114,32,105,115,32,116,111,111,32,105,110,116,114,117,115,105,118,101,44,32,121,111,117,32,99,111,117,108,100,32,106,117,115,116,32,104,105,103,104,108,105,103,104,116,32,116,104,114,101,97,100,115,32,119,105,116,104,32,110,101,119,32,112,111,115,116,115,32,115,111,109,101,104,111,119,46,32,80,101,114,104,97,112,115,32,112,117,116,32,97,32,115,116,97,114,32,110,101,120,116,32,116,111,32,116,104,101,32,116,104,114,101,97,100,32,111,114,32,112,117,116,32,116,104,101,32,116,104,114,101,97,100,32,116,105,116,108,101,32,105,110,32,98,111,108,100,32,119,104,101,110,32,116,104,101,114,101,32,105,115,32,110,101,119,32,117,110,114,101,97,100,32,99,111,110,116,101,110,116,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1562978136},"author_id":"5H8kTuZp2T2geceCuaEQ29Jg8fFjCJkwGQgZjRhhGLxFVMSC"}],[20,{"id":20,"thread_id":6,"nr_in_thread":2,"current_text":[32,32,32,32,32,32,32,32,32,32],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1562978328},"author_id":"5H8kTuZp2T2geceCuaEQ29Jg8fFjCJkwGQgZjRhhGLxFVMSC"}],[21,{"id":21,"thread_id":8,"nr_in_thread":6,"current_text":[65,110,111,116,104,101,114,32,102,101,97,116,117,114,101,32,105,100,101,97,32,119,111,117,108,100,32,98,101,32,116,111,32,104,97,118,101,32,34,101,100,105,116,101,100,34,32,115,104,111,119,110,32,110,101,120,116,32,116,111,32,112,111,115,116,115,32,116,104,97,116,32,104,97,118,101,32,98,101,101,110,32,101,100,105,116,101,100,32,97,102,116,101,114,32,116,104,101,121,39,118,101,32,98,101,101,110,32,119,114,105,116,116,101,110,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1563025176},"author_id":"5H8kTuZp2T2geceCuaEQ29Jg8fFjCJkwGQgZjRhhGLxFVMSC"}],[22,{"id":22,"thread_id":9,"nr_in_thread":1,"current_text":[72,101,114,101,32,121,111,117,32,99,97,110,32,100,105,115,99,117,115,115,32,97,108,108,32,116,104,105,110,103,115,32,114,101,108,97,116,101,100,32,116,111,32,98,101,105,110,103,32,97,32,96,68,105,115,116,114,105,98,117,116,111,114,96,32,111,110,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,110,101,116,119,111,114,107,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1563034344},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[23,{"id":23,"thread_id":10,"nr_in_thread":1,"current_text":[76,101,116,32,109,101,32,107,110,111,119,32,105,102,32,121,111,117,32,119,111,117,108,100,32,108,105,107,101,32,116,111,32,115,101,101,32,109,111,114,101,32,111,102,32,116,104,101,115,101,46,32,73,39,109,32,97,32,98,105,116,32,98,117,115,121,32,114,105,103,104,116,32,110,111,119,44,32,98,117,116,32,105,102,32,112,101,111,112,108,101,32,110,101,101,100,32,104,101,108,112,32,103,101,116,116,105,110,103,32,115,101,116,32,117,112,44,32,73,39,108,108,32,112,114,111,98,97,98,108,121,32,109,97,107,101,32,115,111,109,101,32,109,111,114,101,46,10,10,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,97,99,114,111,112,111,108,105,115,47,112,105,111,110,101,101,114,47,35,47,109,101,100,105,97,47,112,108,97,121,47,53,69,84,80,88,104,85,113,53,81,110,67,102,90,57,121,99,100,97,66,51,112,99,69,49,56,71,52,100,85,109,71,65,116,84,87,68,53,80,109,84,77,99,98,120,98,119,80],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1563038424},"author_id":"5H8kTuZp2T2geceCuaEQ29Jg8fFjCJkwGQgZjRhhGLxFVMSC"}],[24,{"id":24,"thread_id":8,"nr_in_thread":7,"current_text":[87,111,114,107,105,110,103,32,111,110,32,97,32,91,103,105,116,104,117,98,32,105,115,115,117,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,106,111,121,115,116,114,101,97,109,47,105,115,115,117,101,115,47,56,48,41,32,102,111,114,32,116,104,105,115,33,10,10,70,101,101,108,32,102,114,101,101,32,116,111,32,99,104,105,109,101,32,105,110,46,46,46,10,10,42,69,100,105,116,101,100,32,116,111,32,115,101,101,32,105,102,32,105,116,39,115,32,115,104,111,119,110,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1563186162},"author_id":"5DaDUnNVzZPwK9KLwyPFgeSbc9Xeh6G39A2oq36tiV9aEzcx"}],[25,{"id":25,"thread_id":10,"nr_in_thread":2,"current_text":[72,101,121,32,66,101,110,44,10,10,84,104,105,115,32,105,115,32,119,111,110,100,101,114,102,117,108,32,115,116,117,102,102,33,32,10,10,83,111,109,101,32,116,105,109,101,32,116,104,105,115,32,119,101,101,107,44,32,73,39,108,108,32,116,114,121,32,116,111,32,111,114,103,97,110,105,122,101,32,116,104,101,32,102,111,114,117,109,32,112,114,111,112,101,114,108,121,32,102,111,114,32,115,111,109,101,116,104,105,110,103,32,119,101,32,104,97,118,101,32,105,110,32,109,105,110,100,32,102,111,114,32,108,97,116,101,114,46,32,67,111,109,112,101,116,105,116,105,111,110,115,44,32,97,110,100,32,97,32,99,111,109,109,117,110,105,116,121,32,102,117,110,100,32,99,111,110,116,114,111,108,108,101,100,32,98,121,32,116,104,101,32,99,111,117,110,99,105,108,46,10,10,87,101,32,109,97,121,32,106,117,115,116,32,111,102,102,101,114,32,34,114,101,103,117,108,97,114,34,32,91,98,111,117,110,116,105,101,115,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,98,111,117,110,116,105,101,115,41,32,102,111,114,32,109,111,114,101,32,111,102,32,116,104,101,115,101,32,105,110,115,116,101,97,100,46,32,70,101,101,108,32,102,114,101,101,32,116,111,32,112,114,111,112,111,115,101,32,111,110,101,32,121,111,117,114,115,101,108,102,33],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1563206556},"author_id":"5DaDUnNVzZPwK9KLwyPFgeSbc9Xeh6G39A2oq36tiV9aEzcx"}],[26,{"id":26,"thread_id":10,"nr_in_thread":3,"current_text":[71,114,101,97,116,44,32,116,104,97,110,107,115,32,77,97,114,116,105,110,33,10,10,67,111,109,112,101,116,105,116,105,111,110,115,32,97,110,100,32,99,111,109,109,117,110,105,116,121,32,102,117,110,100,32,98,111,116,104,32,115,111,117,110,100,32,118,101,114,121,32,105,110,116,101,114,101,115,116,105,110,103,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1563212034},"author_id":"5H8kTuZp2T2geceCuaEQ29Jg8fFjCJkwGQgZjRhhGLxFVMSC"}],[27,{"id":27,"thread_id":2,"nr_in_thread":6,"current_text":[97,32,116,101,115,116,32,102,111,111,32,114,101,112,108,121],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568179602},"author_id":"5FdyqzHPZe71EzDU3pHKBWEPChbUitfoToUgrDtnWoojFtic"}],[28,{"id":28,"thread_id":4,"nr_in_thread":2,"current_text":[87,101,39,114,101,32,105,110,116,114,111,100,117,99,105,110,103,32,105,116,32,105,110,32,116,104,101,32,82,111,109,101,32,116,101,115,116,110,101,116,44,32,115,111,32,104,111,112,101,102,117,108,108,121,32,105,116,39,108,108,32,98,101,99,111,109,101,32,97,112,112,97,114,101,110,116,32,116,104,101,110,32,58,41],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568500710},"author_id":"5H8kTuZp2T2geceCuaEQ29Jg8fFjCJkwGQgZjRhhGLxFVMSC"}],[29,{"id":29,"thread_id":11,"nr_in_thread":1,"current_text":[35,32,79,118,101,114,118,105,101,119,10,84,104,105,115,32,102,111,114,117,109,32,99,97,116,101,103,111,114,121,32,97,110,100,32,116,104,101,32,91,111,114,105,103,105,110,97,108,32,114,101,112,111,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,98,111,117,110,116,105,101,115,47,41,32,97,114,101,32,119,104,101,114,101,32,119,101,32,112,117,98,108,105,115,104,44,32,116,114,97,99,107,32,97,110,100,32,100,111,99,117,109,101,110,116,32,116,104,101,32,98,111,117,110,116,121,32,115,121,115,116,101,109,32,102,111,114,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,112,108,97,116,102,111,114,109,46,32,65,110,121,111,110,101,32,105,115,32,102,114,101,101,32,116,111,32,109,97,107,101,32,97,32,91,112,114,111,112,111,115,97,108,93,40,35,112,114,111,112,111,115,97,108,115,41,32,102,111,114,32,97,32,98,111,117,110,116,121,44,32,97,110,100,32,97,110,121,111,110,101,32,105,115,32,102,114,101,101,32,116,111,32,99,111,109,112,101,116,101,32,102,111,114,32,116,104,101,109,46,10,10,67,117,114,114,101,110,116,108,121,44,32,97,108,108,32,98,111,117,110,116,105,101,115,32,119,105,108,108,32,98,101,32,109,97,100,101,32,96,97,99,116,105,118,101,96,44,32,102,117,110,100,101,100,44,32,97,110,100,32,119,105,108,108,32,98,101,32,101,118,97,108,117,97,116,101,100,32,98,121,32,91,74,115,103,101,110,101,115,105,115,93,40,104,116,116,112,115,58,47,47,98,108,111,103,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,106,115,103,101,110,101,115,105,115,47,41,46,32,73,110,32,116,104,101,32,102,117,116,117,114,101,44,32,111,117,114,32,105,110,116,101,110,116,105,111,110,32,105,115,32,116,111,32,103,114,97,100,117,97,108,108,121,32,105,110,118,111,108,118,101,32,116,104,101,32,112,108,97,116,102,111,114,109,32,103,111,118,101,114,110,97,110,99,101,32,115,121,115,116,101,109,32,105,110,32,116,104,101,32,100,101,99,105,115,105,111,110,32,109,97,107,105,110,103,46,10,10,84,104,101,32,112,97,121,111,117,116,115,32,119,105,108,108,32,98,101,32,109,97,100,101,32,105,110,32,91,109,111,110,101,114,111,93,40,104,116,116,112,115,58,47,47,119,101,98,46,103,101,116,109,111,110,101,114,111,46,111,114,103,47,41,32,117,110,108,101,115,115,32,110,111,116,101,100,32,111,116,104,101,114,119,105,115,101,46,32,79,117,114,32,99,104,111,105,99,101,32,111,102,32,117,115,105,110,103,32,109,111,110,101,114,111,32,97,115,32,116,104,101,32,109,101,116,104,111,100,32,111,102,32,112,97,121,109,101,110,116,32,105,115,32,116,104,97,116,32,105,116,39,115,32,98,111,116,104,32,97,32,119,101,108,108,32,101,115,116,97,98,108,105,115,104,101,100,32,97,110,100,32,114,101,112,117,116,97,98,108,101,32,112,114,111,106,101,99,116,44,32,97,110,100,32,97,114,103,117,97,98,108,121,32,104,97,115,32,98,101,116,116,101,114,32,112,114,105,118,97,99,121,32,102,101,97,116,117,114,101,115,32,116,104,97,110,32,115,111,109,101,32,111,102,32,116,104,101,32,111,116,104,101,114,32,111,112,116,105,111,110,115,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568847786},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[30,{"id":30,"thread_id":12,"nr_in_thread":1,"current_text":[32,35,35,35,35,32,80,114,111,98,108,101,109,10,65,115,32,116,104,101,32,110,111,110,45,99,111,100,101,32,114,101,112,111,115,32,97,114,101,32,117,112,100,97,116,101,100,44,32,105,116,39,115,32,100,105,102,102,105,99,117,108,116,32,116,111,32,97,118,111,105,100,32,105,110,116,114,111,100,117,99,105,110,103,32,98,114,111,107,101,110,32,108,105,110,107,115,44,32,101,114,114,111,114,115,32,119,105,116,104,32,105,109,97,103,101,115,44,32,103,114,97,109,109,97,114,32,109,105,115,116,97,107,101,115,44,32,102,111,114,109,97,116,116,105,110,103,32,101,114,114,111,114,115,44,32,101,116,99,46,32,84,104,105,115,32,109,97,107,101,115,32,105,116,32,100,105,102,102,105,99,117,108,116,32,116,111,32,110,97,118,105,103,97,116,101,44,32,97,110,100,32,97,100,100,115,32,102,114,105,99,116,105,111,110,32,102,111,114,32,114,101,97,100,101,114,115,46,32,10,78,111,116,101,32,116,104,97,116,32,116,104,105,115,32,97,112,112,108,105,101,115,32,116,111,32,65,76,76,32,116,104,101,32,82,69,65,68,77,69,46,109,100,32,102,105,108,101,115,44,32,110,111,116,32,106,117,115,116,32,116,104,101,32,116,111,112,32,108,101,118,101,108,32,111,110,101,46,10,10,35,35,35,35,32,71,111,97,108,115,10,73,109,112,114,111,118,101,32,113,117,97,108,105,116,121,32,97,110,100,32,97,99,99,101,115,115,105,98,105,108,105,116,121,32,111,102,32,111,117,114,32,114,101,112,111,115,46,10,10,35,35,35,35,32,82,101,119,97,114,100,115,10,36,50,32,112,101,114,32,102,105,120,32,116,104,97,116,32,103,101,116,115,32,109,101,114,103,101,100,46,10,10,32,95,83,117,98,115,116,97,110,116,105,97,108,32,105,109,112,114,111,118,101,109,101,110,116,115,32,109,97,121,32,98,101,32,114,101,119,97,114,100,101,100,32,101,120,116,114,97,46,95],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568847810},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[31,{"id":31,"thread_id":13,"nr_in_thread":1,"current_text":[35,35,35,32,95,65,108,116,104,111,117,103,104,32,116,104,105,115,32,98,111,117,110,116,121,32,105,115,32,115,116,105,108,108,32,111,112,101,110,44,32,98,101,32,97,119,97,114,101,32,116,104,97,116,32,119,101,32,104,97,118,101,32,98,101,101,110,32,105,110,32,99,111,110,116,97,99,116,32,119,105,116,104,32,111,110,101,32,97,112,112,108,105,99,97,110,116,32,116,104,97,116,32,99,97,109,101,32,117,112,32,119,105,116,104,32,115,111,109,101,32,97,100,100,105,116,105,111,110,97,108,32,105,100,101,97,115,32,97,110,100,32,114,101,115,101,97,114,99,104,46,32,84,104,105,115,32,112,101,114,115,111,110,32,104,97,115,32,98,101,101,110,32,103,105,118,101,110,32,36,50,53,48,32,116,111,32,99,111,110,116,105,110,117,101,32,108,111,111,107,105,110,103,32,105,110,116,111,32,109,111,114,101,32,100,101,116,97,105,108,115,46,95],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568847846},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[32,{"id":32,"thread_id":14,"nr_in_thread":1,"current_text":[35,35,32,80,114,111,98,108,101,109,10,87,101,32,104,97,118,101,32,102,111,117,110,100,32,97,32,108,111,116,32,111,102,32,116,104,101,32,99,111,109,109,111,110,32,109,101,100,105,97,32,102,105,108,101,32,116,121,112,101,115,32,119,105,108,108,32,110,111,116,32,112,108,97,121,32,105,110,32,91,112,105,111,110,101,101,114,93,40,104,116,116,112,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,41,44,32,119,105,116,104,111,117,116,32,100,111,119,110,108,111,97,100,105,110,103,32,116,104,101,32,102,105,108,101,46,10,10,35,35,32,71,111,97,108,115,10,73,109,112,114,111,118,101,32,116,104,101,32,85,88,44,32,98,121,32,107,110,111,119,105,110,103,32,101,120,97,99,116,108,121,32,119,104,97,116,32,102,105,108,101,32,116,121,112,101,115,32,119,111,114,107,115,44,32,97,110,100,32,105,110,32,119,104,105,99,104,32,98,114,111,119,115,101,114,115,32,40,99,104,114,111,109,101,47,99,104,114,111,109,105,117,109,44,32,102,105,114,101,102,111,120,32,97,110,100,32,115,97,102,97,114,105,41,46,10,10,35,35,32,82,101,119,97,114,100,115,10,79,117,114,32,102,105,114,115,116,32,112,114,111,112,111,115,97,108,32,105,115,32,36,53,48,44,32,98,117,116,32,105,102,32,97,110,32,97,112,112,108,105,99,97,110,116,32,112,114,111,100,117,99,101,115,32,97,32,103,111,111,100,32,116,101,115,116,32,112,108,97,110,44,32,40,105,101,46,32,108,105,115,116,32,97,108,108,32,101,120,116,101,110,115,105,111,110,115,44,32,98,114,111,119,115,101,114,115,32,97,110,100,32,79,83,39,115,32,116,104,101,121,32,99,97,110,47,119,105,108,108,32,116,101,115,116,41,44,32,116,104,105,115,32,99,97,110,32,98,101,32,110,101,103,111,116,105,97,116,101,100,46,10,10,35,35,32,83,99,111,112,101,32,111,102,32,87,111,114,107,32,38,32,68,101,108,105,118,101,114,97,98,108,101,115,10,85,112,108,111,97,100,32,99,111,110,116,101,110,116,32,105,110,32,97,108,108,32,34,115,116,97,110,100,97,114,100,34,32,102,111,114,109,97,116,115,44,32,97,110,100,32,112,114,111,100,117,99,101,32,97,32,102,117,108,108,32,108,105,115,116,32,111,102,32,119,104,97,116,32,119,111,114,107,115,32,105,110,32,119,104,105,99,104,32,98,114,111,119,115,101,114,115,47,79,83,39,115,46,10,10,35,35,32,67,111,110,115,116,114,97,105,110,116,115,10,65,108,108,32,99,111,110,116,101,110,116,32,117,112,108,111,97,100,101,100,32,109,117,115,116,32,98,101,32,105,110,32,108,105,110,101,32,119,105,116,104,32,111,117,114,32,91,84,111,83,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,97,99,114,111,112,111,108,105,115,47,112,105,111,110,101,101,114,47,35,47,112,97,103,101,115,47,116,111,115,41,46,10,10,35,35,32,66,111,117,110,116,121,32,102,111,114,109,97,116,10,84,104,101,32,97,112,112,108,105,99,97,116,105,111,110,40,115,41,32,109,117,115,116,32,98,101,32,97,112,112,114,111,118,101,100,32,98,101,102,111,114,101,32,97,110,121,32,119,111,114,107,32,119,105,108,108,32,98,101,32,114,101,119,97,114,100,101,100,46,10,10,35,35,32,68,101,97,100,108,105,110,101,10,84,104,101,32,97,112,112,108,105,99,97,116,105,111,110,32,100,101,97,100,108,105,110,101,32,105,115,32,116,104,101,32,48,56,46,48,55,46,49,57,44,32,49,53,48,48,71,77,84,43,50,46,10,10,40,84,104,105,115,32,98,111,117,110,116,121,32,105,115,32,110,111,32,108,111,110,103,101,114,32,111,112,101,110,41],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568847870},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[33,{"id":33,"thread_id":15,"nr_in_thread":1,"current_text":[35,35,32,80,114,111,98,108,101,109,10,87,101,32,110,101,101,100,32,115,111,117,114,99,101,115,32,111,102,32,102,114,101,101,32,97,110,100,32,97,118,97,105,108,97,98,108,101,32,109,101,100,105,97,32,99,111,110,116,101,110,116,44,32,105,110,32,118,97,114,105,111,117,115,32,102,111,114,109,97,116,115,44,32,105,110,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,116,111,112,32,108,101,118,101,108,32,99,97,116,101,103,111,114,105,101,115,58,10,10,42,32,118,105,100,101,111,10,42,32,97,117,100,105,111,10,42,32,101,45,98,111,111,107,115],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568847912},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[34,{"id":34,"thread_id":16,"nr_in_thread":1,"current_text":[35,32,79,118,101,114,118,105,101,119,10,10,84,104,105,115,32,112,97,103,101,32,99,111,110,116,97,105,110,115,32,97,108,108,32,105,110,102,111,114,109,97,116,105,111,110,32,111,110,32,104,111,119,32,116,111,32,115,101,116,117,112,32,121,111,117,114,32,110,111,100,101,32,97,110,100,32,98,101,99,111,109,105,110,103,32,97,32,96,86,97,108,105,100,97,116,111,114,96,32,111,110,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,84,101,115,116,110,101,116,115,46,32,73,116,32,119,105,108,108,32,98,101,32,117,112,100,97,116,101,100,32,102,111,114,32,105,109,112,114,111,118,101,109,101,110,116,115,44,32,97,110,100,32,119,104,101,110,32,115,111,109,101,116,104,105,110,103,32,99,104,97,110,103,101,115,32,102,111,114,32,110,101,119,32,116,101,115,116,110,101,116,115,46,10,10,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,101,97,114,110,32,109,111,114,101,32,96,74,111,121,96,32,116,111,107,101,110,115,44,32,98,117,116,32,102,111,114,32,115,111,109,101,32,114,101,97,115,111,110,32,99,97,110,39,116,32,111,114,32,119,111,110,39,116,32,98,101,99,111,109,101,32,97,32,96,86,97,108,105,100,97,116,111,114,96,44,32,121,111,117,32,99,97,110,32,96,78,111,109,105,110,97,116,101,96,32,105,110,115,116,101,97,100,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568899470},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[35,{"id":35,"thread_id":17,"nr_in_thread":1,"current_text":[35,32,79,118,101,114,118,105,101,119,10,10,84,104,105,115,32,112,97,103,101,32,99,111,110,116,97,105,110,115,32,97,108,108,32,105,110,102,111,114,109,97,116,105,111,110,32,111,110,32,104,111,119,32,116,111,32,115,101,116,117,112,32,121,111,117,114,32,110,111,100,101,32,97,110,100,32,98,101,99,111,109,105,110,103,32,97,32,96,86,97,108,105,100,97,116,111,114,96,32,111,110,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,84,101,115,116,110,101,116,115,46,32,73,116,32,119,105,108,108,32,98,101,32,117,112,100,97,116,101,100,32,102,111,114,32,105,109,112,114,111,118,101,109,101,110,116,115,44,32,97,110,100,32,119,104,101,110,32,115,111,109,101,116,104,105,110,103,32,99,104,97,110,103,101,115,32,102,111,114,32,110,101,119,32,116,101,115,116,110,101,116,115,46,10,10,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,101,97,114,110,32,109,111,114,101,32,96,74,111,121,96,32,116,111,107,101,110,115,44,32,98,117,116,32,102,111,114,32,115,111,109,101,32,114,101,97,115,111,110,32,99,97,110,39,116,32,111,114,32,119,111,110,39,116,32,98,101,99,111,109,101,32,97,32,96,86,97,108,105,100,97,116,111,114,96,44,32,121,111,117,32,99,97,110,32,96,78,111,109,105,110,97,116,101,96,32,105,110,115,116,101,97,100,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568899500},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[36,{"id":36,"thread_id":18,"nr_in_thread":1,"current_text":[35,32,79,118,101,114,118,105,101,119,10,10,84,104,105,115,32,112,97,103,101,32,99,111,110,116,97,105,110,115,32,97,108,108,32,105,110,102,111,114,109,97,116,105,111,110,32,111,110,32,104,111,119,32,116,111,32,115,101,116,117,112,32,121,111,117,114,32,110,111,100,101,32,97,110,100,32,98,101,99,111,109,105,110,103,32,97,32,96,86,97,108,105,100,97,116,111,114,96,32,111,110,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,84,101,115,116,110,101,116,115,46,32,73,116,32,119,105,108,108,32,98,101,32,117,112,100,97,116,101,100,32,102,111,114,32,105,109,112,114,111,118,101,109,101,110,116,115,44,32,97,110,100,32,119,104,101,110,32,115,111,109,101,116,104,105,110,103,32,99,104,97,110,103,101,115,32,102,111,114,32,110,101,119,32,116,101,115,116,110,101,116,115,46,10,10,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,101,97,114,110,32,109,111,114,101,32,96,74,111,121,96,32,116,111,107,101,110,115,44,32,98,117,116,32,102,111,114,32,115,111,109,101,32,114,101,97,115,111,110,32,99,97,110,39,116,32,111,114,32,119,111,110,39,116,32,98,101,99,111,109,101,32,97,32,96,86,97,108,105,100,97,116,111,114,96,44,32,121,111,117,32,99,97,110,32,96,78,111,109,105,110,97,116,101,96,32,105,110,115,116,101,97,100,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568899530},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[37,{"id":37,"thread_id":19,"nr_in_thread":1,"current_text":[10,35,35,32,82,117,110,32,97,115,32,97,32,115,101,114,118,105,99,101,10,10,73,102,32,121,111,117,32,97,114,101,32,114,117,110,110,105,110,103,32,121,111,117,114,32,110,111,100,101,32,111,110,32,97,32,91,108,105,110,117,120,93,40,35,108,105,110,117,120,41,32,97,110,100,32,119,97,110,116,32,116,111,32,114,117,110,32,105,116,32,97,115,32,97,32,91,115,101,114,118,105,99,101,93,40,104,116,116,112,115,58,47,47,119,105,107,105,46,100,101,98,105,97,110,46,111,114,103,47,115,121,115,116,101,109,100,47,83,101,114,118,105,99,101,115,41,44,32,121,111,117,32,99,97,110,32,115,101,116,32,105,116,32,117,112,32,116,104,105,115,32,119,97,121,46,10,78,111,116,101,32,116,104,97,116,32,121,111,117,32,115,104,111,117,108,100,32,97,118,111,105,100,32,116,104,105,115,32,117,110,108,101,115,115,32,121,111,117,32,107,110,111,119,32,119,104,97,116,32,121,111,117,32,97,114,101,32,100,111,105,110,103,44,32,97,114,101,32,114,117,110,110,105,110,103,32,121,111,117,114,32,110,111,100,101,32,111,110,32,42,42,121,111,117,114,32,111,119,110,32,86,80,83,42,42,32,111,114,32,97,32,115,105,110,103,108,101,32,98,111,97,114,100,32,99,111,109,112,117,116,101,114,46,32,87,105,116,104,32,103,114,101,97,116,32,40,115,117,100,111,41,32,112,114,105,118,105,108,101,103,101,115,44,32,99,111,109,101,115,32,103,114,101,97,116,32,114,101,115,112,111,110,115,105,98,105,108,105,116,105,101,115,33,10,10,73,102,32,121,111,117,32,97,114,101,32,97,108,114,101,97,100,121,32,114,117,110,110,105,110,103,32,97,115,32,97,32,96,118,97,108,105,100,97,116,111,114,96,44,32,99,111,110,115,105,100,101,114,32,91,117,110,115,116,97,107,105,110,103,93,40,35,117,110,115,116,97,107,105,110,103,41,32,102,105,114,115,116,44,32,97,115,32,121,111,117,32,109,97,121,32,101,120,112,101,114,105,101,110,99,101,32,115,111,109,101,32,100,111,119,110,116,105,109,101,32,105,102,32,121,111,117,32,109,97,107,101,32,97,110,121,32,109,105,115,116,97,107,101,115,32,105,110,32,116,104,101,32,115,101,116,117,112,46,10,10,35,35,35,35,32,67,111,110,102,105,103,117,114,101,32,116,104,101,32,115,101,114,118,105,99,101,10,10,69,105,116,104,101,114,32,97,115,32,114,111,111,116,44,32,111,114,32,97,32,117,115,101,114,32,119,105,116,104,32,115,117,100,111,32,112,114,105,118,105,108,101,103,101,115,46,32,73,102,32,116,104,101,32,108,97,116,116,101,114,44,32,97,100,100,32,96,115,117,100,111,96,32,98,101,102,111,114,101,32,99,111,109,109,97,110,100,115,46,10,10,96,96,96,10,36,32,99,100,32,47,101,116,99,47,115,121,115,116,101,109,100,47,115,121,115,116,101,109,10,35,32,121,111,117,32,99,97,110,32,99,104,111,111,115,101,32,119,104,97,116,101,118,101,114,32,110,97,109,101,32,121,111,117,32,108,105,107,101,44,32,98,117,116,32,116,104,101,32,110,97,109,101,32,104,97,115,32,116,111,32,101,110,100,32,119,105,116,104,32,46,115,101,114,118,105,99,101,10,36,32,116,111,117,99,104,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,46,115,101,114,118,105,99,101,10,35,32,111,112,101,110,32,116,104,101,32,102,105,108,101,32,119,105,116,104,32,121,111,117,114,32,102,97,118,111,114,105,116,101,32,101,100,105,116,111,114,32,40,73,32,117,115,101,32,110,97,110,111,32,98,101,108,111,119,41,10,36,32,110,97,110,111,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,46,115,101,114,118,105,99,101,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568899668},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[38,{"id":38,"thread_id":20,"nr_in_thread":1,"current_text":[35,35,32,84,114,111,117,98,108,101,115,104,111,111,116,105,110,103,10,73,102,32,121,111,117,32,104,97,100,32,97,110,121,32,105,115,115,117,101,115,32,115,101,116,116,105,110,103,32,105,116,32,117,112,44,32,121,111,117,32,109,97,121,32,102,105,110,100,32,121,111,117,114,32,97,110,115,119,101,114,32,104,101,114,101,33,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568899704},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[39,{"id":39,"thread_id":21,"nr_in_thread":1,"current_text":[35,32,79,118,101,114,118,105,101,119,10,10,84,104,105,115,32,116,104,114,101,97,100,32,119,105,108,108,32,99,111,110,116,97,105,110,32,97,108,108,32,105,110,102,111,114,109,97,116,105,111,110,32,111,110,32,104,111,119,32,116,111,32,115,101,116,117,112,32,121,111,117,114,32,115,116,111,114,97,103,101,32,110,111,100,101,32,97,110,100,32,98,101,99,111,109,105,110,103,32,97,32,96,83,116,111,114,97,103,101,32,80,114,111,118,105,100,101,114,96,32,111,110,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,84,101,115,116,110,101,116,115,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568899968},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[40,{"id":40,"thread_id":22,"nr_in_thread":1,"current_text":[35,32,84,114,111,117,98,108,101,115,104,111,111,116,105,110,103,10,73,102,32,121,111,117,32,104,97,100,32,97,110,121,32,105,115,115,117,101,115,32,115,101,116,116,105,110,103,32,105,116,32,117,112,44,32,121,111,117,32,109,97,121,32,102,105,110,100,32,121,111,117,114,32,97,110,115,119,101,114,32,104,101,114,101,33],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568899992},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[41,{"id":41,"thread_id":23,"nr_in_thread":1,"current_text":[35,32,71,101,116,32,83,116,97,114,116,101,100,10,84,111,32,103,101,116,32,115,116,97,114,116,101,100,32,97,110,100,32,112,97,114,116,105,99,105,112,97,116,101,32,111,110,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,116,101,115,116,110,101,116,115,44,32,121,111,117,32,109,117,115,116,32,102,105,114,115,116,32,103,101,110,101,114,97,116,101,32,96,75,101,121,40,115,41,96,44,32,97,110,100,32,115,105,103,110,32,117,112,32,102,111,114,32,97,32,96,77,101,109,98,101,114,115,104,105,112,96,46,32,84,104,105,115,32,114,101,113,117,105,114,101,115,32,110,111,32,115,111,102,116,119,97,114,101,32,111,114,32,100,111,119,110,108,111,97,100,115,44,32,97,110,100,32,99,97,110,32,98,101,32,100,111,110,101,32,105,110,32,121,111,117,114,32,98,114,111,119,115,101,114,32,91,104,101,114,101,93,40,104,116,116,112,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,41,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568900298},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[42,{"id":42,"thread_id":24,"nr_in_thread":1,"current_text":[35,32,79,118,101,114,118,105,101,119,10,10,84,104,105,115,32,112,97,103,101,32,99,111,110,116,97,105,110,115,32,97,32,100,101,116,97,105,108,101,100,32,103,117,105,100,101,32,97,98,111,117,116,32,104,111,119,32,116,104,101,32,103,111,118,101,114,110,97,110,99,101,32,115,121,115,116,101,109,32,119,111,114,107,115,32,111,110,32,116,104,101,32,99,117,114,114,101,110,116,32,74,111,121,115,116,114,101,97,109,32,116,101,115,116,110,101,116,44,32,97,110,100,32,104,111,119,32,121,111,117,32,99,97,110,32,112,97,114,116,105,99,105,112,97,116,101,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568900322},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[43,{"id":43,"thread_id":25,"nr_in_thread":1,"current_text":[87,101,32,104,97,118,101,110,39,116,32,114,101,99,101,105,118,101,100,32,97,110,121,32,114,101,112,111,114,116,115,32,111,102,32,112,114,111,98,108,101,109,115,32,119,105,116,104,32,116,104,105,115,32,114,111,108,101,44,32,115,111,32,116,104,105,115,32,116,114,111,117,98,108,101,115,104,111,111,116,105,110,103,32,116,104,114,101,97,100,32,105,115,32,98,108,97,110,107,32,102,111,114,32,110,111,119,46,32,76,101,116,32,117,115,32,107,110,111,119,32,105,102,32,121,111,117,32,97,114,101,32,115,116,114,117,103,103,108,105,110,103,32,119,105,116,104,32,97,110,121,116,104,105,110,103,32,111,110,32,91,71,105,116,72,117,98,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,104,101,108,112,100,101,115,107,47,41,44,32,111,114,32,105,110,32,111,117,114,32,91,84,101,108,101,103,114,97,109,32,71,114,111,117,112,93,40,104,116,116,112,115,58,47,47,116,46,109,101,47,74,111,121,83,116,114,101,97,109,79,102,102,105,99,105,97,108,41,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568900340},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[44,{"id":44,"thread_id":26,"nr_in_thread":1,"current_text":[35,35,32,66,117,103,32,82,101,112,111,114,116,101,114,115,10,65,115,32,119,105,116,104,32,97,108,108,32,115,111,102,116,119,97,114,101,44,32,97,110,100,32,101,115,112,101,99,105,97,108,108,121,32,116,104,101,32,101,97,114,108,121,32,118,101,114,115,105,111,110,115,44,32,116,104,101,114,101,32,119,105,108,108,32,98,101,32,112,108,101,110,116,121,32,111,102,32,98,117,103,115,44,32,109,105,115,115,105,110,103,32,102,101,97,116,117,114,101,115,32,97,110,100,32,101,110,104,97,110,99,101,109,101,110,116,115,32,114,101,113,117,105,114,101,100,46,32,66,111,116,104,32,116,111,32,105,109,112,114,111,118,101,32,97,115,32,119,101,32,103,111,44,32,97,110,100,32,116,111,32,34,116,114,97,105,110,34,32,97,32,103,114,111,117,112,32,111,102,32,116,101,115,116,101,114,115,32,97,110,100,32,100,101,118,101,108,111,112,101,114,115,32,102,111,114,32,111,117,114,32,97,117,116,111,110,111,109,111,117,115,32,112,108,97,116,102,111,114,109,44,32,119,101,32,119,97,110,116,32,95,111,117,116,115,105,100,101,114,115,95,32,116,111,32,115,116,97,114,116,32,99,111,110,116,114,105,98,117,116,105,110,103,32,97,115,32,115,111,111,110,32,97,115,32,112,111,115,115,105,98,108,101,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568900400},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[45,{"id":45,"thread_id":27,"nr_in_thread":1,"current_text":[35,35,35,32,73,110,115,116,114,117,99,116,105,111,110,115,10,65,115,32,97,110,32,111,112,101,110,45,115,111,117,114,99,101,32,112,114,111,106,101,99,116,44,32,119,101,32,116,114,121,32,116,111,32,102,111,108,108,111,119,32,116,104,101,32,115,116,97,110,100,97,114,100,32,99,111,110,118,101,110,116,105,111,110,115,32,97,110,100,32,119,111,114,107,102,108,111,119,46,10,10,73,102,32,121,111,117,32,102,105,110,100,32,97,32,98,117,103,44,32,111,114,32,119,97,110,116,32,116,111,32,105,109,112,114,111,118,101,32,111,114,32,97,100,100,32,115,111,109,101,116,104,105,110,103,32,105,110,32,116,104,101,32,99,111,100,101,44,32,100,111,99,117,109,101,110,116,97,116,105,111,110,115,32,111,114,32,103,117,105,100,101,115,44,32,108,111,99,97,116,101,32,116,104,101,32,99,111,114,114,101,99,116,32,114,101,112,111,32,102,114,111,109,32,116,104,101,32,111,114,103,97,110,105,122,97,116,105,111,110,32,91,105,110,100,101,120,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,106,111,121,115,116,114,101,97,109,35,114,101,112,111,115,105,116,111,114,121,45,105,110,100,101,120,41,46,32,70,111,114,107,32,116,104,101,32,114,101,112,111,44,32,109,97,107,101,32,116,104,101,32,99,104,97,110,103,101,115,32,121,111,117,32,119,97,110,116,32,116,111,32,97,100,100,114,101,115,115,44,32,97,110,100,32,99,114,101,97,116,101,32,97,32,96,80,117,108,108,32,114,101,113,117,101,115,116,96,46,32,70,111,114,32,111,117,114,32,109,117,116,117,97,108,32,99,111,110,118,101,110,105,101,110,99,101,44,32,105,116,32,119,111,117,108,100,32,98,101,32,110,105,99,101,32,105,102,32,121,111,117,32,114,97,105,115,101,100,32,97,110,32,96,73,115,115,117,101,96,32,102,105,114,115,116,32,115,111,32,119,101,32,99,97,110,32,97,103,114,101,101,32,111,110,32,116,104,101,32,115,99,111,112,101,44,32,116,104,101,32,115,105,122,101,32,111,102,32,116,104,101,32,98,111,117,110,116,121,32,97,110,100,32,109,97,107,101,32,115,117,114,101,32,116,104,105,115,32,105,115,32,115,111,109,101,116,104,105,110,103,32,119,101,32,119,97,110,116,47,110,101,101,100,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568900484},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[46,{"id":46,"thread_id":12,"nr_in_thread":2,"current_text":[35,35,35,35,32,83,99,111,112,101,32,111,102,32,87,111,114,107,32,38,32,68,101,108,105,118,101,114,97,98,108,101,115,10,70,111,114,107,32,116,104,101,32,114,101,112,111,44,32,97,110,100,32,102,105,120,32,119,104,97,116,32,105,115,32,98,114,111,107,101,110,46,32,84,104,101,110,32,109,97,107,101,32,97,32,80,82,32,105,110,32,116,104,101,32,97,112,112,108,105,99,97,98,108,101,32,114,101,112,111,44,32,97,110,100,32,114,101,102,101,114,32,116,111,32,105,116,32,97,32,114,101,112,108,121,32,97,110,115,119,101,114,32,105,110,32,116,104,105,115,32,116,104,114,101,97,100,32,111,114,32,116,104,101,32,71,105,116,72,117,98,32,105,115,115,117,101,46,10,10,65,112,112,108,105,99,97,98,108,101,32,114,101,112,111,115,32,97,114,101,58,10,10,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,106,111,121,115,116,114,101,97,109,10,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,104,101,108,112,100,101,115,107,10,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,99,111,109,109,117,110,105,99,97,116,105,111,110,115,10,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,98,111,117,110,116,105,101,115,10,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,100,101,115,105,103,110],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568997744},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[47,{"id":47,"thread_id":12,"nr_in_thread":3,"current_text":[35,35,35,35,32,67,111,110,115,116,114,97,105,110,116,115,10,49,46,32,65,108,116,104,111,117,103,104,32,115,117,103,103,101,115,116,105,111,110,115,32,102,111,114,32,99,108,97,114,105,102,105,99,97,116,105,111,110,115,44,32,105,109,112,114,111,118,101,109,101,110,116,115,44,32,101,116,99,46,32,97,114,101,32,97,108,119,97,121,115,32,119,101,108,99,111,109,101,44,32,112,108,101,97,115,101,32,97,100,100,32,116,104,101,109,32,97,115,32,99,111,109,109,101,110,116,115,32,105,110,115,116,101,97,100,32,111,102,32,105,110,99,108,117,100,105,110,103,32,116,104,101,109,32,105,110,32,116,104,101,32,80,82,32,105,116,115,101,108,102,44,32,116,111,32,109,97,107,101,32,116,104,101,32,80,82,32,101,97,115,105,101,114,32,116,111,32,114,101,118,105,101,119,46,32,73,102,32,116,104,101,32,114,101,118,105,101,119,101,114,32,97,103,114,101,101,115,32,119,105,116,104,32,121,111,117,114,32,115,117,103,103,101,115,116,105,111,110,44,32,121,111,117,32,99,97,110,32,97,100,100,32,97,32,110,101,119,32,99,111,109,109,105,116,32,116,111,32,116,104,101,32,80,82,46,10,50,46,32,65,108,108,32,108,105,110,107,115,32,119,105,116,104,105,110,32,116,104,101,32,115,97,109,101,32,114,101,112,111,32,109,117,115,116,32,98,101,32,114,101,108,97,116,105,118,101,32,105,110,115,116,101,97,100,32,111,102,32,97,98,115,111,108,117,116,101,46,32,69,120,97,109,112,108,101,58,10,10,96,96,96,10,35,32,70,114,111,109,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,106,111,121,115,116,114,101,97,109,47,116,114,101,101,47,109,97,115,116,101,114,47,116,101,115,116,110,101,116,115,47,97,99,114,111,112,111,108,105,115,10,35,32,89,111,117,32,119,97,110,116,32,116,111,32,108,105,110,107,32,116,111,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,106,111,121,115,116,114,101,97,109,47,116,114,101,101,47,109,97,115,116,101,114,47,109,101,101,116,105,110,103,115,47,97,99,114,111,112,111,108,105,115,35,108,97,117,110,99,104,45,109,101,101,116,105,110,103,10,35,32,68,111,32,116,104,105,115,58,10,91,108,105,110,107,93,40,46,46,47,46,46,47,109,101,101,116,105,110,103,115,47,97,99,114,111,112,111,108,105,115,47,35,108,97,117,110,99,104,45,109,101,101,116,105,110,103,41,10,35,32,78,111,116,32,116,104,105,115,58,10,91,108,105,110,107,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,106,111,121,115,116,114,101,97,109,47,116,114,101,101,47,109,97,115,116,101,114,47,109,101,101,116,105,110,103,115,47,97,99,114,111,112,111,108,105,115,35,108,97,117,110,99,104,45,109,101,101,116,105,110,103,41,10,96,96,96,10,10,51,46,32,87,104,101,110,32,121,111,117,32,115,116,97,114,116,32,119,111,114,107,105,110,103,44,32,102,101,101,108,32,102,114,101,101,32,116,111,32,109,97,107,101,32,97,32,100,114,97,102,116,32,80,82,32,116,111,32,115,104,111,119,32,121,111,117,114,32,105,110,116,101,110,116,44,32,98,117,116,32,112,114,101,102,101,114,97,98,108,121,32,99,104,101,99,107,32,116,104,101,32,101,110,116,105,114,101,32,114,101,112,111,32,98,101,102,111,114,101,10,80,114,101,102,101,114,97,98,108,121,32,103,111,32,116,104,114,111,117,103,104,32,95,97,108,108,95,32,116,104,101,32,108,105,110,107,115,32,98,101,102,111,114,101,32,109,97,114,107,105,110,103,32,105,116,32,114,101,97,100,121,32,102,111,114,32,114,101,118,105,101,119,44,32,97,110,100,32,97,115,115,105,103,110,105,110,103,32,115,111,109,101,111,110,101,32,116,111,32,114,101,118,105,101,119,32,121,111,117,114,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568997768},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[48,{"id":48,"thread_id":12,"nr_in_thread":4,"current_text":[95,85,112,100,97,116,101,32,45,32,48,53,46,48,56,46,49,57,95,10,10,52,46,32,80,108,101,97,115,101,32,117,115,101,32,85,83,32,69,110,103,108,105,115,104,32,115,112,101,108,108,105,110,103,32,102,111,114,32,99,111,110,115,105,115,116,101,110,99,121,32,97,99,114,111,115,115,32,116,104,101,32,111,114,103,97,110,105,122,97,116,105,111,110,46,10,53,46,32,73,100,101,97,108,108,121,44,32,117,115,101,32,91,97,116,111,109,93,40,104,116,116,112,115,58,47,47,97,116,111,109,46,105,111,47,41,32,97,115,32,121,111,117,114,32,101,100,105,116,111,114,44,32,97,110,100,32,97,100,100,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,112,108,117,103,105,110,115,58,10,10,42,32,91,109,97,114,107,100,111,119,110,45,112,114,101,118,105,101,119,45,101,110,104,97,110,99,101,100,93,40,104,116,116,112,115,58,47,47,97,116,111,109,46,105,111,47,112,97,99,107,97,103,101,115,47,109,97,114,107,100,111,119,110,45,112,114,101,118,105,101,119,45,101,110,104,97,110,99,101,100,41,10,42,32,91,109,97,114,107,100,111,119,110,45,116,111,99,45,97,117,116,111,93,40,104,116,116,112,115,58,47,47,97,116,111,109,46,105,111,47,112,97,99,107,97,103,101,115,47,109,97,114,107,100,111,119,110,45,116,111,99,45,97,117,116,111,41,10,10,84,111,32,101,110,115,117,114,101,32,105,116,32,114,101,110,100,101,114,115,32,99,111,114,114,101,99,116,108,121,46,10,10,35,35,35,35,32,66,111,117,110,116,121,32,102,111,114,109,97,116,10,70,105,114,115,116,32,99,111,109,101,32,102,105,114,115,116,32,115,101,114,118,101,46,32,80,97,121,32,111,117,116,32,111,110,32,100,101,108,105,118,101,114,121,46,10,70,111,114,32,111,117,114,32,99,111,110,118,101,110,105,101,110,99,101,44,32,97,100,100,32,97,32,99,111,109,109,101,110,116,32,97,110,100,32,108,105,110,107,32,116,111,32,116,104,101,32,80,82,32,105,110,32,116,104,105,115,32,105,115,115,117,101,44,32,119,105,116,104,32,110,117,109,98,101,114,32,111,102,32,102,105,120,101,115,32,97,110,100,32,101,120,112,101,99,116,101,100,32,112,97,121,111,117,116,115,46,10,10,35,35,35,35,32,68,101,97,100,108,105,110,101,10,87,105,108,108,32,109,111,115,116,32,108,105,107,101,108,121,32,98,101,32,107,101,112,116,32,111,112,101,110,32,102,111,114,32,121,101,97,114,115,46,32,87,105,108,108,32,104,111,110,111,114,32,99,111,110,116,114,105,98,117,116,105,111,110,115,32,52,56,104,32,97,102,116,101,114,32,99,108,111,115,105,110,103,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568997828},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[49,{"id":49,"thread_id":12,"nr_in_thread":5,"current_text":[35,35,32,84,111,32,115,101,101,32,102,117,114,116,104,101,114,32,99,111,110,118,101,114,115,97,116,105,111,110,115,32,97,98,111,117,116,32,116,104,105,115,32,98,111,117,110,116,121,32,97,110,100,32,116,111,32,112,111,115,116,32,121,111,117,114,32,99,111,110,116,114,105,98,117,116,105,111,110,115,44,32,112,108,101,97,115,101,32,118,105,115,105,116,32,116,104,101,32,91,71,105,116,72,117,98,32,105,115,115,117,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,98,111,117,110,116,105,101,115,47,105,115,115,117,101,115,47,51,41,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568997972},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[50,{"id":50,"thread_id":11,"nr_in_thread":2,"current_text":[74,115,103,101,110,101,115,105,115,32,105,115,32,97,108,115,111,32,109,97,107,105,110,103,32,119,101,101,107,108,121,32,112,97,121,111,117,116,115,32,102,111,114,32,112,97,114,116,105,99,105,112,97,116,105,111,110,32,111,110,32,116,104,101,32,91,74,111,121,115,116,114,101,97,109,32,116,101,115,116,110,101,116,115,93,40,104,116,116,112,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,41,46,32,77,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,32,97,98,111,117,116,32,116,104,101,32,119,104,97,116,32,121,111,117,32,99,97,110,44,32,119,104,97,116,32,121,111,117,32,99,97,110,32,109,97,107,101,44,32,97,110,100,32,119,104,121,32,119,101,39,114,101,32,100,111,105,110,103,32,116,104,105,115,32,99,97,110,32,98,101,32,102,111,117,110,100,32,105,110,32,111,117,114,32,91,104,101,108,112,100,101,115,107,32,114,101,112,111,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,104,101,108,112,100,101,115,107,41,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568998146},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[51,{"id":51,"thread_id":11,"nr_in_thread":3,"current_text":[42,42,75,101,101,112,32,105,110,32,109,105,110,100,32,116,104,97,116,32,111,117,114,32,98,111,117,110,116,121,32,115,121,115,116,101,109,32,105,115,32,97,32,87,73,80,44,32,97,110,100,32,105,116,32,115,104,111,117,108,100,32,98,101,32,101,120,112,101,99,116,101,100,32,116,104,97,116,32,99,104,97,110,103,101,115,32,116,111,32,116,104,101,32,112,114,111,99,101,115,115,32,119,105,108,108,32,98,101,32,109,97,100,101,32,97,115,32,116,104,101,32,112,114,111,106,101,99,116,32,103,114,111,119,115,46,42,42],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568998176},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[52,{"id":52,"thread_id":11,"nr_in_thread":4,"current_text":[10,35,35,32,83,117,109,109,97,114,121,32,111,102,32,66,111,117,110,116,105,101,115,10,10,124,32,76,97,115,116,32,85,112,100,97,116,101,100,32,124,32,66,111,117,110,116,105,101,115,32,67,111,110,99,108,117,100,101,100,32,124,32,79,110,103,111,105,110,103,32,66,111,117,110,116,105,101,115,32,124,32,79,102,102,105,99,105,97,108,108,121,32,80,97,105,100,32,124,32,79,108,100,32,80,97,121,111,117,116,115,96,42,96,32,32,124,10,124,58,45,45,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,58,124,10,124,32,49,55,46,48,55,46,49,57,32,32,32,32,32,124,32,32,32,32,32,32,32,32,48,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,51,32,32,32,32,32,32,32,32,124,32,32,32,32,42,42,36,54,50,54,42,42,32,32,32,32,32,124,32,32,32,32,32,42,42,36,50,49,52,42,42,32,32,32,32,124,10,10,96,42,96,32,68,101,110,111,116,101,115,32,98,111,117,110,116,105,101,115,32,112,97,105,100,32,111,117,116,32,98,101,102,111,114,101,32,116,104,101,32,34,111,102,102,105,99,105,97,108,34,32,114,101,112,111,32,119,97,115,32,117,112,46,32,83,111,109,101,32,111,102,32,116,104,101,115,101,32,98,111,117,110,116,105,101,115,32,99,97,110,32,98,101,32,102,111,117,110,100,32,105,110,32,111,116,104,101,114,32,114,101,112,111,115,44,32,115,111,109,101,32,119,101,114,101,32,115,105,109,112,108,121,32,112,111,115,116,101,100,32,111,110,32,84,101,108,101,103,114,97,109,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568998218},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[53,{"id":53,"thread_id":11,"nr_in_thread":5,"current_text":[35,35,32,83,117,109,109,97,114,121,32,111,102,32,84,101,115,116,110,101,116,32,80,97,114,116,105,99,105,112,97,116,105,111,110,32,80,97,121,111,117,116,115,10,10,35,35,35,32,84,111,116,97,108,10,10,124,32,76,97,115,116,32,85,112,100,97,116,101,100,32,124,32,86,97,108,105,100,97,116,111,114,115,32,124,32,67,111,117,110,99,105,108,32,77,101,109,98,101,114,115,32,124,32,83,116,111,114,97,103,101,32,80,114,111,118,105,100,101,114,115,124,32,84,111,116,97,108,32,32,32,32,32,32,32,32,32,32,32,124,10,124,58,45,45,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,58,124,10,124,32,48,50,46,48,56,46,49,57,32,32,32,32,32,124,32,32,32,32,36,56,53,55,32,32,32,32,124,32,32,32,32,32,32,36,57,51,55,32,32,32,32,32,32,32,124,32,32,32,32,32,36,51,56,51,57,32,32,32,32,32,32,32,32,124,32,32,32,42,42,36,53,54,51,51,42,42,32,32,32,32,32,124,10,10,10,35,35,35,32,65,99,114,111,112,111,108,105,115,10,10,124,32,76,97,115,116,32,85,112,100,97,116,101,100,32,124,32,86,97,108,105,100,97,116,111,114,115,32,124,32,67,111,117,110,99,105,108,32,77,101,109,98,101,114,115,32,124,32,83,116,111,114,97,103,101,32,80,114,111,118,105,100,101,114,115,124,32,84,111,116,97,108,32,32,32,32,32,32,32,32,32,32,32,124,10,124,58,45,45,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,58,124,10,124,32,48,50,46,48,56,46,49,57,32,32,32,32,32,124,32,32,32,32,36,52,56,51,32,32,32,32,124,32,32,32,32,32,32,36,53,49,48,32,32,32,32,32,32,32,124,32,32,32,32,32,32,36,51,48,54,52,32,32,32,32,32,32,32,124,32,32,32,32,42,42,36,52,48,53,55,42,42,32,32,32,32,124,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568998248},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[54,{"id":54,"thread_id":11,"nr_in_thread":6,"current_text":[35,35,35,32,65,116,104,101,110,115,10,10,124,32,76,97,115,116,32,85,112,100,97,116,101,100,32,124,32,86,97,108,105,100,97,116,111,114,115,32,124,32,67,111,117,110,99,105,108,32,77,101,109,98,101,114,115,32,124,32,83,116,111,114,97,103,101,32,80,114,111,118,105,100,101,114,115,124,32,84,111,116,97,108,32,32,32,32,32,32,32,32,32,32,32,124,10,124,58,45,45,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,58,124,10,124,32,50,52,46,48,54,46,49,57,32,32,32,32,32,124,32,32,32,32,32,36,50,54,51,32,32,32,124,32,32,32,32,32,32,32,36,50,55,50,32,32,32,32,32,32,124,32,32,32,32,32,32,36,55,55,53,32,32,32,32,32,32,32,32,124,32,32,32,42,42,36,49,51,49,48,42,42,32,32,32,32,32,124,10,10,10,35,35,35,32,83,112,97,114,116,97,10,10,124,32,76,97,115,116,32,85,112,100,97,116,101,100,32,124,32,86,97,108,105,100,97,116,111,114,115,32,124,32,67,111,117,110,99,105,108,32,77,101,109,98,101,114,115,32,124,32,32,32,32,32,84,111,116,97,108,32,32,32,32,32,32,32,124,10,124,58,45,45,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,58,124,58,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,58,124,10,124,32,48,49,46,48,52,46,49,57,32,32,32,32,32,124,32,32,32,32,32,36,49,49,49,32,32,32,124,32,32,32,32,32,32,36,49,53,53,32,32,32,32,32,32,32,124,32,32,32,32,32,42,42,36,50,54,54,42,42,32,32,32,32,124],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568998266},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[55,{"id":55,"thread_id":11,"nr_in_thread":7,"current_text":[35,35,32,66,111,117,110,116,105,101,115,10,10,45,32,42,42,78,117,109,98,101,114,42,42,10,32,32,45,32,87,104,101,110,32,97,32,98,111,117,110,116,121,32,98,101,99,111,109,101,115,32,96,97,99,116,105,118,101,96,44,32,105,116,32,119,105,108,108,32,98,101,32,97,115,115,105,103,110,101,100,32,97,32,110,117,109,98,101,114,32,98,97,115,101,100,32,111,110,32,105,116,115,32,99,104,114,111,110,111,108,111,103,105,99,97,108,32,111,114,100,101,114,46,10,10,45,32,42,42,84,105,116,108,101,42,42,10,32,32,45,32,65,32,98,114,105,101,102,44,32,100,101,115,99,114,105,112,116,105,118,101,32,116,105,116,108,101,10,10,45,32,42,42,76,105,110,107,42,42,10,32,32,45,32,76,105,110,107,32,116,111,32,116,104,101,32,91,105,115,115,117,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,98,111,117,110,116,105,101,115,47,105,115,115,117,101,115,41,32,119,105,116,104,32,100,101,116,97,105,108,115,46,10,10,45,32,42,42,67,97,116,101,103,111,114,121,42,42,10,40,110,111,110,45,101,120,104,97,117,115,116,105,118,101,41,10,32,32,45,32,96,66,117,103,32,102,105,120,96,10,32,32,45,32,96,84,101,115,116,105,110,103,96,10,32,32,45,32,96,68,111,99,117,109,101,110,116,97,116,105,111,110,96,10,32,32,45,32,96,73,109,112,114,111,118,101,109,101,110,116,115,96,10,32,32,45,32,96,77,97,114,107,101,116,105,110,103,96,10,32,32,45,32,96,71,111,118,101,114,110,97,110,99,101,96,10,32,32,45,32,96,78,101,119,32,102,101,97,116,117,114,101,96,10,32,32,45,32,96,80,114,111,106,101,99,116,32,109,97,110,97,103,101,109,101,110,116,96,10,32,32,45,32,96,72,101,108,112,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568998302},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[56,{"id":56,"thread_id":11,"nr_in_thread":8,"current_text":[45,32,42,42,83,116,97,114,116,32,68,97,116,101,42,42,10,32,32,45,32,84,104,101,32,100,97,116,101,32,116,104,101,32,98,111,117,110,116,121,32,98,101,99,97,109,101,32,96,97,99,116,105,118,101,96,10,10,45,32,42,42,65,115,115,105,103,110,101,101,40,115,41,42,42,10,32,32,45,32,73,102,32,97,110,32,97,112,112,108,105,99,97,110,116,32,104,97,115,32,98,101,101,110,32,97,112,112,114,111,118,101,100,32,116,111,32,115,116,97,114,116,32,119,111,114,107,44,32,116,104,101,32,112,101,114,115,111,110,39,115,32,71,105,116,72,117,98,32,96,85,115,101,114,110,97,109,101,96,32,119,105,108,108,32,98,101,32,108,105,115,116,101,100,46,10,32,32,45,32,73,110,32,115,111,109,101,32,99,105,114,99,117,109,115,116,97,110,99,101,115,44,32,105,116,32,99,97,110,32,98,101,32,97,99,99,101,112,116,97,98,108,101,32,116,111,32,106,117,115,116,32,115,116,97,116,101,32,96,65,115,115,105,103,110,101,100,96,46,10,10,45,32,42,42,83,116,97,116,117,115,42,42,10,32,32,45,32,65,99,116,105,118,101,32,66,111,117,110,116,105,101,115,10,32,32,32,32,45,32,96,79,112,101,110,96,10,32,32,32,32,45,32,96,65,115,115,105,103,110,101,100,96,10,32,32,32,32,45,32,96,85,110,100,101,114,32,114,101,118,105,101,119,96,10,32,32,32,32,45,32,96,79,110,32,72,111,108,100,96,10,32,32,45,32,67,111,110,99,108,117,100,101,100,32,66,111,117,110,116,105,101,115,10,32,32,32,32,45,32,96,67,111,109,112,108,101,116,101,100,96,10,32,32,32,32,45,32,96,69,120,112,105,114,101,100,96,10,32,32,32,32,45,32,96,65,98,111,114,116,101,100,96,10,32,32,45,32,77,111,114,101,32,100,101,116,97,105,108,115,32,111,110,32,116,104,101,32,115,116,97,116,117,115,32,99,97,110,32,98,101,32,102,111,117,110,100,32,98,121,32,102,111,108,108,111,119,105,110,103,32,116,104,101,32,108,105,110,107,32,102,111,114,32,116,104,101,32,112,114,111,112,111,115,97,108,32,111,102,32,105,110,116,101,114,101,115,116,46,10,10,45,32,42,42,80,97,105,100,42,42,10,32,32,45,32,84,104,101,32,97,109,111,117,110,116,32,112,97,105,100,32,111,117,116,32,116,104,117,115,32,102,97,114,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568998314},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[57,{"id":57,"thread_id":11,"nr_in_thread":9,"current_text":[45,32,42,42,66,111,117,110,116,121,42,42,10,32,32,45,32,65,99,116,105,118,101,32,66,111,117,110,116,105,101,115,10,32,32,32,32,45,32,84,104,101,32,118,97,108,117,101,32,111,102,32,116,104,101,32,98,111,117,110,116,121,46,10,32,32,45,32,67,111,110,99,108,117,100,101,100,32,66,111,117,110,116,105,101,115,10,32,32,32,32,45,32,84,104,101,32,116,111,116,97,108,32,97,109,111,117,110,116,32,112,97,105,100,32,111,117,116,46,10,32,32,45,32,73,102,32,116,104,101,32,97,109,111,117,110,116,32,105,115,32,102,111,108,108,111,119,101,100,32,98,121,32,96,42,96,44,32,99,111,110,115,117,108,116,32,116,104,101,32,108,105,110,107,101,100,32,91,105,115,115,117,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,98,111,117,110,116,105,101,115,47,105,115,115,117,101,115,41,32,102,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,46,10,10,45,32,42,42,69,110,100,32,68,97,116,101,42,42,10,32,32,45,32,84,104,101,32,100,97,116,101,32,116,104,101,32,98,111,117,110,116,121,32,119,97,115,32,96,99,111,110,99,108,117,100,101,100,96,10,10,45,32,42,42,67,108,97,105,109,97,110,116,40,115,41,42,42,10,32,32,45,32,73,102,32,116,104,101,32,98,111,117,110,116,121,32,119,97,115,32,115,117,99,99,101,115,115,102,117,108,108,121,32,99,108,97,105,109,101,100,44,32,116,104,101,32,112,101,114,115,111,110,39,115,32,71,105,116,72,117,98,32,96,85,115,101,114,110,97,109,101,96,32,119,105,108,108,32,98,101,32,108,105,115,116,101,100,46,10,32,32,45,32,73,110,32,115,111,109,101,32,99,105,114,99,117,109,115,116,97,110,99,101,115,44,32,105,116,32,99,97,110,32,98,101,32,97,99,99,101,112,116,97,98,108,101,32,116,111,32,106,117,115,116,32,115,116,97,116,101,32,96,67,108,97,105,109,101,100,96,46,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568998374},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[58,{"id":58,"thread_id":11,"nr_in_thread":10,"current_text":[35,35,32,80,114,111,112,111,115,97,108,115,10,10,73,110,32,97,100,100,105,116,105,111,110,32,116,111,32,116,104,101,32,74,115,103,101,110,101,115,105,115,32,116,101,97,109,44,32,99,111,109,109,117,110,105,116,121,32,109,101,109,98,101,114,115,44,32,110,101,119,32,97,110,100,32,111,108,100,44,32,115,104,111,117,108,100,32,110,111,116,32,98,101,32,97,102,114,97,105,100,32,116,111,32,112,114,111,112,111,115,101,32,98,111,117,110,116,105,101,115,46,32,65,116,32,115,111,109,101,32,112,111,105,110,116,44,32,119,101,32,104,111,112,101,32,116,111,32,99,114,101,97,116,101,32,97,32,115,121,115,116,101,109,32,101,105,116,104,101,114,32,115,105,109,105,108,97,114,32,116,111,32,116,104,101,32,91,66,73,80,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,105,116,99,111,105,110,47,98,105,112,115,41,32,112,114,111,99,101,115,115,32,102,111,114,32,98,105,116,99,111,105,110,32,97,110,100,47,111,114,32,116,111,32,116,104,101,32,91,70,70,83,93,40,104,116,116,112,115,58,47,47,102,111,114,117,109,46,103,101,116,109,111,110,101,114,111,46,111,114,103,47,57,47,119,111,114,107,45,105,110,45,112,114,111,103,114,101,115,115,41,32,115,121,115,116,101,109,32,102,111,114,32,109,111,110,101,114,111,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568998488},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[59,{"id":59,"thread_id":11,"nr_in_thread":11,"current_text":[35,35,35,32,83,116,101,112,32,98,121,32,83,116,101,112,10,10,84,104,105,115,32,115,101,99,116,105,111,110,32,111,117,116,108,105,110,101,115,32,116,104,101,32,115,116,101,112,115,32,102,114,111,109,32,97,32,112,114,111,112,111,115,97,108,115,32,105,115,32,109,97,100,101,44,32,116,111,32,104,97,118,101,32,105,116,32,98,101,99,111,109,101,32,97,110,32,91,65,99,116,105,118,101,32,66,111,117,110,116,121,93,40,35,97,99,116,105,118,101,45,98,111,117,110,116,105,101,115,41,46,10,10,49,46,32,73,102,32,121,111,117,32,97,114,101,32,110,111,116,32,102,97,109,105,108,105,97,114,32,119,105,116,104,32,116,104,101,32,112,114,111,106,101,99,116,32,97,110,100,32,105,116,115,32,103,111,97,108,115,44,32,99,111,110,115,105,100,101,114,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,115,111,117,114,99,101,115,58,10,32,32,45,32,84,104,101,32,112,114,111,106,101,99,116,32,91,109,97,110,105,102,101,115,116,111,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,109,97,110,105,102,101,115,116,111,41,46,10,32,32,45,32,84,104,101,32,112,114,111,106,101,99,116,32,91,119,104,105,116,101,112,97,112,101,114,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,119,104,105,116,101,112,97,112,101,114,41,46,10,32,32,45,32,79,117,114,32,108,111,110,103,32,111,114,32,115,104,111,114,116,32,116,101,114,109,32,91,79,75,82,115,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,106,111,121,115,116,114,101,97,109,47,116,114,101,101,47,109,97,115,116,101,114,47,111,107,114,115,41,46,10,89,111,117,114,32,112,114,111,112,111,115,97,108,32,115,104,111,117,108,100,32,112,114,101,102,101,114,97,98,108,121,32,98,101,32,105,110,32,108,105,110,101,32,119,105,116,104,44,32,111,114,32,97,116,32,108,101,97,115,116,32,110,111,116,32,111,114,116,104,111,103,111,110,97,108,32,116,111,32,116,104,101,115,101,32,115,111,117,114,99,101,115,46,32,82,101,102,101,114,114,105,110,103,32,116,111,32,97,110,32,105,115,115,117,101,32,102,114,111,109,32,111,110,101,32,111,102,32,111,117,114,32,111,116,104,101,114,32,114,101,112,111,115,32,99,97,110,32,97,108,115,111,32,98,101,32,97,32,103,111,111,100,32,115,111,117,114,99,101,46,10,10,73,102,32,121,111,117,32,104,97,118,101,32,97,32,112,114,111,112,111,115,97,108,32,116,104,97,116,32,100,111,101,115,32,110,111,116,32,114,101,97,108,108,121,32,102,105,116,32,117,110,100,101,114,32,97,110,121,32,111,102,32,116,104,101,32,97,98,111,118,101,44,32,102,101,101,108,32,102,114,101,101,32,116,111,32,103,97,117,103,101,32,116,104,101,32,105,110,116,101,114,101,115,116,32,97,110,100,32,114,101,108,101,118,97,110,99,101,32,105,110,32,97,32,109,111,114,101,32,105,110,102,111,114,109,97,108,32,109,97,110,110,101,114,44,32,101,46,103,46,32,105,110,32,111,110,101,32,111,102,32,111,117,114,32,99,111,109,109,117,110,105,99,97,116,105,111,110,32,99,104,97,110,110,101,108,115,44,32,115,117,99,104,32,97,115,32,91,84,101,108,101,103,114,97,109,93,40,104,116,116,112,115,58,47,47,116,46,109,101,47,74,111,121,83,116,114,101,97,109,79,102,102,105,99,105,97,108,41,44,32,111,114,32,116,104,101,32,102,111,114,117,109,44,32,97,102,116,101,114,32,105,116,32,104,97,115,32,98,101,101,110,32,105,110,116,114,111,100,117,99,101,100,32,105,110,32,91,65,99,114,111,112,111,108,105,115,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,106,111,121,115,116,114,101,97,109,47,116,114,101,101,47,109,97,115,116,101,114,47,116,101,115,116,110,101,116,115,47,97,99,114,111,112,111,108,105,115,41,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568998506},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[60,{"id":60,"thread_id":11,"nr_in_thread":12,"current_text":[50,46,32,77,97,107,101,32,97,110,32,91,105,115,115,117,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,98,111,117,110,116,105,101,115,47,105,115,115,117,101,115,41,32,105,110,32,116,104,101,32,98,111,117,110,116,105,101,115,32,114,101,112,111,44,32,115,116,114,117,99,116,117,114,101,100,32,97,115,32,102,111,108,108,111,119,115,58,10,10,10,35,35,35,35,32,84,105,116,108,101,10,10,45,32,42,42,74,67,80,42,42,32,45,32,42,42,68,101,115,99,114,105,112,116,105,118,101,32,84,105,116,108,101,42,42,10,10,35,35,35,35,35,32,66,111,100,121,10,10,45,32,42,42,80,114,111,98,108,101,109,58,42,42,10,80,114,111,118,105,100,101,32,97,32,100,101,115,99,114,105,112,116,105,111,110,32,111,102,32,116,104,101,32,112,114,111,98,108,101,109,32,111,114,32,105,109,112,114,111,118,101,109,101,110,116,32,121,111,117,32,119,105,115,104,32,116,111,32,115,101,101,32,105,109,112,108,101,109,101,110,116,101,100,46,10,45,32,42,42,71,111,97,108,115,58,42,42,10,65,32,98,114,105,101,102,32,100,101,115,99,114,105,112,116,105,111,110,32,111,102,32,116,104,101,32,103,111,97,108,115,32,121,111,117,32,104,111,112,101,32,116,111,32,97,99,104,105,101,118,101,44,32,97,110,100,32,104,111,119,32,105,116,32,119,105,108,108,32,98,101,110,101,102,105,116,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,80,114,111,106,101,99,116,46,10,10,84,104,101,115,101,32,97,114,101,32,116,104,101,32,109,105,110,105,109,117,109,32,114,101,113,117,105,114,101,109,101,110,116,115,44,32,98,117,116,32,121,111,117,32,97,114,101,32,101,110,99,111,117,114,97,103,101,100,32,116,111,32,108,111,111,107,32,97,116,32,116,104,101,32,91,98,111,117,110,116,121,32,115,116,114,117,99,116,117,114,101,93,40,35,98,111,100,121,45,49,41,32,102,111,114,32,97,110,121,116,104,105,110,103,32,101,120,116,114,97,32,116,111,32,97,100,100,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568998536},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[61,{"id":61,"thread_id":11,"nr_in_thread":13,"current_text":[51,46,32,73,102,32,121,111,117,32,119,105,115,104,44,32,97,110,110,111,117,110,99,101,32,121,111,117,114,32,112,114,111,112,111,115,97,108,32,105,110,32,111,110,101,32,111,102,32,111,117,114,32,99,111,109,109,117,110,105,99,97,116,105,111,110,32,99,104,97,110,110,101,108,115,32,109,101,110,116,105,111,110,101,100,32,97,98,111,118,101,46,32,84,104,105,115,32,119,105,108,108,32,108,105,107,101,108,121,32,103,101,110,101,114,97,116,101,32,109,111,114,101,32,102,101,101,100,98,97,99,107,46,10,10,52,46,32,65,32,109,101,109,98,101,114,32,111,102,32,116,104,101,32,74,115,103,101,110,101,115,105,115,32,116,101,97,109,32,119,105,108,108,32,114,101,112,108,121,32,105,110,32,97,32,116,105,109,101,108,121,32,109,97,110,110,101,114,44,32,97,115,107,105,110,103,32,102,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,44,32,114,101,106,101,99,116,105,110,103,32,111,114,32,97,112,112,114,111,118,105,110,103,32,121,111,117,114,32,112,114,111,112,111,115,97,108,46,10,10,53,46,32,73,102,32,105,116,32,103,101,116,115,32,97,112,112,114,111,118,101,100,44,32,74,115,103,101,110,101,115,105,115,32,119,105,108,108,32,101,105,116,104,101,114,32,119,114,105,116,101,32,97,110,100,32,97,110,110,111,117,110,99,101,32,116,104,101,32,98,111,117,110,116,121,32,97,115,32,100,101,115,99,114,105,98,101,100,32,98,101,108,111,119,44,32,111,114,32,100,101,108,101,103,97,116,101,32,116,104,101,32,114,101,115,112,111,110,115,105,98,105,108,105,116,121,46,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568998548},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[62,{"id":62,"thread_id":11,"nr_in_thread":14,"current_text":[35,35,35,32,65,110,110,111,117,110,99,105,110,103,32,65,99,116,105,118,101,32,66,111,117,110,116,105,101,115,10,10,87,104,101,110,32,97,32,91,112,114,111,112,111,115,97,108,93,40,35,112,114,111,112,111,115,97,108,115,41,32,104,97,115,32,98,101,101,110,32,97,112,112,114,111,118,101,100,44,32,111,114,32,74,115,103,101,110,101,115,105,115,32,104,97,118,101,32,105,100,101,110,116,105,102,105,101,100,32,115,111,109,101,116,104,105,110,103,32,115,117,105,116,97,98,108,101,32,102,111,114,32,97,32,98,111,117,110,116,121,44,32,105,116,32,119,105,108,108,32,98,101,32,97,110,110,111,117,110,99,101,100,32,97,115,32,97,110,32,91,105,115,115,117,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,98,111,117,110,116,105,101,115,47,105,115,115,117,101,115,41,44,32,97,110,100,32,97,100,100,101,100,32,116,111,32,116,104,101,32,91,65,99,116,105,118,101,32,66,111,117,110,116,105,101,115,93,40,35,97,99,116,105,118,101,45,98,111,117,110,116,105,101,115,41,32,116,97,98,108,101,46,10,10,72,111,119,32,116,104,101,32,112,114,111,99,101,115,115,32,108,111,111,107,115,32,102,114,111,109,32,116,104,101,32,96,65,99,116,105,118,101,96,32,115,116,97,103,101,32,116,111,32,96,67,111,110,99,108,117,100,101,100,96,32,119,105,108,108,32,100,101,112,101,110,100,32,111,110,32,116,104,101,32,115,99,111,112,101,32,111,102,32,119,111,114,107,44,32,42,42,67,97,116,101,103,111,114,121,42,42,44,32,112,97,121,111,117,116,32,115,116,114,117,99,116,117,114,101,44,32,101,116,99,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568998578},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[63,{"id":63,"thread_id":11,"nr_in_thread":15,"current_text":[35,35,32,70,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,32,111,110,32,98,111,117,110,116,105,101,115,44,32,112,108,101,97,115,101,32,118,105,115,105,116,32,116,104,101,32,91,106,111,121,115,116,114,101,97,109,47,98,111,117,110,116,105,101,115,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,98,111,117,110,116,105,101,115,47,41,32,114,101,112,111,115,105,116,111,114,121,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568998830},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[64,{"id":64,"thread_id":13,"nr_in_thread":2,"current_text":[35,35,32,80,114,111,98,108,101,109,10,65,115,32,100,111,99,117,109,101,110,116,101,100,32,105,110,32,91,74,111,121,115,116,114,101,97,109,47,115,117,98,115,116,114,97,116,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,35,54,56,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,115,117,98,115,116,114,97,116,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,47,105,115,115,117,101,115,47,54,56,41,44,32,91,74,111,121,115,116,114,101,97,109,47,115,117,98,115,116,114,97,116,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,35,54,57,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,115,117,98,115,116,114,97,116,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,47,105,115,115,117,101,115,47,54,57,41,44,32,115,104,111,119,110,32,105,110,32,91,116,101,108,101,109,116,101,116,114,121,93,40,104,116,116,112,115,58,47,47,116,101,108,101,109,101,116,114,121,46,112,111,108,107,97,100,111,116,46,105,111,47,35,47,74,111,121,115,116,114,101,97,109,37,50,48,84,101,115,116,110,101,116,37,50,48,118,50,41,32,97,110,100,32,100,105,115,99,117,115,115,101,100,32,104,101,97,118,105,108,121,32,105,110,32,111,117,114,32,99,111,109,109,117,110,105,116,121,32,99,104,97,110,110,101,108,115,44,32,107,101,101,112,105,110,103,32,97,32,115,117,115,116,97,105,110,101,100,32,104,105,103,104,32,112,101,101,114,32,99,111,117,110,116,32,104,97,115,32,112,114,111,118,101,100,32,100,105,102,102,105,99,117,108,116,46,32,82,117,110,110,105,110,103,32,116,104,101,32,110,111,100,101,32,119,105,116,104,32,100,101,102,97,117,108,116,32,115,101,116,116,105,110,103,115,32,97,110,100,32,108,101,97,118,105,110,103,32,105,116,32,102,111,114,32,97,32,108,111,110,103,32,116,105,109,101,32,119,105,108,108,32,108,105,107,101,108,121,32,114,101,115,117,108,116,32,105,110,58],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568999328},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[65,{"id":65,"thread_id":13,"nr_in_thread":3,"current_text":[49,46,32,65,32,99,111,110,116,105,110,117,111,117,115,32,100,114,111,112,32,105,110,32,112,101,101,114,115,32,40,97,115,32,116,104,101,32,34,112,111,111,108,34,32,111,102,32,50,53,32,103,101,116,115,32,102,105,108,108,101,100,32,119,105,116,104,32,102,114,111,122,101,110,32,110,111,100,101,115,44,32,97,110,100,32,110,111,100,101,115,32,102,114,111,109,32,111,116,104,101,114,32,110,101,116,119,111,114,107,115,41,46,10,50,46,32,65,32,116,101,110,100,101,110,99,121,32,102,111,114,32,99,108,117,115,116,101,114,105,110,103,32,112,101,101,114,115,32,40,105,101,46,32,97,32,103,114,111,117,112,32,111,102,32,110,111,100,101,115,32,111,110,108,121,47,109,111,115,116,108,121,32,99,111,110,110,101,99,116,101,100,32,116,111,32,101,97,99,104,32,111,116,104,101,114,41,10,51,46,32,72,105,103,104,32,108,97,116,101,110,99,121,44,32,108,101,97,118,105,110,103,32,96,118,97,108,105,100,97,116,111,114,115,96,32,116,111,32,103,101,116,32,119,97,114,110,105,110,103,115,47,115,108,97,115,104,105,110,103,115,47,98,97,110,110,101,100,32,100,117,101,32,116,111,32,97,110,32,34,117,110,102,111,114,116,117,110,97,116,101,34,32,111,114,100,101,114,32,105,110,32,116,104,101,32,113,117,101,117,101,46,10,52,46,32,84,104,105,115,32,97,103,97,105,110,32,104,97,115,32,108,101,97,100,32,116,111,32,102,111,114,107,115,44,32,101,105,116,104,101,114,32,98,101,99,97,117,115,101,32,116,104,101,32,111,110,101,32,34,111,117,116,115,105,100,101,34,32,110,111,100,101,32,105,110,32,116,104,101,32,99,108,117,115,116,101,114,32,40,114,101,102,32,50,46,41,32,104,97,115,32,103,111,110,101,32,111,102,102,108,105,110,101,44,32,97,110,100,47,111,114,32,98,101,99,97,117,115,101,32,115,111,109,101,32,110,111,100,101,115,32,99,111,110,115,105,100,101,114,32,116,104,101,32,112,114,111,112,111,115,101,100,32,98,108,111,99,107,32,116,111,32,98,101,32,119,105,116,104,105,110,32,116,104,101,32,116,105,109,101,32,108,105,109,105,116,44,32,97,110,100,32,111,116,104,101,114,115,32,110,111,116,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568999358},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[66,{"id":66,"thread_id":13,"nr_in_thread":4,"current_text":[65,115,32,97,32,115,105,100,101,32,110,111,116,101,44,32,116,104,101,114,101,32,105,115,32,97,32,99,108,117,115,116,101,114,105,110,103,32,111,102,32,110,111,100,101,115,32,105,110,32,69,117,114,111,112,101,44,32,98,117,116,32,116,104,101,32,114,101,115,116,32,111,102,32,116,104,101,32,119,111,114,108,100,32,105,115,32,110,111,116,32,97,115,32,119,101,108,108,32,114,101,112,114,101,115,101,110,116,101,100,44,32,105,110,99,114,101,97,115,105,110,103,32,108,97,116,101,110,99,121,32,97,110,100,32,97,100,100,105,110,103,32,116,111,32,116,104,101,32,112,114,111,98,108,101,109,46,10,10,65,115,32,119,101,32,100,111,110,39,116,32,119,97,110,116,32,116,111,32,114,101,115,116,97,114,116,32,111,117,114,32,110,101,116,119,111,114,107,32,97,103,97,105,110,32,40,97,115,32,111,117,116,108,105,110,101,100,32,105,110,32,91,74,111,121,115,116,114,101,97,109,47,115,117,98,115,116,114,97,116,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,35,54,57,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,115,117,98,115,116,114,97,116,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,47,105,115,115,117,101,115,47,54,57,41,41,44,32,119,101,32,104,97,118,101,32,97,100,118,105,115,101,100,32,117,115,101,114,115,32,116,111,58,10,10,42,32,105,110,99,114,101,97,115,101,32,112,101,101,114,32,99,111,117,110,116,32,98,121,32,97,100,100,105,110,103,32,116,104,101,32,102,108,97,103,115,10,32,32,96,45,45,105,110,45,112,101,101,114,115,32,110,32,45,45,111,117,116,32,112,101,101,114,115,32,109,96,10,32,32,119,104,101,114,101,32,110,32,97,110,100,32,109,32,62,32,50,53,46,10,42,32,114,101,115,116,97,114,116,32,116,104,101,105,114,32,110,111,100,101,32,97,116,32,114,101,103,117,108,97,114,32,105,110,116,101,114,118,97,108,115,10,10,66,111,116,104,32,111,102,32,116,104,101,115,101,32,105,109,112,114,111,118,101,115,32,116,104,101,32,115,105,116,117,97,116,105,111,110,44,32,98,117,116,32,116,104,101,32,102,111,114,109,101,114,32,105,110,99,114,101,97,115,101,115,32,109,101,109,111,114,121,32,117,115,97,103,101,44,32,97,110,100,32,116,104,101,32,108,97,116,116,101,114,32,114,101,113,117,105,114,101,115,32,97,32,109,111,114,101,32,104,97,110,100,115,32,111,110,32,97,112,112,114,111,97,99,104,44,32,111,114,32,109,111,114,101,32,97,100,118,97,110,99,101,100,32,115,101,116,116,105,110,103,115,46,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568999376},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[67,{"id":67,"thread_id":13,"nr_in_thread":5,"current_text":[35,35,32,80,114,111,112,111,115,97,108,10,68,111,32,97,32,109,97,114,107,101,116,105,110,103,32,99,97,109,112,97,105,103,110,44,32,119,104,101,114,101,32,101,120,105,115,116,105,110,103,32,99,111,109,109,117,110,105,116,121,32,109,101,109,98,101,114,115,32,97,114,101,32,103,105,118,101,110,32,96,74,111,121,115,116,114,101,97,109,96,32,98,114,97,110,100,101,100,32,115,105,110,103,108,101,32,98,111,97,114,100,32,99,111,109,112,117,116,101,114,115,32,40,114,97,115,112,98,101,114,114,121,32,112,105,39,115,32,111,114,32,115,105,109,105,108,97,114,41,32,102,111,114,32,102,114,101,101,44,32,116,111,32,114,117,110,32,97,115,32,110,111,100,101,115,46,32,84,104,101,121,32,119,105,108,108,32,114,101,99,101,105,118,101,32,114,101,103,117,108,97,114,32,109,111,110,101,114,111,32,112,97,121,109,101,110,116,115,32,116,111,32,99,111,118,101,114,32,101,108,101,99,116,114,105,99,105,116,121,32,97,110,100,32,116,104,101,105,114,32,116,105,109,101,32,105,102,32,116,104,101,105,114,32,110,111,100,101,115,32,104,97,118,101,32,115,117,102,102,105,99,105,101,110,116,32,117,112,116,105,109,101,46,32,84,104,101,121,32,119,105,108,108,32,111,102,32,99,111,117,114,115,101,32,103,101,116,32,116,111,32,107,101,101,112,32,116,104,101,32,82,66,80,115,32,110,111,32,109,97,116,116,101,114,32,119,104,97,116,46,32,84,104,101,115,101,32,110,111,100,101,115,32,119,105,108,108,32,109,97,121,32,111,114,32,109,97,121,32,110,111,116,32,98,101,32,112,97,105,100,32,102,111,114,32,98,101,105,110,103,32,96,118,97,108,105,100,97,116,111,114,115,96,46,10,73,32,98,101,108,105,101,118,101,32,116,104,105,115,32,99,97,110,32,104,101,108,112,32,105,110,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,119,97,121,115,58,10,10,49,46,32,73,110,99,114,101,97,115,101,32,116,104,101,32,110,111,100,101,32,99,111,117,110,116,44,32,119,104,105,99,104,32,119,105,108,108,58,10,32,32,32,10,32,32,32,42,32,105,109,112,114,111,118,101,32,116,104,101,32,110,101,116,119,111,114,107,10,32,32,32,42,32,112,114,111,109,111,116,101,32,111,117,114,32,34,112,111,115,105,116,105,111,110,34,32,105,110,32,116,104,101,32,91,116,101,108,101,109,116,101,116,114,121,93,40,104,116,116,112,115,58,47,47,116,101,108,101,109,101,116,114,121,46,112,111,108,107,97,100,111,116,46,105,111,47,35,47,74,111,121,115,116,114,101,97,109,37,50,48,84,101,115,116,110,101,116,37,50,48,118,50,41,32,104,105,101,114,97,114,99,104,121,10,50,46,32,70,117,114,116,104,101,114,32,98,117,105,108,100,32,97,110,100,32,101,110,99,111,117,114,97,103,101,32,116,104,101,32,99,111,109,109,117,110,105,116,121,46,10,51,46,32,72,101,108,112,32,105,109,112,114,111,118,101,32,116,104,101,32,116,101,99,104,110,105,99,97,108,32,115,107,105,108,108,115,32,111,102,32,116,104,101,32,114,101,99,101,105,118,105,110,103,32,109,101,109,98,101,114,115,32,40,116,104,101,121,32,119,105,108,108,32,111,102,32,99,111,117,114,115,101,32,103,101,116,32,115,117,112,112,111,114,116,44,32,98,117,116,32,119,101,32,119,105,108,108,32,110,111,116,32,115,104,105,112,32,116,104,101,32,110,111,100,101,115,32,119,105,116,104,32,115,111,102,116,119,97,114,101,41],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568999394},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[68,{"id":68,"thread_id":13,"nr_in_thread":6,"current_text":[35,35,32,67,111,115,116,10,65,32,91,114,97,115,112,98,101,114,114,121,32,112,105,93,40,104,116,116,112,115,58,47,47,119,119,119,46,97,109,97,122,111,110,46,99,111,109,47,65,66,79,88,45,82,97,115,112,98,101,114,114,121,45,67,111,109,112,108,101,116,101,45,77,111,116,104,101,114,98,111,97,114,100,45,72,101,97,116,115,105,110,107,47,100,112,47,66,48,55,68,56,86,88,87,82,89,47,114,101,102,61,115,114,95,49,95,49,55,63,99,114,105,100,61,49,56,81,83,83,87,88,87,86,73,72,80,89,38,107,101,121,119,111,114,100,115,61,114,97,115,112,98,101,114,114,121,43,112,105,43,51,43,98,37,50,66,38,113,105,100,61,49,53,53,55,53,48,57,48,54,56,38,115,61,103,97,116,101,119,97,121,38,115,112,114,101,102,105,120,61,114,97,115,112,98,101,114,114,121,43,112,37,50,67,97,112,115,37,50,67,52,48,57,38,115,114,61,56,45,49,55,41,32,119,105,116,104,32,97,108,108,32,116,104,101,32,110,101,101,100,101,100,32,101,120,116,114,97,32,101,113,117,105,112,109,101,110,116,32,99,111,115,116,115,32,97,114,111,117,110,100,32,126,56,48,36,32,119,47,111,32,115,104,105,112,112,105,110,103,46,32,66,121,32,115,104,111,112,112,105,110,103,32,97,114,111,117,110,100,44,32,98,117,121,105,110,103,32,105,110,32,98,117,108,107,44,32,97,110,100,32,99,111,110,115,105,100,101,114,32,99,104,101,97,112,101,114,32,98,111,97,114,100,115,42,44,32,97,32,118,101,114,121,32,104,105,103,104,32,101,110,100,32,101,115,116,105,109,97,116,101,32,99,111,109,101,115,32,116,111,32,36,49,48,48,32,115,104,105,112,112,101,100,46,32,71,101,116,116,105,110,103,32,116,104,101,32,99,111,115,116,32,100,111,119,110,32,116,111,32,36,53,48,32,109,105,103,104,116,32,98,101,32,112,111,115,115,105,98,108,101,44,32,98,117,116,32,97,32,98,117,100,103,101,116,32,111,102,32,36,49,48,48,47,112,114,32,98,111,97,114,100,32,105,115,32,115,105,109,112,108,101,32,97,110,100,32,99,111,110,115,101,114,118,97,116,105,118,101,46,10,10,42,99,117,114,114,101,110,116,108,121,44,32,98,111,97,114,100,115,32,97,115,32,115,105,109,112,108,101,32,97,115,32,116,104,101,32,91,111,114,97,110,103,101,32,112,105,32,122,101,114,111,93,40,104,116,116,112,115,58,47,47,119,119,119,46,97,108,105,101,120,112,114,101,115,115,46,99,111,109,47,105,116,101,109,47,79,114,97,110,103,101,45,80,105,45,90,101,114,111,45,72,50,45,81,117,97,100,45,67,111,114,101,45,79,112,101,110,45,115,111,117,114,99,101,45,53,49,50,77,66,45,80,114,111,116,101,99,116,105,118,101,45,87,104,105,116,101,45,67,97,115,101,45,100,101,118,101,108,111,112,109,101,110,116,45,98,111,97,114,100,45,98,101,121,111,110,100,45,82,97,115,112,98,101,114,114,121,47,51,50,55,57,57,49,49,49,54,49,49,46,104,116,109,108,63,115,112,109,61,97,50,103,48,115,46,57,48,52,50,51,49,49,46,48,46,48,46,49,101,102,55,52,99,52,100,65,71,120,68,73,50,41,32,99,97,110,32,95,99,117,114,114,101,110,116,108,121,95,32,114,117,110,32,111,110,32,116,104,101,32,110,101,116,119,111,114,107,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568999412},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[69,{"id":69,"thread_id":13,"nr_in_thread":7,"current_text":[87,101,32,119,105,108,108,32,112,108,97,99,101,32,97,32,98,111,117,110,116,121,32,102,111,114,32,97,114,114,97,110,103,105,110,103,32,116,104,101,32,119,104,111,108,101,32,116,104,105,110,103,44,32,105,101,46,32,100,101,97,108,105,110,103,32,119,105,116,104,32,115,117,112,112,108,105,101,114,115,32,102,111,114,32,98,111,97,114,100,115,32,97,110,100,32,98,114,97,110,100,105,110,103,44,32,99,111,109,112,105,108,105,110,103,32,97,32,108,105,115,116,32,111,102,32,114,101,99,105,112,105,101,110,116,115,44,32,97,110,100,32,97,114,114,97,110,103,105,110,103,32,102,111,114,32,115,104,105,112,112,105,110,103,46,32,83,66,67,115,32,112,111,119,101,114,32,99,111,110,115,117,109,112,116,105,111,110,32,105,115,32,99,108,111,115,101,32,116,111,32,110,101,103,108,105,103,105,98,108,101,44,32,115,111,32,112,97,121,105,110,103,32,36,56,47,109,111,110,116,104,32,45,62,32,36,49,48,48,47,121,101,97,114,44,32,102,111,114,32,117,112,116,105,109,101,32,62,57,53,37,32,115,101,101,109,115,32,102,97,105,114,46,10,10,65,115,115,117,109,105,110,103,32,119,101,32,112,114,111,118,105,100,101,32,53,48,32,98,111,97,114,100,115,44,32,116,104,101,32,116,111,116,97,108,32,99,111,115,116,32,97,115,115,117,109,105,110,103,32,116,104,101,32,98,111,97,114,100,115,32,97,114,101,32,112,111,119,101,114,102,117,108,32,101,110,111,117,103,104,32,116,111,32,115,117,112,112,111,114,116,32,116,104,101,32,105,110,99,114,101,97,115,105,110,103,32,110,101,116,119,111,114,107,32,108,111,97,100,32,102,111,114,32,126,49,32,121,101,97,114,46,32,40,87,101,32,119,105,108,108,32,108,105,107,101,108,121,32,104,97,118,101,32,116,111,32,115,116,97,114,116,32,110,101,119,32,99,104,97,105,110,115,32,111,110,99,101,32,111,114,32,116,119,105,99,101,32,112,114,32,121,101,97,114,32,97,110,121,119,97,121,41,46,10,10,73,116,101,109,9,81,116,121,9,67,111,115,116,10,66,111,97,114,100,9,53,48,9,36,49,48,48,10,32,80,97,121,111,117,116,115,9,126,52,56,48,42,9,36,56,10,66,111,117,110,116,121,42,42,9,49,9,36,50,53,48,10,42,42,84,79,84,65,76,42,42,9,42,42,78,65,42,42,9,42,42,36,57,48,57,48,42,42,10,42,65,115,115,117,109,105,110,103,32,115,111,109,101,32,108,111,115,115,32,97,108,111,110,103,32,116,104,101,32,119,97,121,46,10,42,42,116,104,101,32,98,111,117,110,116,121,32,99,111,115,116,32,119,97,115,32,99,104,111,115,101,110,32,98,121,32,97,32,112,115,101,117,100,111,45,114,97,110,100,111,109,32,110,117,109,98,101,114,32,103,101,110,101,114,97,116,111,114,46,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568999442},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[70,{"id":70,"thread_id":13,"nr_in_thread":8,"current_text":[35,35,32,84,104,111,117,103,104,116,115,10,87,101,32,104,97,118,101,32,116,104,117,115,32,102,97,114,32,111,112,116,101,100,32,102,111,114,32,97,110,32,105,110,116,101,114,97,99,116,105,118,101,32,119,97,121,32,111,102,32,109,97,114,107,101,116,105,110,103,32,116,111,32,98,117,105,108,100,32,116,104,101,32,99,111,109,109,117,110,105,116,121,44,32,97,115,32,119,101,32,104,111,112,101,32,116,104,105,115,32,97,112,112,114,111,97,99,104,32,119,105,108,108,32,105,109,112,114,111,118,101,32,116,104,101,32,95,113,117,97,108,105,116,121,95,32,114,97,116,104,101,114,32,116,104,97,110,32,106,117,115,116,32,116,104,101,32,95,113,117,97,110,116,105,116,121,95,32,111,102,32,111,117,114,32,109,101,109,98,101,114,115,46,32,77,111,114,101,32,111,110,32,116,104,105,115,32,99,97,110,32,98,101,32,102,111,117,110,100,32,91,104,101,114,101,93,40,104,116,116,112,115,58,47,47,98,108,111,103,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,112,97,121,45,102,111,114,45,112,108,97,121,47,41,46,32,84,104,105,115,32,102,97,108,108,115,32,105,110,32,108,105,110,101,32,119,105,116,104,32,116,104,97,116,32,97,112,112,114,111,97,99,104,44,32,97,115,32,105,116,32,114,101,113,117,105,114,101,115,32,115,111,109,101,32,111,102,32,111,117,114,32,108,101,115,115,32,116,101,99,104,110,105,99,97,108,32,102,111,108,108,111,119,101,114,115,32,116,111,32,103,101,116,32,102,97,109,105,108,105,97,114,105,122,101,100,32,119,105,116,104,32,108,105,110,117,120,32,97,110,100,32,116,104,101,32,99,111,109,109,97,110,100,32,108,105,110,101,46,10,10,73,110,112,117,116,32,111,110,32,116,104,105,115,32,105,115,32,109,111,114,101,32,116,104,97,110,32,119,101,108,99,111,109,101,46,32,66,111,116,104,32,102,114,111,109,32,116,104,101,32,74,115,103,101,110,101,115,105,115,32,116,101,97,109,44,32,99,111,110,116,114,105,98,117,116,111,114,115,44,32,97,110,100,32,99,111,109,109,117,110,105,116,121,32,109,101,109,98,101,114,115,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568999472},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[71,{"id":71,"thread_id":13,"nr_in_thread":9,"current_text":[35,35,32,84,111,32,115,101,101,32,102,117,114,116,104,101,114,32,99,111,110,118,101,114,115,97,116,105,111,110,115,32,97,98,111,117,116,32,116,104,105,115,32,98,111,117,110,116,121,32,97,110,100,32,116,111,32,112,111,115,116,32,121,111,117,114,32,99,111,110,116,114,105,98,117,116,105,111,110,115,44,32,112,108,101,97,115,101,32,118,105,115,105,116,32,116,104,101,32,91,71,105,116,72,117,98,32,105,115,115,117,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,98,111,117,110,116,105,101,115,47,105,115,115,117,101,115,47,53,41,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568999640},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[72,{"id":72,"thread_id":14,"nr_in_thread":2,"current_text":[35,35,32,84,111,32,115,101,101,32,102,117,114,116,104,101,114,32,99,111,110,118,101,114,115,97,116,105,111,110,115,32,97,98,111,117,116,32,116,104,105,115,32,98,111,117,110,116,121,32,97,110,100,32,116,111,32,112,111,115,116,32,121,111,117,114,32,99,111,110,116,114,105,98,117,116,105,111,110,115,44,32,112,108,101,97,115,101,32,118,105,115,105,116,32,116,104,101,32,91,71,105,116,72,117,98,32,105,115,115,117,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,98,111,117,110,116,105,101,115,47,105,115,115,117,101,115,47,49,51,41,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1568999832},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[73,{"id":73,"thread_id":15,"nr_in_thread":2,"current_text":[35,35,32,71,111,97,108,115,10,84,104,101,32,103,111,97,108,32,111,102,32,116,104,105,115,32,98,111,117,110,116,121,32,105,115,32,116,119,111,102,111,108,100,58,10,10,49,46,32,84,111,32,103,101,116,32,109,111,114,101,32,99,111,110,116,101,110,116,32,111,110,32,116,104,101,32,112,108,97,116,102,111,114,109,44,32,97,110,100,32,102,111,114,32,115,116,114,101,115,115,32,116,101,115,116,115,32,111,102,32,116,104,101,32,115,116,111,114,97,103,101,32,97,110,100,32,100,105,115,116,114,105,98,117,116,105,111,110,32,115,121,115,116,101,109,44,32,119,101,32,110,101,101,100,32,116,111,32,99,111,109,112,105,108,101,32,97,32,108,105,115,116,32,111,102,32,102,114,101,101,108,121,32,97,118,97,105,108,97,98,108,101,32,111,110,32,100,101,109,97,110,100,32,109,101,100,105,97,46,10,50,46,32,87,101,32,97,114,101,32,116,114,121,105,110,103,32,116,111,32,98,117,105,108,100,32,97,110,100,32,97,100,97,112,116,97,98,108,101,32,97,110,100,32,100,121,110,97,109,105,99,32,99,111,110,116,101,110,116,32,100,105,114,101,99,116,111,114,121,32,115,121,115,116,101,109,32,102,111,114,32,111,117,114,32,110,101,120,116,32,116,101,115,116,110,101,116,44,32,96,82,111,109,101,96,46,32,84,104,101,32,115,112,101,99,115,32,97,114,101,32,115,116,105,108,108,32,97,32,87,73,80,44,32,98,117,116,32,116,104,101,32,103,101,110,101,114,97,108,32,99,111,110,99,101,112,116,32,105,115,32,100,105,115,99,117,115,115,101,100,32,91,104,101,114,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,106,111,121,115,116,114,101,97,109,47,105,115,115,117,101,115,47,55,52,41,46,32,70,111,114,32,116,104,101,32,105,110,105,116,105,97,108,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,44,32,119,101,32,119,97,110,116,32,116,111,32,108,101,97,114,110,32,109,111,114,101,32,97,98,111,117,116,32,119,104,97,116,32,109,101,116,97,100,97,116,97,32,105,115,32,116,121,112,105,99,97,108,108,121,32,97,115,115,111,99,105,97,116,101,100,32,119,105,116,104,32,101,97,99,104,32,116,121,112,101,32,111,102,32,109,101,100,105,97,44,32,97,110,100,32,104,111,119,32,105,116,39,115,32,115,116,114,117,99,116,117,114,101,100,46,10,10,85,115,105,110,103,32,97,117,100,105,111,32,97,115,32,97,110,32,101,120,97,109,112,108,101,58,10,87,104,97,116,32,97,114,101,32,116,104,101,32,109,111,115,116,32,105,109,112,111,114,116,97,110,116,32,97,110,100,32,114,101,108,101,118,97,110,116,32,109,101,116,97,100,97,116,97,32,102,111,114,58,10,10,42,32,83,111,110,103,115,10,42,32,65,108,98,117,109,115,10,42,32,65,117,100,105,111,98,111,111,107,115,10,42,32,80,111,100,99,97,115,116,115],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569000072},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[74,{"id":74,"thread_id":15,"nr_in_thread":3,"current_text":[35,35,32,82,101,119,97,114,100,115,10,69,97,99,104,32,99,111,110,116,114,105,98,117,116,105,111,110,32,119,105,108,108,32,98,101,32,101,118,97,108,117,97,116,101,100,32,111,110,32,97,110,32,105,110,100,105,118,105,100,117,97,108,32,98,97,115,105,115,44,32,98,117,116,32,119,101,32,119,105,108,108,32,97,115,115,105,103,110,32,97,32,98,117,100,103,101,116,32,111,102,32,36,50,48,48,32,102,111,114,32,116,104,101,32,98,111,117,110,116,121,46,10,10,35,35,32,83,99,111,112,101,32,111,102,32,87,111,114,107,10,83,101,97,114,99,104,32,116,104,101,32,119,101,98,32,102,111,114,32,115,105,116,101,115,32,111,114,32,111,116,104,101,114,32,112,108,97,116,102,111,114,109,32,99,111,110,116,97,105,110,105,110,103,32,102,114,101,101,108,121,32,97,118,97,105,108,97,98,108,101,32,109,101,100,105,97,32,99,111,110,116,101,110,116,46,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569000102},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[75,{"id":75,"thread_id":15,"nr_in_thread":4,"current_text":[35,35,32,68,101,108,105,118,101,114,97,98,108,101,115,10,42,32,80,114,111,118,105,100,101,32,108,105,110,107,115,32,116,111,32,119,101,98,115,105,116,101,115,32,111,114,32,111,116,104,101,114,32,109,101,100,105,97,32,112,108,97,116,102,111,114,109,32,99,111,110,116,97,105,110,105,110,103,32,34,108,97,114,103,101,34,32,97,109,111,117,110,116,115,32,111,102,32,109,101,100,105,97,32,99,111,110,116,101,110,116,32,40,118,105,100,101,111,44,32,97,117,100,105,111,44,32,101,45,98,111,111,107,115,41,46,10,42,32,73,110,99,108,117,100,101,32,97,115,32,109,117,99,104,32,105,110,102,111,114,109,97,116,105,111,110,32,97,115,32,112,111,115,115,105,98,108,101,32,97,98,111,117,116,32,116,104,101,58,10,32,32,10,32,32,42,32,84,121,112,101,32,111,102,32,99,111,110,116,101,110,116,44,32,105,102,32,97,112,112,108,105,99,97,98,108,101,32,40,101,103,46,32,118,105,100,101,111,32,100,111,99,117,109,101,110,116,97,114,105,101,115,32,111,110,108,121,41,10,32,32,42,32,76,105,99,101,110,115,105,110,103,32,114,101,115,116,114,105,99,116,105,111,110,115,32,40,105,102,32,116,104,101,32,115,105,116,101,32,99,111,110,116,97,105,110,115,32,97,32,109,105,120,32,111,102,32,99,111,110,116,101,110,116,32,119,105,116,104,32,100,105,102,102,101,114,101,110,116,32,114,101,115,116,114,105,99,116,105,111,110,115,41,10,10,65,110,121,32,105,110,102,111,114,109,97,116,105,111,110,32,97,98,111,117,116,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,119,105,108,108,32,97,100,100,32,118,97,108,117,101,44,32,97,110,100,32,116,104,117,115,32,105,110,99,114,101,97,115,101,32,116,104,101,32,114,101,119,97,114,100,46,10,10,42,32,72,111,119,32,116,111,32,100,111,119,110,108,111,97,100,32,116,104,101,32,102,105,108,101,115,32,97,110,100,32,109,101,116,97,100,97,116,97,32,105,110,32,98,117,108,107,10,42,32,65,110,121,32,97,100,100,105,116,105,111,110,97,108,32,105,110,102,111,114,109,97,116,105,111,110,32,116,104,97,116,32,97,100,100,114,101,115,115,101,115,32,96,50,46,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569000120},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[76,{"id":76,"thread_id":15,"nr_in_thread":5,"current_text":[35,35,32,67,111,110,115,116,114,97,105,110,116,115,10,42,32,65,108,108,32,115,117,98,109,105,115,115,105,111,110,115,32,109,117,115,116,32,98,101,32,105,110,32,108,105,110,101,32,119,105,116,104,32,111,117,114,32,91,84,111,83,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,97,99,114,111,112,111,108,105,115,47,112,105,111,110,101,101,114,47,35,47,112,97,103,101,115,47,116,111,115,41,32,116,111,32,98,101,32,101,118,97,108,117,97,116,101,100,46,10,10,35,35,32,66,111,117,110,116,121,32,102,111,114,109,97,116,10,79,112,101,110,32,102,111,114,32,97,108,108,46,10,10,35,35,32,68,101,97,100,108,105,110,101,10,85,110,108,101,115,115,32,119,101,32,97,114,101,32,115,97,116,105,115,102,105,101,100,32,98,101,102,111,114,101,32,116,104,105,115,32,116,105,109,101,44,32,116,104,101,32,115,117,98,109,105,115,115,105,111,110,32,100,101,97,100,108,105,110,101,32,105,115,32,116,104,101,32,49,56,116,104,32,111,102,32,65,117,103,117,115,116,32,50,48,49,57,46,10,10,73,110,32,99,97,115,101,32,111,102,32,116,104,101,32,102,111,114,109,101,114,44,32,116,104,105,115,32,115,101,99,116,105,111,110,32,119,105,108,108,32,98,101,32,117,112,100,97,116,101,100,44,32,98,117,116,32,108,101,97,118,105,110,103,32,50,52,104,114,32,102,111,114,32,115,116,114,97,103,103,108,101,114,115,32,116,111,32,115,117,98,109,105,116,46,10,10,40,84,104,105,115,32,98,111,117,110,116,121,32,105,115,32,110,111,119,32,99,108,111,115,101,100,41],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569000162},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[77,{"id":77,"thread_id":15,"nr_in_thread":6,"current_text":[35,35,32,84,111,32,115,101,101,32,102,117,114,116,104,101,114,32,99,111,110,118,101,114,115,97,116,105,111,110,115,32,97,98,111,117,116,32,116,104,105,115,32,98,111,117,110,116,121,32,97,110,100,32,116,111,32,112,111,115,116,32,121,111,117,114,32,99,111,110,116,114,105,98,117,116,105,111,110,115,44,32,112,108,101,97,115,101,32,118,105,115,105,116,32,116,104,101,32,91,71,105,116,72,117,98,32,105,115,115,117,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,98,111,117,110,116,105,101,115,47,105,115,115,117,101,115,47,50,48,41,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569000210},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[78,{"id":78,"thread_id":21,"nr_in_thread":2,"current_text":[35,32,73,110,115,116,114,117,99,116,105,111,110,115,10,10,84,104,101,32,105,110,115,116,114,117,99,116,105,111,110,115,32,98,101,108,111,119,32,119,105,108,108,32,97,115,115,117,109,101,32,121,111,117,32,97,114,101,32,114,117,110,110,105,110,103,32,97,115,32,96,114,111,111,116,96,46,32,84,104,105,115,32,109,97,107,101,115,32,116,104,101,32,105,110,115,116,114,117,99,116,105,111,110,115,32,115,111,109,101,119,104,97,116,32,101,97,115,105,101,114,44,32,98,117,116,32,108,101,115,115,32,115,97,102,101,32,97,110,100,32,114,111,98,117,115,116,46,10,10,78,111,116,101,32,116,104,97,116,32,116,104,105,115,32,104,97,115,32,111,110,108,121,32,98,101,101,110,32,116,101,115,116,101,100,32,111,110,32,102,114,101,115,104,32,105,109,97,103,101,115,32,111,102,32,96,85,98,117,110,116,117,32,49,54,46,48,52,32,76,84,83,96,44,32,96,85,98,117,110,116,117,32,49,56,46,48,52,32,76,84,83,96,32,97,110,100,32,96,68,101,98,105,97,110,32,56,96,46,10,10,84,104,101,32,115,121,115,116,101,109,32,104,97,115,32,115,104,111,119,110,32,116,111,32,98,101,32,113,117,105,116,101,32,114,101,115,111,117,114,99,101,32,105,110,116,101,110,115,105,118,101,44,32,115,111,32,121,111,117,32,115,104,111,117,108,100,32,99,104,111,111,115,101,32,97,32,86,80,83,32,119,105,116,104,32,115,112,101,99,115,32,101,113,117,105,118,97,108,101,110,116,32,116,111,32,91,76,105,110,111,100,101,32,56,71,66,93,40,104,116,116,112,115,58,47,47,119,119,119,46,108,105,110,111,100,101,46,99,111,109,47,112,114,105,99,105,110,103,63,109,115,99,108,107,105,100,61,101,97,97,49,50,101,48,48,53,50,57,51,49,48,101,52,54,54,53,99,55,51,48,100,54,98,48,49,98,48,49,52,38,117,116,109,95,115,111,117,114,99,101,61,98,105,110,103,38,117,116,109,95,109,101,100,105,117,109,61,99,112,99,38,117,116,109,95,99,97,109,112,97,105,103,110,61,76,105,110,111,100,101,37,50,48,45,37,50,48,66,114,97,110,100,37,50,48,45,37,50,48,83,101,97,114,99,104,37,50,48,45,37,50,48,76,111,119,71,101,111,38,117,116,109,95,116,101,114,109,61,108,105,110,111,100,101,38,117,116,109,95,99,111,110,116,101,110,116,61,76,105,110,111,100,101,41,32,111,114,32,98,101,116,116,101,114,32,40,110,111,116,32,97,110,32,97,102,102,105,108,105,97,116,101,32,108,105,110,107,41,46,10,10,80,108,101,97,115,101,32,110,111,116,101,32,116,104,97,116,32,117,110,108,101,115,115,32,116,104,101,114,101,32,97,114,101,32,97,110,121,32,111,112,101,110,32,115,112,111,116,115,32,40,119,104,105,99,104,32,121,111,117,32,99,97,110,32,99,104,101,99,107,32,105,110,32,91,80,105,111,110,101,101,114,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,112,105,111,110,101,101,114,41,32,117,110,100,101,114,32,96,82,111,108,101,115,96,32,45,62,32,96,65,118,97,105,108,97,98,108,101,32,82,111,108,101,115,96,41,44,32,121,111,117,32,119,105,108,108,32,110,111,116,32,98,101,32,97,98,108,101,32,116,111,32,106,111,105,110,46,32,78,111,116,101,32,116,104,97,116,32,119,101,32,119,105,108,108,32,98,101,32,113,117,105,116,101,32,118,105,103,105,108,97,110,116,32,105,110,32,98,111,111,116,105,110,103,32,110,111,110,45,112,101,114,102,111,114,109,105,110,103,32,96,83,116,111,114,97,103,101,32,80,114,111,118,105,100,101,114,115,96,44,32,115,111,32,105,102,32,121,111,117,32,104,97,118,101,32,101,118,101,114,121,116,104,105,110,103,32,115,101,116,117,112,32,105,110,32,97,100,118,97,110,99,101,44,32,121,111,117,32,99,111,117,108,100,32,98,101,32,116,104,101,32,113,117,105,99,107,101,115,116,32,116,111,32,116,97,107,101,32,97,32,115,108,111,116,32,119,104,101,110,32,105,116,32,111,112,101,110,115,33],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084138},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[79,{"id":79,"thread_id":21,"nr_in_thread":3,"current_text":[35,35,32,73,110,105,116,105,97,108,32,115,101,116,117,112,10,70,105,114,115,116,32,111,102,32,97,108,108,44,32,121,111,117,32,110,101,101,100,32,97,32,102,117,108,108,121,32,115,121,110,99,101,100,32,91,74,111,121,115,116,114,101,97,109,32,102,117,108,108,32,110,111,100,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,115,117,98,115,116,114,97,116,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,47,114,101,108,101,97,115,101,115,41,46,32,70,111,114,32,105,110,115,116,114,117,99,116,105,111,110,115,32,111,110,32,104,111,119,32,116,111,32,115,101,116,32,116,104,105,115,32,117,112,44,32,103,111,32,91,104,101,114,101,93,40,46,46,47,118,97,108,105,100,97,116,111,114,115,41,46,32,78,111,116,101,32,116,104,97,116,32,121,111,117,32,99,97,110,32,100,105,115,114,101,103,97,114,100,32,97,108,108,32,116,104,101,32,112,97,114,116,115,32,97,98,111,117,116,32,107,101,121,115,44,32,97,110,100,32,106,117,115,116,32,105,110,115,116,97,108,108,32,116,104,101,32,115,111,102,116,119,97,114,101,46,10,87,101,32,115,116,114,111,110,103,108,121,32,101,110,99,111,117,114,97,103,101,32,116,104,97,116,32,121,111,117,32,114,117,110,32,98,111,116,104,32,116,104,101,32,91,110,111,100,101,93,40,46,46,47,118,97,108,105,100,97,116,111,114,115,35,114,117,110,45,97,115,45,97,45,115,101,114,118,105,99,101,41,32,97,110,100,32,116,104,101,32,111,116,104,101,114,32,115,111,102,116,119,97,114,101,32,98,101,108,111,119,32,97,115,32,97,32,115,101,114,118,105,99,101,46,10,10,70,105,114,115,116,44,32,121,111,117,32,110,101,101,100,32,116,111,32,115,101,116,117,112,32,96,110,111,100,101,96,44,32,96,110,112,109,96,32,97,110,100,32,96,121,97,114,110,96,46,32,84,104,105,115,32,105,115,32,115,111,109,101,116,105,109,101,32,116,114,111,117,98,108,101,115,111,109,101,32,116,111,32,100,111,32,119,105,116,104,32,116,104,101,32,96,97,112,116,96,32,112,97,99,107,97,103,101,32,109,97,110,97,103,101,114,46,32,71,111,32,91,104,101,114,101,93,40,35,105,110,115,116,97,108,108,45,121,97,114,110,45,97,110,100,45,110,111,100,101,45,119,105,116,104,111,117,116,45,111,110,45,108,105,110,117,120,41,32,116,111,32,100,111,32,116,104,105,115,32,105,102,32,121,111,117,32,97,114,101,32,110,111,116,32,99,111,110,102,105,100,101,110,116,32,105,110,32,121,111,117,114,32,97,98,105,108,105,116,105,101,115,32,116,111,32,110,97,118,105,103,97,116,101,32,116,104,101,32,114,111,117,103,104,32,115,101,97,115,46,10,10,78,111,119,44,32,103,101,116,32,116,104,101,32,97,100,100,105,116,105,111,110,97,108,32,100,101,112,101,110,100,101,110,99,105,101,115,58,10,96,96,96,10,36,32,97,112,116,45,103,101,116,32,117,112,100,97,116,101,32,38,38,32,97,112,116,45,103,101,116,32,117,112,103,114,97,100,101,32,45,121,10,36,32,97,112,116,45,103,101,116,32,105,110,115,116,97,108,108,32,103,105,116,32,98,117,105,108,100,45,101,115,115,101,110,116,105,97,108,32,108,105,98,116,111,111,108,32,97,117,116,111,109,97,107,101,32,97,117,116,111,99,111,110,102,32,112,121,116,104,111,110,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084156},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[80,{"id":80,"thread_id":21,"nr_in_thread":4,"current_text":[35,35,32,73,110,115,116,97,108,108,32,105,112,102,115,10,84,104,101,32,110,101,119,32,115,116,111,114,97,103,101,32,110,111,100,101,32,117,115,101,115,32,91,105,112,102,115,93,40,104,116,116,112,115,58,47,47,105,112,102,115,46,105,111,47,41,32,97,115,32,98,97,99,107,101,110,100,46,10,96,96,96,10,36,32,119,103,101,116,32,104,116,116,112,115,58,47,47,100,105,115,116,46,105,112,102,115,46,105,111,47,103,111,45,105,112,102,115,47,118,48,46,52,46,50,49,47,103,111,45,105,112,102,115,95,118,48,46,52,46,50,49,95,108,105,110,117,120,45,97,109,100,54,52,46,116,97,114,46,103,122,10,36,32,116,97,114,32,45,118,120,102,32,103,111,45,105,112,102,115,95,118,48,46,52,46,50,49,95,108,105,110,117,120,45,97,109,100,54,52,46,116,97,114,46,103,122,10,36,32,99,100,32,103,111,45,105,112,102,115,10,36,32,46,47,105,112,102,115,32,105,110,105,116,32,45,45,112,114,111,102,105,108,101,32,115,101,114,118,101,114,10,36,32,46,47,105,110,115,116,97,108,108,46,115,104,10,35,32,115,116,97,114,116,32,105,112,102,115,32,100,97,101,109,111,110,58,10,36,32,105,112,102,115,32,100,97,101,109,111,110,10,96,96,96,10,73,102,32,121,111,117,32,115,101,101,32,96,68,97,101,109,111,110,32,105,115,32,114,101,97,100,121,96,32,97,116,32,116,104,101,32,101,110,100,44,32,121,111,117,32,97,114,101,32,103,111,111,100,33,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084174},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[81,{"id":81,"thread_id":21,"nr_in_thread":5,"current_text":[35,35,35,32,82,117,110,32,105,112,102,115,32,97,115,32,97,32,115,101,114,118,105,99,101,10,10,84,111,32,101,110,115,117,114,101,32,104,105,103,104,32,117,112,116,105,109,101,44,32,105,116,39,115,32,98,101,115,116,32,116,111,32,115,101,116,32,116,104,101,32,115,121,115,116,101,109,32,117,112,32,97,115,32,97,32,96,115,101,114,118,105,99,101,96,46,10,10,69,120,97,109,112,108,101,32,102,105,108,101,32,98,101,108,111,119,58,10,10,96,96,96,10,36,32,110,97,110,111,32,47,101,116,99,47,115,121,115,116,101,109,100,47,115,121,115,116,101,109,47,105,112,102,115,46,115,101,114,118,105,99,101,10,35,32,80,97,115,116,101,32,105,110,32,101,118,101,114,121,116,104,105,110,103,32,98,101,108,111,119,32,116,104,101,32,115,116,97,112,108,101,100,32,108,105,110,101,10,45,45,45,10,91,85,110,105,116,93,10,68,101,115,99,114,105,112,116,105,111,110,61,105,112,102,115,10,65,102,116,101,114,61,110,101,116,119,111,114,107,46,116,97,114,103,101,116,10,10,91,83,101,114,118,105,99,101,93,10,84,121,112,101,61,115,105,109,112,108,101,10,85,115,101,114,61,114,111,111,116,10,87,111,114,107,105,110,103,68,105,114,101,99,116,111,114,121,61,47,114,111,111,116,10,76,105,109,105,116,78,79,70,73,76,69,61,56,49,57,50,10,80,73,68,70,105,108,101,61,47,118,97,114,47,114,117,110,47,105,112,102,115,47,105,112,102,115,46,112,105,100,10,69,120,101,99,83,116,97,114,116,61,47,117,115,114,47,108,111,99,97,108,47,98,105,110,47,105,112,102,115,32,100,97,101,109,111,110,10,82,101,115,116,97,114,116,61,111,110,45,102,97,105,108,117,114,101,10,82,101,115,116,97,114,116,83,101,99,61,51,10,83,116,97,114,116,76,105,109,105,116,73,110,116,101,114,118,97,108,61,54,48,48,10,10,91,73,110,115,116,97,108,108,93,10,87,97,110,116,101,100,66,121,61,109,117,108,116,105,45,117,115,101,114,46,116,97,114,103,101,116,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084186},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[82,{"id":82,"thread_id":21,"nr_in_thread":6,"current_text":[83,97,118,101,32,97,110,100,32,101,120,105,116,46,32,67,108,111,115,101,32,116,104,101,32,96,105,112,102,115,32,100,97,101,109,111,110,96,32,105,102,32,105,116,39,115,32,115,116,105,108,108,32,114,117,110,110,105,110,103,44,32,116,104,101,110,58,10,96,96,96,10,36,32,115,121,115,116,101,109,99,116,108,32,115,116,97,114,116,32,105,112,102,115,10,35,32,73,102,32,101,118,101,114,121,116,104,105,110,103,32,119,111,114,107,115,44,32,121,111,117,32,115,104,111,117,108,100,32,103,101,116,32,97,110,32,111,117,116,112,117,116,46,32,86,101,114,105,102,121,32,119,105,116,104,58,10,36,32,115,121,115,116,101,109,99,116,108,32,115,116,97,116,117,115,32,105,112,102,115,10,35,32,73,102,32,121,111,117,32,115,101,101,32,115,111,109,101,116,104,105,110,103,32,101,108,115,101,32,116,104,97,110,32,34,68,97,101,109,111,110,32,105,115,32,114,101,97,100,121,34,32,97,116,32,116,104,101,32,101,110,100,44,32,116,114,121,32,97,103,97,105,110,32,105,110,32,97,32,99,111,117,112,108,101,32,111,102,32,115,101,99,111,110,100,115,46,10,35,32,84,111,32,104,97,118,101,32,105,112,102,115,32,115,116,97,114,116,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,97,116,32,114,101,98,111,111,116,58,10,36,32,115,121,115,116,101,109,99,116,108,32,101,110,97,98,108,101,32,105,112,102,115,10,35,32,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,115,116,111,112,32,105,112,102,115,44,32,101,105,116,104,101,114,32,116,111,32,101,100,105,116,32,116,104,101,32,102,105,108,101,32,111,114,32,115,111,109,101,32,111,116,104,101,114,32,114,101,97,115,111,110,58,10,36,32,115,121,115,116,101,109,99,116,108,32,115,116,111,112,32,105,112,102,115,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084198},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[83,{"id":83,"thread_id":21,"nr_in_thread":7,"current_text":[35,35,32,83,101,116,117,112,32,72,111,115,116,105,110,103,10,73,110,32,111,114,100,101,114,32,116,111,32,97,108,108,111,119,32,102,111,114,32,117,115,101,114,115,32,116,111,32,117,112,108,111,97,100,32,97,110,100,32,100,111,119,110,108,111,97,100,44,32,121,111,117,32,104,97,118,101,32,116,111,32,115,101,116,117,112,32,104,111,115,116,105,110,103,44,32,119,105,116,104,32,97,110,32,97,99,116,117,97,108,32,100,111,109,97,105,110,32,97,115,32,98,111,116,104,32,67,104,114,111,109,101,32,97,110,100,32,70,105,114,101,102,111,120,32,114,101,113,117,105,114,101,115,32,96,104,116,116,112,115,58,47,47,96,46,32,73,102,32,121,111,117,32,104,97,118,101,32,97,32,34,115,112,97,114,101,34,32,100,111,109,97,105,110,32,111,114,32,115,117,98,100,111,109,97,105,110,32,121,111,117,32,100,111,110,39,116,32,109,105,110,100,32,117,115,105,110,103,32,102,111,114,32,116,104,105,115,32,112,117,114,112,111,115,101,44,32,103,111,32,116,111,32,121,111,117,114,32,100,111,109,97,105,110,32,114,101,103,105,115,116,114,97,114,32,97,110,100,32,112,111,105,110,116,32,121,111,117,114,32,100,111,109,97,105,110,32,116,111,32,116,104,101,32,73,80,32,121,111,117,32,119,97,110,116,46,32,73,102,32,121,111,117,32,100,111,110,39,116,44,32,121,111,117,32,109,117,115,116,32,117,110,102,111,114,116,117,110,97,116,101,108,121,32,103,111,32,112,117,114,99,104,97,115,101,32,111,110,101,46,10,10,84,111,32,99,111,110,102,105,103,117,114,101,32,83,83,76,45,99,101,114,116,105,102,105,99,97,116,101,115,32,116,104,101,32,101,97,115,105,101,115,116,32,105,115,32,116,111,32,117,115,101,32,91,99,97,100,100,121,93,40,104,116,116,112,115,58,47,47,99,97,100,100,121,115,101,114,118,101,114,46,99,111,109,47,41,44,32,98,117,116,32,102,101,101,108,32,102,114,101,101,32,116,111,32,116,97,107,101,32,97,32,100,105,102,102,101,114,101,110,116,32,97,112,112,114,111,97,99,104,46,32,78,111,116,101,32,116,104,97,116,32,105,102,32,121,111,117,32,97,114,101,32,117,115,105,110,103,32,99,97,100,100,121,32,102,111,114,32,99,111,109,109,101,114,99,105,97,108,32,117,115,101,44,32,121,111,117,32,110,101,101,100,32,116,111,32,97,99,113,117,105,114,101,32,97,32,108,105,99,101,110,115,101,46,32,80,108,101,97,115,101,32,99,104,101,99,107,32,116,104,101,105,114,32,116,101,114,109,115,32,97,110,100,32,109,97,107,101,32,115,117,114,101,32,121,111,117,32,99,111,109,112,108,121,32,119,105,116,104,32,119,104,97,116,32,105,115,32,99,111,110,115,105,100,101,114,101,100,32,112,101,114,115,111,110,97,108,32,117,115,101,46,10,10,96,96,96,10,36,32,99,117,114,108,32,104,116,116,112,115,58,47,47,103,101,116,99,97,100,100,121,46,99,111,109,32,124,32,98,97,115,104,32,45,115,32,112,101,114,115,111,110,97,108,10,35,32,65,108,108,111,119,32,99,97,100,100,121,32,97,99,99,101,115,115,32,116,111,32,114,101,113,117,105,114,101,100,32,112,111,114,116,115,58,10,36,32,115,101,116,99,97,112,32,39,99,97,112,95,110,101,116,95,98,105,110,100,95,115,101,114,118,105,99,101,61,43,101,112,39,32,47,117,115,114,47,108,111,99,97,108,47,98,105,110,47,99,97,100,100,121,10,36,32,117,108,105,109,105,116,32,45,110,32,56,49,57,50,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084210},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[84,{"id":84,"thread_id":21,"nr_in_thread":8,"current_text":[67,111,110,102,105,103,117,114,101,32,99,97,100,100,121,32,119,105,116,104,32,96,110,97,110,111,32,126,47,67,97,100,100,121,102,105,108,101,96,32,97,110,100,32,112,97,115,116,101,32,105,110,32,116,104,101,32,102,111,108,108,111,119,105,110,103,58,10,10,96,96,96,10,35,32,83,116,111,114,97,103,101,32,78,111,100,101,32,65,80,73,10,104,116,116,112,115,58,47,47,60,121,111,117,114,46,99,111,111,108,46,117,114,108,62,32,123,10,32,32,32,32,112,114,111,120,121,32,47,32,108,111,99,97,108,104,111,115,116,58,51,48,48,48,32,123,10,32,32,32,32,32,32,32,32,116,114,97,110,115,112,97,114,101,110,116,10,32,32,32,32,125,10,32,32,32,32,104,101,97,100,101,114,32,47,32,123,10,32,32,32,32,32,32,32,32,65,99,99,101,115,115,45,67,111,110,116,114,111,108,45,65,108,108,111,119,45,79,114,105,103,105,110,32,32,42,10,32,32,32,32,32,32,32,32,65,99,99,101,115,115,45,67,111,110,116,114,111,108,45,65,108,108,111,119,45,77,101,116,104,111,100,115,32,34,71,69,84,44,32,80,85,84,44,32,72,69,65,68,44,32,79,80,84,73,79,78,83,34,10,32,32,32,32,125,10,125,10,96,96,96,10,78,111,119,32,121,111,117,32,99,97,110,32,99,104,101,99,107,32,105,102,32,121,111,117,32,99,111,110,102,105,103,117,114,101,100,32,99,111,114,114,101,99,116,108,121,44,32,119,105,116,104,58,10,96,96,96,10,36,32,47,117,115,114,47,108,111,99,97,108,47,98,105,110,47,99,97,100,100,121,32,45,45,118,97,108,105,100,97,116,101,32,45,45,99,111,110,102,32,126,47,67,97,100,100,121,102,105,108,101,10,35,32,87,104,105,99,104,32,115,104,111,117,108,100,32,114,101,116,117,114,110,58,10,67,97,100,100,121,102,105,108,101,32,105,115,32,118,97,108,105,100,10,10,35,32,89,111,117,32,99,97,110,32,110,111,119,32,114,117,110,32,99,97,100,100,121,32,119,105,116,104,58,10,36,32,40,115,99,114,101,101,110,41,32,47,117,115,114,47,108,111,99,97,108,47,98,105,110,47,99,97,100,100,121,32,45,45,97,103,114,101,101,32,45,45,101,109,97,105,108,32,60,121,111,117,114,95,109,97,105,108,64,115,111,109,101,46,100,111,109,97,105,110,62,32,45,45,99,111,110,102,32,126,47,67,97,100,100,121,102,105,108,101,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084228},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[85,{"id":85,"thread_id":21,"nr_in_thread":9,"current_text":[35,35,35,32,82,117,110,32,99,97,100,100,121,32,97,115,32,97,32,115,101,114,118,105,99,101,10,84,111,32,101,110,115,117,114,101,32,104,105,103,104,32,117,112,116,105,109,101,44,32,105,116,39,115,32,98,101,115,116,32,116,111,32,115,101,116,32,116,104,101,32,115,121,115,116,101,109,32,117,112,32,97,115,32,97,32,96,115,101,114,118,105,99,101,96,46,10,10,69,120,97,109,112,108,101,32,102,105,108,101,32,98,101,108,111,119,58,10,10,96,96,96,10,36,32,110,97,110,111,32,47,101,116,99,47,115,121,115,116,101,109,100,47,115,121,115,116,101,109,47,99,97,100,100,121,46,115,101,114,118,105,99,101,10,35,32,80,97,115,116,101,32,105,110,32,101,118,101,114,121,116,104,105,110,103,32,98,101,108,111,119,32,116,104,101,32,115,116,97,112,108,101,100,32,108,105,110,101,10,45,45,45,10,91,85,110,105,116,93,10,68,101,115,99,114,105,112,116,105,111,110,61,82,101,118,101,114,115,101,32,112,114,111,120,121,32,102,111,114,32,115,116,111,114,97,103,101,32,110,111,100,101,10,65,102,116,101,114,61,110,101,116,119,111,114,107,46,116,97,114,103,101,116,10,10,91,83,101,114,118,105,99,101,93,10,85,115,101,114,61,114,111,111,116,10,87,111,114,107,105,110,103,68,105,114,101,99,116,111,114,121,61,47,114,111,111,116,10,76,105,109,105,116,78,79,70,73,76,69,61,56,49,57,50,10,80,73,68,70,105,108,101,61,47,118,97,114,47,114,117,110,47,99,97,100,100,121,47,99,97,100,100,121,46,112,105,100,10,69,120,101,99,83,116,97,114,116,61,47,117,115,114,47,108,111,99,97,108,47,98,105,110,47,99,97,100,100,121,32,45,97,103,114,101,101,32,45,101,109,97,105,108,32,60,121,111,117,114,95,109,97,105,108,64,115,111,109,101,46,100,111,109,97,105,110,62,32,45,112,105,100,102,105,108,101,32,47,118,97,114,47,114,117,110,47,99,97,100,100,121,47,99,97,100,100,121,46,112,105,100,32,45,99,111,110,102,32,47,114,111,111,116,47,67,97,100,100,121,102,105,108,101,10,82,101,115,116,97,114,116,61,111,110,45,102,97,105,108,117,114,101,10,83,116,97,114,116,76,105,109,105,116,73,110,116,101,114,118,97,108,61,54,48,48,10,10,10,91,73,110,115,116,97,108,108,93,10,87,97,110,116,101,100,66,121,61,109,117,108,116,105,45,117,115,101,114,46,116,97,114,103,101,116,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084246},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[86,{"id":86,"thread_id":21,"nr_in_thread":10,"current_text":[83,97,118,101,32,97,110,100,32,101,120,105,116,46,32,67,108,111,115,101,32,96,99,97,100,100,121,96,32,105,102,32,105,116,39,115,32,115,116,105,108,108,32,114,117,110,110,105,110,103,44,32,116,104,101,110,58,10,96,96,96,10,36,32,115,121,115,116,101,109,99,116,108,32,115,116,97,114,116,32,99,97,100,100,121,10,35,32,73,102,32,101,118,101,114,121,116,104,105,110,103,32,119,111,114,107,115,44,32,121,111,117,32,115,104,111,117,108,100,32,103,101,116,32,97,110,32,111,117,116,112,117,116,46,32,86,101,114,105,102,121,32,119,105,116,104,58,10,36,32,115,121,115,116,101,109,99,116,108,32,115,116,97,116,117,115,32,99,97,100,100,121,10,35,32,87,104,105,99,104,32,115,104,111,117,108,100,32,112,114,111,100,117,99,101,32,115,111,109,101,116,104,105,110,103,32,108,105,107,101,58,10,96,96,96,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084294},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[87,{"id":87,"thread_id":21,"nr_in_thread":11,"current_text":[96,96,96,10,45,45,45,10,226,151,143,32,99,97,100,100,121,46,115,101,114,118,105,99,101,32,45,32,82,101,118,101,114,115,101,32,112,114,111,120,121,32,102,111,114,32,115,116,111,114,97,103,101,32,110,111,100,101,10,32,32,32,76,111,97,100,101,100,58,32,108,111,97,100,101,100,32,40,47,101,116,99,47,115,121,115,116,101,109,100,47,115,121,115,116,101,109,47,99,97,100,100,121,46,115,101,114,118,105,99,101,59,32,100,105,115,97,98,108,101,100,41,10,32,32,32,65,99,116,105,118,101,58,32,97,99,116,105,118,101,32,40,114,117,110,110,105,110,103,41,32,115,105,110,99,101,32,84,117,101,32,50,48,49,57,45,48,54,45,49,56,32,49,55,58,49,53,58,52,52,32,85,84,67,59,32,54,115,32,97,103,111,10,32,77,97,105,110,32,80,73,68,58,32,53,54,49,51,32,40,99,97,100,100,121,41,10,32,32,32,67,71,114,111,117,112,58,32,47,115,121,115,116,101,109,46,115,108,105,99,101,47,99,97,100,100,121,46,115,101,114,118,105,99,101,10,32,32,32,32,32,32,32,32,32,32,32,226,148,148,226,148,128,53,54,49,51,32,47,117,115,114,47,108,111,99,97,108,47,98,105,110,47,99,97,100,100,121,32,45,97,103,114,101,101,32,101,109,97,105,108,32,60,121,111,117,114,95,109,97,105,108,64,115,111,109,101,46,100,111,109,97,105,110,62,32,45,112,105,100,102,105,108,101,32,47,118,97,114,47,114,117,110,47,99,97,100,100,121,47,99,97,100,100,121,46,112,105,100,32,45,99,111,110,102,32,47,114,111,111,116,47,67,97,100,100,121,102,105,108,101,10,10,74,117,110,32,49,56,32,49,55,58,49,53,58,52,52,32,108,111,99,97,108,104,111,115,116,32,115,121,115,116,101,109,100,91,49,93,58,32,83,116,97,114,116,101,100,32,82,101,118,101,114,115,101,32,112,114,111,120,121,32,102,111,114,32,104,111,115,116,101,100,32,97,112,112,115,46,10,74,117,110,32,49,56,32,49,55,58,49,53,58,52,52,32,108,111,99,97,108,104,111,115,116,32,99,97,100,100,121,91,53,54,49,51,93,58,32,65,99,116,105,118,97,116,105,110,103,32,112,114,105,118,97,99,121,32,102,101,97,116,117,114,101,115,46,46,46,32,100,111,110,101,46,10,74,117,110,32,49,56,32,49,55,58,49,53,58,52,52,32,108,111,99,97,108,104,111,115,116,32,99,97,100,100,121,91,53,54,49,51,93,58,32,83,101,114,118,105,110,103,32,72,84,84,80,83,32,111,110,32,112,111,114,116,32,52,52,51,10,74,117,110,32,49,56,32,49,55,58,49,53,58,52,52,32,108,111,99,97,108,104,111,115,116,32,99,97,100,100,121,91,53,54,49,51,93,58,32,104,116,116,112,115,58,47,47,60,121,111,117,114,46,99,111,111,108,46,117,114,108,62,10,74,117,110,32,49,56,32,49,55,58,49,53,58,52,52,32,108,111,99,97,108,104,111,115,116,32,99,97,100,100,121,91,53,54,49,51,93,58,32,104,116,116,112,115,58,47,47,60,121,111,117,114,46,99,111,111,108,46,117,114,108,62,10,74,117,110,32,49,56,32,49,55,58,49,53,58,52,52,32,108,111,99,97,108,104,111,115,116,32,99,97,100,100,121,91,53,54,49,51,93,58,32,83,101,114,118,105,110,103,32,72,84,84,80,32,111,110,32,112,111,114,116,32,56,48,10,74,117,110,32,49,56,32,49,55,58,49,53,58,52,52,32,108,111,99,97,108,104,111,115,116,32,99,97,100,100,121,91,53,54,49,51,93,58,32,104,116,116,112,115,58,47,47,60,121,111,117,114,46,99,111,111,108,46,117,114,108,62,10,45,45,45,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084360},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[88,{"id":88,"thread_id":21,"nr_in_thread":12,"current_text":[96,96,96,10,35,32,84,111,32,104,97,118,101,32,99,97,100,100,121,32,115,116,97,114,116,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,97,116,32,114,101,98,111,111,116,58,10,36,32,115,121,115,116,101,109,99,116,108,32,101,110,97,98,108,101,32,99,97,100,100,121,10,35,32,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,115,116,111,112,32,99,97,100,100,121,44,32,101,105,116,104,101,114,32,116,111,32,101,100,105,116,32,116,104,101,32,102,105,108,101,32,111,114,32,115,111,109,101,32,111,116,104,101,114,32,114,101,97,115,111,110,58,10,36,32,115,121,115,116,101,109,99,116,108,32,115,116,111,112,32,99,97,100,100,121,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084378},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[89,{"id":89,"thread_id":21,"nr_in_thread":13,"current_text":[35,35,32,73,110,115,116,97,108,108,32,97,110,100,32,83,101,116,117,112,32,116,104,101,32,83,116,111,114,97,103,101,32,78,111,100,101,10,10,70,105,114,115,116,44,32,121,111,117,32,110,101,101,100,32,116,111,32,99,108,111,110,101,32,116,104,101,32,114,101,112,111,46,10,10,96,96,96,10,36,32,103,105,116,32,99,108,111,110,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,115,116,111,114,97,103,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,46,103,105,116,10,36,32,99,100,32,115,116,111,114,97,103,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,10,36,32,121,97,114,110,10,35,32,84,101,115,116,32,116,104,97,116,32,105,116,39,115,32,119,111,114,107,105,110,103,32,119,105,116,104,58,10,36,32,121,97,114,110,32,114,117,110,32,99,111,108,111,115,115,117,115,32,45,45,104,101,108,112,10,96,96,96,10,89,111,117,32,99,97,110,32,115,101,116,32,116,104,101,32,80,65,84,72,32,116,111,32,97,118,111,105,100,32,116,104,101,32,96,121,97,114,110,32,114,117,110,96,32,112,114,101,102,105,120,32,98,121,58,10,96,110,97,110,111,32,126,47,46,98,97,115,104,95,112,114,111,102,105,108,101,96,10,97,110,100,32,97,112,112,101,110,100,58,10,96,96,96,10,35,32,67,111,108,111,115,115,117,115,10,97,108,105,97,115,32,99,111,108,111,115,115,117,115,61,34,47,114,111,111,116,47,115,116,111,114,97,103,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,47,112,97,99,107,97,103,101,115,47,99,111,108,111,115,115,117,115,47,98,105,110,47,99,108,105,46,106,115,34,10,96,96,96,10,84,104,101,110,58,10,96,46,32,126,47,46,98,97,115,104,95,112,114,111,102,105,108,101,96,10,78,111,119,44,32,121,111,117,32,99,97,110,32,116,101,115,116,32,96,99,111,108,111,115,115,117,115,32,45,45,104,101,108,112,96,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084402},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[90,{"id":90,"thread_id":21,"nr_in_thread":14,"current_text":[35,35,35,32,85,112,100,97,116,101,32,83,116,111,114,97,103,101,32,78,111,100,101,10,10,73,102,32,121,111,117,32,110,101,101,100,32,116,111,32,117,112,100,97,116,101,32,121,111,117,114,32,115,116,111,114,97,103,101,32,110,111,100,101,44,32,121,111,117,32,119,105,108,108,32,102,105,114,115,116,32,110,101,101,100,32,116,111,32,115,116,111,112,32,116,104,101,32,115,111,102,116,119,97,114,101,46,10,10,96,96,96,10,35,32,73,102,32,121,111,117,32,97,114,101,32,114,117,110,110,105,110,103,32,97,115,32,115,101,114,118,105,99,101,32,40,119,104,105,99,104,32,121,111,117,32,115,104,111,117,108,100,41,10,36,32,115,121,115,116,101,109,99,116,108,32,115,116,111,112,32,115,116,111,114,97,103,101,45,110,111,100,101,10,36,32,99,100,32,47,112,97,116,104,47,116,111,47,115,116,111,114,97,103,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,10,35,32,65,115,115,117,109,105,110,103,32,121,111,117,32,99,108,111,110,101,100,32,97,115,32,115,104,111,119,110,32,97,98,111,118,101,10,36,32,103,105,116,32,112,117,108,108,32,111,114,105,103,105,110,32,109,97,115,116,101,114,10,36,32,121,97,114,110,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084420},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[91,{"id":91,"thread_id":21,"nr_in_thread":15,"current_text":[35,35,35,32,71,101,110,101,114,97,116,101,32,107,101,121,115,32,97,110,100,32,109,101,109,98,101,114,115,104,105,112,115,10,10,67,108,105,99,107,32,91,104,101,114,101,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,41,32,116,111,32,111,112,101,110,32,116,104,101,32,96,80,105,111,110,101,101,114,32,97,112,112,96,32,105,110,32,121,111,117,114,32,98,114,111,119,115,101,114,46,32,84,104,101,110,32,102,111,108,108,111,119,32,105,110,115,116,114,117,99,116,105,111,110,115,32,91,104,101,114,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,104,101,108,112,100,101,115,107,35,103,101,116,45,115,116,97,114,116,101,100,41,32,116,111,32,103,101,110,101,114,97,116,101,32,97,32,115,101,116,32,111,102,32,96,75,101,121,115,96,44,32,103,101,116,32,116,111,107,101,110,115,44,32,97,110,100,32,115,105,103,110,32,117,112,32,102,111,114,32,97,32,96,77,101,109,98,101,114,115,104,105,112,96,46,32,84,104,105,115,32,96,107,101,121,96,32,119,105,108,108,32,98,101,32,114,101,102,101,114,114,101,100,32,116,111,32,97,115,32,116,104,101,32,96,109,101,109,98,101,114,96,32,107,101,121,32,102,114,111,109,32,110,111,119,32,111,110,46,32,77,97,107,101,32,115,117,114,101,32,116,111,32,115,97,118,101,32,116,104,101,32,96,53,89,111,117,114,74,111,121,77,101,109,98,101,114,65,100,100,114,101,115,115,46,106,115,111,110,96,32,102,105,108,101,46,32,78,111,116,101,32,116,104,97,116,32,121,111,117,32,110,101,101,100,32,116,111,32,107,101,101,112,32,116,104,101,32,114,101,115,116,32,111,102,32,121,111,117,114,32,116,111,107,101,110,115,32,97,115,32,115,116,97,107,101,32,116,111,32,98,101,99,111,109,101,32,97,32,96,83,116,111,114,97,103,101,32,80,114,111,118,105,100,101,114,96,46,10,10,45,45,45,10,10,65,115,115,117,109,105,110,103,32,121,111,117,32,97,114,101,32,114,117,110,110,105,110,103,32,116,104,101,32,115,116,111,114,97,103,101,32,110,111,100,101,32,111,110,32,97,32,86,80,83,32,118,105,97,32,115,115,104,44,32,111,110,32,121,111,117,114,32,108,111,99,97,108,32,109,97,99,104,105,110,101,58,10,10,96,96,96,10,35,32,71,111,32,116,104,101,32,100,105,114,101,99,116,111,114,121,32,119,104,101,114,101,32,121,111,117,32,115,97,118,101,100,32,121,111,117,114,32,60,53,89,111,117,114,74,111,121,77,101,109,98,101,114,65,100,100,114,101,115,115,46,106,115,111,110,62,58,10,36,32,115,99,112,32,60,53,89,111,117,114,74,111,121,77,101,109,98,101,114,65,100,100,114,101,115,115,46,106,115,111,110,62,32,60,117,115,101,114,62,64,60,121,111,117,114,46,118,112,115,46,105,112,46,97,100,100,114,101,115,115,62,58,47,112,97,116,104,47,116,111,47,115,116,111,114,97,103,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,47,10,96,96,96,10,89,111,117,114,32,96,53,89,111,117,114,74,111,121,77,101,109,98,101,114,65,100,100,114,101,115,115,46,106,115,111,110,96,32,115,104,111,117,108,100,32,110,111,119,32,98,101,32,119,104,101,114,101,32,121,111,117,32,119,97,110,116,32,105,116,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084444},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[92,{"id":92,"thread_id":21,"nr_in_thread":16,"current_text":[35,35,35,35,32,83,101,116,117,112,32,97,110,100,32,99,111,110,102,105,103,117,114,101,32,116,104,101,32,115,116,111,114,97,103,101,32,110,111,100,101,10,10,42,42,77,97,107,101,32,115,117,114,101,32,121,111,117,39,114,101,32,91,74,111,121,115,116,114,101,97,109,32,102,117,108,108,32,110,111,100,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,115,117,98,115,116,114,97,116,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,41,32,105,115,32,102,117,108,108,121,32,115,121,110,99,101,100,32,98,101,102,111,114,101,32,121,111,117,32,109,111,118,101,32,116,111,32,116,104,101,32,110,101,120,116,32,115,116,101,112,40,115,41,33,42,42,10,10,79,110,32,116,104,101,32,109,97,99,104,105,110,101,47,86,80,83,32,121,111,117,32,119,97,110,116,32,116,111,32,114,117,110,32,121,111,117,114,32,115,116,111,114,97,103,101,32,110,111,100,101,58,10,10,96,96,96,10,35,32,73,102,32,121,111,117,32,97,114,101,32,110,111,116,32,97,108,114,101,97,100,121,32,105,110,32,116,104,97,116,32,100,105,114,101,99,116,111,114,121,58,10,36,32,99,100,32,115,116,111,114,97,103,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,10,35,32,73,102,32,121,111,117,32,99,111,110,102,105,103,117,114,101,100,32,121,111,117,114,32,46,98,97,115,104,95,112,114,111,102,105,108,101,58,10,36,32,99,111,108,111,115,115,117,115,32,115,105,103,110,117,112,32,60,53,89,111,117,114,74,111,121,77,101,109,98,101,114,65,100,100,114,101,115,115,46,106,115,111,110,62,10,35,32,73,102,32,121,111,117,32,100,105,100,110,39,116,32,99,111,110,102,105,103,117,114,101,32,121,111,117,114,32,46,98,97,115,104,95,112,114,111,102,105,108,101,58,10,36,32,121,97,114,110,32,114,117,110,32,99,111,108,111,115,115,117,115,32,115,105,103,110,117,112,32,60,53,89,111,117,114,74,111,121,77,101,109,98,101,114,65,100,100,114,101,115,115,46,106,115,111,110,62,10,35,32,78,111,116,101,32,116,104,97,116,32,116,104,101,32,114,101,115,116,32,111,102,32,116,104,101,32,103,117,105,100,101,32,119,105,108,108,32,97,115,115,117,109,101,32,121,111,117,32,100,105,100,32,105,110,32,102,97,99,116,32,99,111,110,102,105,103,117,114,101,32,46,98,97,115,104,95,112,114,111,102,105,108,101,32,97,110,100,32,100,111,110,39,116,32,110,101,101,100,32,34,121,97,114,110,32,114,117,110,34,10,35,32,70,111,108,108,111,119,32,116,104,101,32,105,110,115,116,114,117,99,116,105,111,110,115,32,97,115,32,112,114,111,109,112,116,101,100,46,32,70,111,114,32,101,97,115,101,32,111,102,32,117,115,101,44,32,105,116,39,115,32,98,101,115,116,32,116,111,32,110,111,116,32,115,101,116,32,97,32,112,97,115,115,119,111,114,100,46,46,46,32,73,102,32,121,111,117,32,100,111,44,32,114,101,109,101,109,98,101,114,32,116,111,32,97,100,100,58,10,35,32,45,45,112,97,115,115,112,104,114,97,115,101,32,60,121,111,117,114,95,112,97,115,115,112,104,114,97,115,101,62,32,97,115,32,97,110,32,97,114,103,117,109,101,110,116,32,101,118,101,114,121,32,116,105,109,101,32,121,111,117,32,115,116,97,114,116,32,116,104,101,32,99,111,108,111,115,115,117,115,32,115,101,114,118,101,114,46,10,96,96,96,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084468},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[93,{"id":93,"thread_id":21,"nr_in_thread":17,"current_text":[84,104,105,115,32,112,114,111,100,117,99,101,115,32,97,32,110,101,119,32,107,101,121,32,96,60,53,89,111,117,114,83,116,111,114,97,103,101,65,100,100,114,101,115,115,46,106,115,111,110,62,96,44,32,97,110,100,32,112,114,111,109,112,116,115,32,121,111,117,32,116,111,32,111,112,101,110,32,116,104,101,32,34,97,112,112,34,32,40,80,105,111,110,101,101,114,41,46,32,77,97,107,101,32,115,117,114,101,32,116,104,97,116,32,121,111,117,32,121,111,117,114,32,99,117,114,114,101,110,116,47,100,101,102,97,117,108,116,32,105,115,32,116,104,101,32,96,53,89,111,117,114,74,111,121,77,101,109,98,101,114,65,100,100,114,101,115,115,96,32,107,101,121,46,32,65,102,116,101,114,32,121,111,117,32,99,108,105,99,107,32,96,83,116,97,107,101,96,44,32,121,111,117,32,119,105,108,108,32,115,101,101,32,97,32,110,111,116,105,102,105,99,97,116,105,111,110,32,105,110,32,116,104,101,32,116,111,112,32,114,105,103,104,116,32,99,111,114,110,101,114,46,32,73,102,32,121,111,117,32,103,101,116,32,97,110,32,101,114,114,111,114,44,32,116,104,105,115,32,109,111,115,116,32,108,105,107,101,108,121,32,109,101,97,110,115,32,97,108,108,32,116,104,101,32,115,108,111,116,115,32,97,114,101,32,102,117,108,108,46,32,85,110,102,111,114,116,117,110,97,116,101,108,121,44,32,116,104,105,115,32,109,101,97,110,115,32,121,111,117,32,104,97,118,101,32,116,111,32,105,109,112,111,114,116,32,116,104,101,32,96,60,53,89,111,117,114,83,116,111,114,97,103,101,65,100,100,114,101,115,115,46,106,115,111,110,62,96,32,116,111,32,114,101,99,111,118,101,114,32,121,111,117,114,32,116,111,107,101,110,115,46,10,10,73,102,32,105,116,32,115,117,99,99,101,101,100,101,100,44,32,112,114,111,99,101,101,100,32,97,115,32,115,104,111,119,110,32,98,101,108,111,119,58,10,10,96,96,96,10,35,32,84,111,32,109,97,107,101,32,115,117,114,101,32,101,118,101,114,121,116,104,105,110,103,32,105,115,32,114,117,110,110,105,110,103,32,115,109,111,111,116,104,108,121,44,32,105,116,32,119,111,117,108,100,32,98,101,32,104,101,108,112,102,117,108,32,116,111,32,114,117,110,32,119,105,116,104,32,68,69,66,85,71,58,10,36,32,68,69,66,85,71,61,42,32,99,111,108,111,115,115,117,115,32,115,101,114,118,101,114,32,45,45,107,101,121,45,102,105,108,101,32,60,53,89,111,117,114,83,116,111,114,97,103,101,65,100,100,114,101,115,115,46,106,115,111,110,62,32,45,45,112,117,98,108,105,99,45,117,114,108,32,104,116,116,112,115,58,47,47,60,121,111,117,114,46,99,111,111,108,46,117,114,108,62,10,35,32,73,102,32,121,111,117,32,115,101,116,32,97,32,112,97,115,115,112,104,114,97,115,101,32,102,111,114,32,60,53,89,111,117,114,83,116,111,114,97,103,101,65,100,100,114,101,115,115,46,106,115,111,110,62,58,10,36,32,68,69,66,85,71,61,42,32,99,111,108,111,115,115,117,115,32,115,101,114,118,101,114,32,45,45,107,101,121,45,102,105,108,101,32,60,53,89,111,117,114,83,116,111,114,97,103,101,65,100,100,114,101,115,115,46,106,115,111,110,62,32,45,45,112,97,115,115,112,104,114,97,115,101,32,60,121,111,117,114,95,112,97,115,115,112,104,114,97,115,101,62,32,45,45,112,117,98,108,105,99,45,117,114,108,32,104,116,116,112,115,58,47,47,60,121,111,117,114,46,99,111,111,108,46,117,114,108,62,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084480},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[94,{"id":94,"thread_id":21,"nr_in_thread":18,"current_text":[73,102,32,121,111,117,32,100,111,32,116,104,105,115,44,32,121,111,117,32,115,104,111,117,108,100,32,115,101,101,32,115,111,109,101,116,104,105,110,103,32,108,105,107,101,58,10,10,96,96,96,10,100,105,115,99,111,118,101,114,121,58,58,112,117,98,108,105,115,104,32,123,32,110,97,109,101,58,32,39,81,109,80,119,119,115,53,55,54,110,51,66,121,69,54,67,81,85,118,85,116,51,100,103,109,111,107,107,50,88,78,50,99,74,103,80,89,72,87,111,77,54,83,83,85,83,39,44,10,100,105,115,99,111,118,101,114,121,58,58,112,117,98,108,105,115,104,32,32,32,118,97,108,117,101,58,32,39,47,105,112,102,115,47,81,109,101,68,65,87,71,82,106,98,87,120,54,102,77,67,120,116,116,57,53,89,84,83,103,84,103,66,104,104,116,98,107,49,113,115,71,107,116,101,82,88,97,69,83,84,39,32,125,32,43,51,57,49,109,115,10,96,96,96,10,89,111,117,32,99,97,110,32,106,117,115,116,32,100,111,32,116,104,105,115,32,105,110,115,116,101,97,100,44,32,98,117,116,32,105,116,32,119,105,108,108,32,109,97,107,101,32,105,116,32,109,111,114,101,32,100,105,102,102,105,99,117,108,116,32,116,111,32,100,101,98,117,103,46,46,46,10,96,96,96,10,36,32,99,111,108,111,115,115,117,115,32,115,101,114,118,101,114,32,45,45,107,101,121,45,102,105,108,101,32,60,53,89,111,117,114,83,116,111,114,97,103,101,65,100,100,114,101,115,115,46,106,115,111,110,62,32,45,45,112,117,98,108,105,99,45,117,114,108,32,104,116,116,112,115,58,47,47,60,121,111,117,114,46,99,111,111,108,46,117,114,108,62,10,96,96,96,10,73,102,32,101,118,101,114,121,116,104,105,110,103,32,105,115,32,119,111,114,107,105,110,103,32,115,109,111,111,116,104,108,121,44,32,121,111,117,32,119,105,108,108,32,110,111,119,32,115,116,97,114,116,32,115,121,110,99,105,110,103,32,116,104,101,32,96,99,111,110,116,101,110,116,32,100,105,114,101,99,116,111,114,121,96,10,78,111,116,101,32,116,104,97,116,32,117,110,108,101,115,115,32,121,111,117,32,114,117,110,32,116,104,105,115,32,105,115,32,97,32,115,101,114,118,105,99,101,44,32,121,111,117,32,110,111,119,32,104,97,118,101,32,116,111,32,111,112,101,110,32,97,32,115,101,99,111,110,100,32,116,101,114,109,105,110,97,108,32,102,111,114,32,116,104,101,32,114,101,109,97,105,110,105,110,103,32,115,116,101,112,115,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084516},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[95,{"id":95,"thread_id":21,"nr_in_thread":19,"current_text":[35,35,35,35,32,67,104,101,99,107,32,116,104,97,116,32,121,111,117,32,97,114,101,32,115,121,110,99,105,110,103,10,73,110,32,121,111,117,114,32,115,101,99,111,110,100,32,116,101,114,109,105,110,97,108,32,119,105,110,100,111,119,58,10,96,96,96,10,36,32,105,112,102,115,32,98,105,116,115,119,97,112,32,119,97,110,116,108,105,115,116,10,45,45,45,10,35,32,79,117,116,112,117,116,32,115,104,111,117,108,100,32,98,101,32,97,32,108,111,110,103,32,108,105,115,116,32,111,102,32,107,101,121,115,44,32,101,103,46,32,78,111,116,101,32,116,104,97,116,32,105,116,32,109,105,103,104,116,32,116,97,107,101,32,97,32,102,101,119,32,109,105,110,117,116,101,115,32,98,101,102,111,114,101,32,116,104,101,32,97,99,116,117,97,108,32,99,111,110,116,101,110,116,32,102,114,111,109,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,99,111,110,116,101,110,116,32,100,105,114,101,99,116,111,114,121,32,115,104,111,119,115,32,117,112,46,10,45,45,45,10,81,109,101,115,122,101,66,106,66,69,114,70,81,114,107,105,81,80,104,56,81,104,84,115,51,104,102,67,69,71,74,117,75,50,106,78,111,112,97,116,72,110,112,115,49,107,10,46,46,46,10,81,109,102,67,98,85,115,89,104,75,66,109,114,100,111,112,51,121,70,114,101,114,113,86,75,119,66,74,118,89,53,116,98,112,86,49,99,102,57,67,120,51,76,49,74,56,10,96,96,96,10,73,102,32,121,111,117,32,100,105,100,32,116,104,105,115,32,105,109,109,101,100,105,97,116,101,108,121,32,97,102,116,101,114,32,70,73,82,83,84,32,115,116,97,114,116,105,110,103,32,121,111,117,114,32,115,116,111,114,97,103,101,32,110,111,100,101,44,32,116,104,101,32,96,119,97,110,116,108,105,115,116,96,32,109,105,103,104,116,32,98,101,32,101,109,112,116,121,46,32,71,105,118,101,32,105,116,32,97,32,109,105,110,117,116,101,44,32,97,110,100,32,105,116,32,115,104,111,117,108,100,32,99,111,110,116,97,105,110,32,97,116,32,108,101,97,115,116,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,105,116,101,109,115,32,105,110,32,116,104,101,32,99,111,110,116,101,110,116,32,100,105,114,101,99,116,111,114,121,46,32,89,111,117,32,99,97,110,32,97,108,115,111,32,99,104,101,99,107,32,119,104,97,116,32,99,111,110,116,101,110,116,32,121,111,117,32,104,97,118,101,32,115,116,111,114,101,100,32,98,121,58],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084534},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[96,{"id":96,"thread_id":21,"nr_in_thread":20,"current_text":[96,96,96,10,105,112,102,115,32,114,101,102,115,32,108,111,99,97,108,10,45,45,45,10,35,32,79,117,116,112,117,116,32,115,104,111,117,108,100,32,98,101,32,97,110,32,101,118,101,110,32,108,111,110,103,101,114,32,108,105,115,116,32,111,102,32,107,101,121,115,44,32,101,103,46,10,45,45,45,10,81,109,101,115,122,101,66,106,66,69,114,70,81,114,107,105,81,80,104,56,81,104,84,115,51,104,102,67,69,71,74,117,75,50,106,78,111,112,97,116,72,110,112,115,49,107,10,81,109,101,122,117,109,51,65,87,100,120,107,109,49,65,116,72,101,51,53,68,90,71,87,100,102,104,84,81,52,80,86,109,109,90,97,116,71,119,68,76,54,56,82,69,83,10,46,46,46,10,81,109,102,67,67,106,67,53,119,57,119,120,84,70,111,65,97,74,57,52,55,115,115,50,111,99,49,106,120,54,82,50,109,77,57,120,106,85,55,67,99,114,113,53,53,77,10,81,109,102,67,98,85,115,89,104,75,66,109,114,100,111,112,51,121,70,114,101,114,113,86,75,119,66,74,118,89,53,116,98,112,86,49,99,102,57,67,120,51,76,49,74,56,10,96,96,96,10,10,73,110,32,121,111,117,114,32,102,105,114,115,116,32,116,101,114,109,105,110,97,108,32,40,119,104,101,114,101,41,32,116,104,101,32,115,116,111,114,97,103,101,32,110,111,100,101,32,105,115,32,114,117,110,110,105,110,103,44,32,121,111,117,32,119,105,108,108,32,115,111,111,110,32,101,110,111,117,103,104,32,115,101,101,32,116,104,105,115,58,10,96,96,96,10,46,46,46,10,106,111,121,115,116,114,101,97,109,58,114,117,110,116,105,109,101,58,98,97,115,101,32,84,88,32,115,116,97,116,117,115,58,32,70,105,110,97,108,105,122,101,100,32,43,55,109,115,10,106,111,121,115,116,114,101,97,109,58,114,117,110,116,105,109,101,58,98,97,115,101,32,84,88,32,70,105,110,97,108,105,122,101,100,46,32,43,49,109,115,10,106,111,121,115,116,114,101,97,109,58,115,121,110,99,32,115,121,110,99,32,114,117,110,32,99,111,109,112,108,101,116,101,32,43,48,109,115,10,96,96,96,10,10,73,110,32,116,104,101,32,115,101,99,111,110,100,32,116,101,114,109,105,110,97,108,58,10,96,96,96,10,36,32,105,112,102,115,32,114,101,102,115,32,108,111,99,97,108,10,96,96,96,10,83,104,111,117,108,100,32,114,101,116,117,114,110,32,110,111,116,104,105,110,103,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084564},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[97,{"id":97,"thread_id":21,"nr_in_thread":21,"current_text":[35,35,35,32,82,117,110,32,115,116,111,114,97,103,101,32,110,111,100,101,32,97,115,32,97,32,115,101,114,118,105,99,101,10,10,84,111,32,101,110,115,117,114,101,32,104,105,103,104,32,117,112,116,105,109,101,44,32,105,116,39,115,32,98,101,115,116,32,116,111,32,115,101,116,32,116,104,101,32,115,121,115,116,101,109,32,117,112,32,97,115,32,97,32,96,115,101,114,118,105,99,101,96,46,32,78,111,116,101,32,116,104,97,116,32,116,104,105,115,32,119,105,108,108,32,110,111,116,32,119,111,114,107,32,105,102,32,121,111,117,32,115,101,116,32,97,32,112,97,115,115,119,111,114,100,32,102,111,114,32,121,111,117,114,32,96,60,53,89,111,117,114,83,116,111,114,97,103,101,65,100,100,114,101,115,115,46,106,115,111,110,62,32,96,46,10,10,69,120,97,109,112,108,101,32,102,105,108,101,32,98,101,108,111,119,58,10,10,96,96,96,10,36,32,110,97,110,111,32,47,101,116,99,47,115,121,115,116,101,109,100,47,115,121,115,116,101,109,47,115,116,111,114,97,103,101,45,110,111,100,101,46,115,101,114,118,105,99,101,10,35,32,80,97,115,116,101,32,105,110,32,101,118,101,114,121,116,104,105,110,103,32,98,101,108,111,119,32,116,104,101,32,115,116,97,112,108,101,100,32,108,105,110,101,10,45,45,45,10,91,85,110,105,116,93,10,68,101,115,99,114,105,112,116,105,111,110,61,74,111,121,115,116,114,101,97,109,32,83,116,111,114,97,103,101,32,78,111,100,101,10,65,102,116,101,114,61,110,101,116,119,111,114,107,46,116,97,114,103,101,116,32,105,112,102,115,46,115,101,114,118,105,99,101,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,46,115,101,114,118,105,99,101,10,10,91,83,101,114,118,105,99,101,93,10,85,115,101,114,61,114,111,111,116,10,87,111,114,107,105,110,103,68,105,114,101,99,116,111,114,121,61,47,114,111,111,116,47,115,116,111,114,97,103,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,10,76,105,109,105,116,78,79,70,73,76,69,61,56,49,57,50,10,69,110,118,105,114,111,110,109,101,110,116,61,68,69,66,85,71,61,42,10,69,120,101,99,83,116,97,114,116,61,47,117,115,114,47,108,111,99,97,108,47,108,105,98,47,110,111,100,101,106,115,47,110,111,100,101,45,118,49,48,46,49,54,46,48,45,108,105,110,117,120,45,120,54,52,47,98,105,110,47,110,111,100,101,32,92,10,32,32,32,32,32,32,32,32,112,97,99,107,97,103,101,115,47,99,111,108,111,115,115,117,115,47,98,105,110,47,99,108,105,46,106,115,32,92,10,32,32,32,32,32,32,32,32,45,45,107,101,121,45,102,105,108,101,32,60,53,89,111,117,114,83,116,111,114,97,103,101,65,100,100,114,101,115,115,46,106,115,111,110,62,32,45,45,112,117,98,108,105,99,45,117,114,108,32,104,116,116,112,115,58,47,47,60,121,111,117,114,46,99,111,111,108,46,117,114,108,62,10,82,101,115,116,97,114,116,61,111,110,45,102,97,105,108,117,114,101,10,83,116,97,114,116,76,105,109,105,116,73,110,116,101,114,118,97,108,61,54,48,48,10,10,91,73,110,115,116,97,108,108,93,10,87,97,110,116,101,100,66,121,61,109,117,108,116,105,45,117,115,101,114,46,116,97,114,103,101,116,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084588},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[98,{"id":98,"thread_id":21,"nr_in_thread":22,"current_text":[83,97,118,101,32,97,110,100,32,101,120,105,116,46,32,67,108,111,115,101,32,96,99,111,108,111,115,115,117,115,96,32,105,102,32,105,116,39,115,32,115,116,105,108,108,32,114,117,110,110,105,110,103,44,32,116,104,101,110,58,10,96,96,96,10,36,32,115,121,115,116,101,109,99,116,108,32,115,116,97,114,116,32,115,116,111,114,97,103,101,45,110,111,100,101,10,35,32,73,102,32,101,118,101,114,121,116,104,105,110,103,32,119,111,114,107,115,44,32,121,111,117,32,115,104,111,117,108,100,32,103,101,116,32,97,110,32,111,117,116,112,117,116,46,32,86,101,114,105,102,121,32,119,105,116,104,58,10,36,32,115,121,115,116,101,109,99,116,108,32,115,116,97,116,117,115,32,115,116,111,114,97,103,101,45,110,111,100,101,10,35,32,87,104,105,99,104,32,115,104,111,117,108,100,32,112,114,111,100,117,99,101,32,115,111,109,101,116,104,105,110,103,32,108,105,107,101,58,10,45,45,45,10,226,151,143,32,115,116,111,114,97,103,101,45,110,111,100,101,46,115,101,114,118,105,99,101,32,45,32,74,111,121,115,116,114,101,97,109,32,83,116,111,114,97,103,101,32,78,111,100,101,10,32,32,32,76,111,97,100,101,100,58,32,108,111,97,100,101,100,32,40,47,101,116,99,47,115,121,115,116,101,109,100,47,115,121,115,116,101,109,47,115,116,111,114,97,103,101,45,110,111,100,101,46,115,101,114,118,105,99,101,59,32,100,105,115,97,98,108,101,100,41,10,32,32,32,65,99,116,105,118,101,58,32,97,99,116,105,118,101,32,40,114,117,110,110,105,110,103,41,32,115,105,110,99,101,32,84,117,101,32,50,48,49,57,45,48,54,45,49,56,32,49,55,58,50,53,58,52,49,32,85,84,67,59,32,52,109,105,110,32,49,57,115,32,97,103,111,10,32,77,97,105,110,32,80,73,68,58,32,53,54,53,52,32,40,99,111,108,111,115,115,117,115,41,10,32,32,32,67,71,114,111,117,112,58,32,47,115,121,115,116,101,109,46,115,108,105,99,101,47,115,116,111,114,97,103,101,45,110,111,100,101,46,115,101,114,118,105,99,101,10,32,32,32,32,32,32,32,32,32,32,32,226,148,148,226,148,128,53,54,53,52,32,99,111,108,111,115,115,117,115,10,32,32,32,32,32,32,32,32,32,32,32,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084648},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[99,{"id":99,"thread_id":21,"nr_in_thread":23,"current_text":[96,96,96,10,10,74,117,110,32,49,56,32,49,55,58,50,57,58,51,49,32,108,111,99,97,108,104,111,115,116,32,110,111,100,101,91,53,54,53,52,93,58,32,84,117,101,44,32,49,56,32,74,117,110,32,50,48,49,57,32,49,55,58,50,57,58,51,49,32,71,77,84,32,106,111,121,115,116,114,101,97,109,58,117,116,105,108,58,114,97,110,103,101,115,32,61,32,71,111,116,32,99,104,117,110,107,32,119,105,116,104,32,98,121,116,101,32,114,97,110,103,101,32,91,32,49,53,53,53,57,54,56,44,32,49,53,54,48,48,54,51,32,93,10,74,117,110,32,49,56,32,49,55,58,50,57,58,51,49,32,108,111,99,97,108,104,111,115,116,32,110,111,100,101,91,53,54,53,52,93,58,32,84,117,101,44,32,49,56,32,74,117,110,32,50,48,49,57,32,49,55,58,50,57,58,51,49,32,71,77,84,32,106,111,121,115,116,114,101,97,109,58,117,116,105,108,58,114,97,110,103,101,115,32,61,32,71,111,116,32,99,104,117,110,107,32,119,105,116,104,32,98,121,116,101,32,114,97,110,103,101,32,91,32,49,53,54,48,48,54,52,44,32,49,53,54,52,49,53,57,32,93,10,74,117,110,32,49,56,32,49,55,58,50,57,58,51,49,32,108,111,99,97,108,104,111,115,116,32,110,111,100,101,91,53,54,53,52,93,58,32,84,117,101,44,32,49,56,32,74,117,110,32,50,48,49,57,32,49,55,58,50,57,58,51,49,32,71,77,84,32,106,111,121,115,116,114,101,97,109,58,117,116,105,108,58,114,97,110,103,101,115,32,67,117,114,114,101,110,116,32,114,101,113,117,101,115,116,101,100,32,114,97,110,103,101,32,105,115,32,91,32,51,51,55,50,50,56,52,56,44,32,52,52,49,57,53,57,56,51,32,93,10,74,117,110,32,49,56,32,49,55,58,50,57,58,51,49,32,108,111,99,97,108,104,111,115,116,32,110,111,100,101,91,53,54,53,52,93,58,32,84,117,101,44,32,49,56,32,74,117,110,32,50,48,49,57,32,49,55,58,50,57,58,51,49,32,71,77,84,32,106,111,121,115,116,114,101,97,109,58,117,116,105,108,58,114,97,110,103,101,115,32,73,103,110,111,114,105,110,103,32,99,104,117,110,107,59,32,105,116,32,105,115,32,111,117,116,32,111,102,32,114,97,110,103,101,46,10,74,117,110,32,49,56,32,49,55,58,50,57,58,51,49,32,108,111,99,97,108,104,111,115,116,32,110,111,100,101,91,53,54,53,52,93,58,32,84,117,101,44,32,49,56,32,74,117,110,32,50,48,49,57,32,49,55,58,50,57,58,51,49,32,71,77,84,32,106,111,121,115,116,114,101,97,109,58,117,116,105,108,58,114,97,110,103,101,115,32,61,32,71,111,116,32,99,104,117,110,107,32,119,105,116,104,32,98,121,116,101,32,114,97,110,103,101,32,91,32,49,53,54,52,49,54,48,44,32,49,53,54,56,50,53,53,32,93,10,74,117,110,32,49,56,32,49,55,58,50,57,58,51,49,32,108,111,99,97,108,104,111,115,116,32,110,111,100,101,91,53,54,53,52,93,58,32,84,117,101,44,32,49,56,32,74,117,110,32,50,48,49,57,32,49,55,58,50,57,58,51,49,32,71,77,84,32,10,45,45,45,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084690},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[100,{"id":100,"thread_id":21,"nr_in_thread":24,"current_text":[96,96,96,10,35,32,84,111,32,104,97,118,101,32,99,111,108,111,115,115,117,115,32,115,116,97,114,116,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,97,116,32,114,101,98,111,111,116,58,10,36,32,115,121,115,116,101,109,99,116,108,32,101,110,97,98,108,101,32,99,111,108,111,115,115,117,115,10,35,32,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,115,116,111,112,32,116,104,101,32,115,116,111,114,97,103,101,32,110,111,100,101,44,32,101,105,116,104,101,114,32,116,111,32,101,100,105,116,32,116,104,101,32,115,116,111,114,97,103,101,45,110,111,100,101,46,115,101,114,118,105,99,101,32,102,105,108,101,32,111,114,32,115,111,109,101,32,111,116,104,101,114,32,114,101,97,115,111,110,58,10,36,32,115,121,115,116,101,109,99,116,108,32,115,116,111,112,32,115,116,111,114,97,103,101,45,110,111,100,101,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084720},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[101,{"id":101,"thread_id":21,"nr_in_thread":25,"current_text":[35,35,35,32,86,101,114,105,102,121,32,101,118,101,114,121,116,104,105,110,103,32,105,115,32,119,111,114,107,105,110,103,10,10,73,110,32,121,111,117,114,32,98,114,111,119,115,101,114,44,32,102,105,110,100,32,99,108,105,99,107,32,111,110,32,97,110,32,117,112,108,111,97,100,101,100,32,109,101,100,105,97,32,102,105,108,101,46,32,67,111,112,121,32,116,104,101,32,96,60,99,111,110,116,101,110,116,45,105,100,62,96,44,32,105,101,46,32,119,104,97,116,32,99,111,109,101,115,32,97,102,116,101,114,32,116,104,101,32,108,97,115,116,32,96,47,96,46,10,10,84,104,101,110,32,112,97,115,116,101,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,105,110,32,121,111,117,114,32,98,114,111,119,115,101,114,58,10,10,96,104,116,116,112,115,58,47,47,60,121,111,117,114,46,99,111,111,108,46,117,114,108,62,47,97,115,115,101,116,47,118,48,47,60,99,111,110,116,101,110,116,45,105,100,62,96,46,10,10,73,102,32,121,111,117,32,103,101,116,32,97,32,98,108,97,99,107,32,115,99,114,101,101,110,32,119,105,116,104,32,97,32,109,101,100,105,97,32,112,108,97,121,101,114,44,32,116,104,97,116,32,109,101,97,110,115,32,121,111,117,32,97,114,101,32,103,111,111,100,33],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084744},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[102,{"id":102,"thread_id":22,"nr_in_thread":2,"current_text":[35,35,32,80,111,114,116,32,110,111,116,32,115,101,116,10,10,73,102,32,121,111,117,32,103,101,116,32,116,104,105,115,32,101,114,114,111,114,58,10,96,96,96,10,84,121,112,101,69,114,114,111,114,32,91,69,82,82,95,73,78,86,65,76,73,68,95,79,80,84,95,86,65,76,85,69,93,58,32,84,104,101,32,118,97,108,117,101,32,34,123,32,112,111,114,116,58,32,116,114,117,101,44,32,104,111,115,116,58,32,39,58,58,39,32,125,34,32,105,115,32,105,110,118,97,108,105,100,32,102,111,114,32,111,112,116,105,111,110,32,34,111,112,116,105,111,110,115,34,10,32,32,32,32,97,116,32,83,101,114,118,101,114,46,108,105,115,116,101,110,32,40,110,101,116,46,106,115,58,49,52,53,48,58,57,41,10,32,32,32,32,97,116,32,80,114,111,109,105,115,101,32,40,47,114,111,111,116,47,115,116,111,114,97,103,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,47,112,97,99,107,97,103,101,115,47,99,111,108,111,115,115,117,115,47,98,105,110,47,99,108,105,46,106,115,58,49,50,57,58,49,50,41,10,32,32,32,32,97,116,32,110,101,119,32,80,114,111,109,105,115,101,32,40,60,97,110,111,110,121,109,111,117,115,62,41,10,32,32,32,32,97,116,32,115,116,97,114,116,95,101,120,112,114,101,115,115,95,97,112,112,32,40,47,114,111,111,116,47,115,116,111,114,97,103,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,47,112,97,99,107,97,103,101,115,47,99,111,108,111,115,115,117,115,47,98,105,110,47,99,108,105,46,106,115,58,49,50,48,58,49,48,41,10,32,32,32,32,97,116,32,115,116,97,114,116,95,97,108,108,95,115,101,114,118,105,99,101,115,32,40,47,114,111,111,116,47,115,116,111,114,97,103,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,47,112,97,99,107,97,103,101,115,47,99,111,108,111,115,115,117,115,47,98,105,110,47,99,108,105,46,106,115,58,49,51,56,58,49,48,41,10,32,32,32,32,97,116,32,79,98,106,101,99,116,46,115,101,114,118,101,114,32,40,47,114,111,111,116,47,115,116,111,114,97,103,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,47,112,97,99,107,97,103,101,115,47,99,111,108,111,115,115,117,115,47,98,105,110,47,99,108,105,46,106,115,58,51,50,56,58,49,49,41,10,32,32,32,32,97,116,32,112,114,111,99,101,115,115,46,95,116,105,99,107,67,97,108,108,98,97,99,107,32,40,105,110,116,101,114,110,97,108,47,112,114,111,99,101,115,115,47,110,101,120,116,95,116,105,99,107,46,106,115,58,54,56,58,55,41,10,96,96,96,10,10,73,116,32,109,111,115,116,32,108,105,107,101,108,121,32,109,101,97,110,115,32,121,111,117,114,32,112,111,114,116,32,105,115,32,110,111,116,32,115,101,116,44,32,40,97,108,116,104,111,117,103,104,32,105,116,32,115,104,111,117,108,100,32,100,101,102,97,117,108,116,32,116,111,32,51,48,48,48,41,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084792},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[103,{"id":103,"thread_id":22,"nr_in_thread":3,"current_text":[96,96,96,10,36,32,99,111,108,111,115,115,117,115,32,45,45,104,101,108,112,10,35,32,83,104,111,117,108,100,32,108,105,115,116,32,116,104,101,32,112,97,116,104,32,116,111,32,121,111,117,114,32,99,117,114,114,101,110,116,32,99,111,110,102,105,103,32,102,105,108,101,46,10,36,32,99,97,116,32,47,112,97,116,104,47,116,111,47,46,99,111,110,102,105,103,47,99,111,110,102,105,103,115,116,111,114,101,47,64,106,111,121,115,116,114,101,97,109,47,99,111,108,111,115,115,117,115,46,106,115,111,110,10,35,32,115,104,111,117,108,100,32,114,101,116,117,114,110,32,115,111,109,101,116,104,105,110,103,32,108,105,107,101,58,10,45,45,45,10,123,10,32,34,112,111,114,116,34,58,32,51,48,48,48,44,10,32,34,115,121,110,99,80,101,114,105,111,100,34,58,32,51,48,48,48,48,48,44,10,32,34,112,117,98,108,105,99,85,114,108,34,58,32,34,104,116,116,112,115,58,47,47,60,121,111,117,114,46,99,111,111,108,46,117,114,108,62,34,44,10,32,34,107,101,121,70,105,108,101,34,58,32,34,47,112,97,116,104,47,116,111,47,60,53,89,111,117,114,83,116,111,114,97,103,101,65,100,100,114,101,115,115,46,106,115,111,110,62,34,10,125,10,96,96,96,10,73,102,32,96,34,112,111,114,116,34,58,32,60,110,62,96,32,105,115,32,109,105,115,115,105,110,103,44,32,111,114,32,110,111,116,32,97,32,110,117,109,98,101,114,44,32,112,97,115,115,32,116,104,101,58,10,96,45,112,32,60,110,62,32,96,32,97,114,103,117,109,101,110,116,32,111,114,32,101,100,105,116,32,121,111,117,114,32,99,111,110,102,105,103,32,102,105,108,101,44,32,119,104,101,114,101,32,96,60,110,62,96,32,99,111,117,108,100,32,98,101,32,51,48,48,48,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084810},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[104,{"id":104,"thread_id":22,"nr_in_thread":4,"current_text":[35,35,32,73,110,115,116,97,108,108,32,121,97,114,110,32,97,110,100,32,110,111,100,101,32,111,110,32,108,105,110,117,120,10,10,71,111,32,91,104,101,114,101,93,40,104,116,116,112,115,58,47,47,110,111,100,101,106,115,46,111,114,103,47,101,110,47,100,111,119,110,108,111,97,100,47,41,32,97,110,100,32,102,105,110,100,32,116,104,101,32,110,101,119,101,115,116,32,40,76,84,83,41,32,98,105,110,97,114,121,32,102,111,114,32,121,111,117,114,32,100,105,115,116,114,111,46,32,84,104,105,115,32,103,117,105,100,101,32,119,105,108,108,32,97,115,115,117,109,101,32,54,52,45,98,105,116,32,108,105,110,117,120,44,32,97,110,100,32,96,110,111,100,101,45,118,49,48,46,49,54,46,48,96,46,10,10,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,105,110,115,116,97,108,108,32,97,115,32,96,114,111,111,116,96,44,32,115,111,32,121,111,117,114,32,117,115,101,114,32,99,97,110,32,117,115,101,32,96,110,112,109,96,32,119,105,116,104,111,117,116,32,96,115,117,100,111,96,32,112,114,105,118,105,108,101,103,101,115,44,32,103,111,32,91,104,101,114,101,93,40,35,105,110,115,116,97,108,108,45,97,115,45,114,111,111,116,41,46,10,10,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,105,110,115,116,97,108,108,32,97,115,32,97,110,111,116,104,101,114,32,117,115,101,114,32,40,109,117,115,116,32,104,97,118,101,32,96,115,117,100,111,96,32,112,114,105,118,105,108,101,103,101,115,41,44,32,103,111,32,91,104,101,114,101,93,40,35,105,110,115,116,97,108,108,45,97,115,45,117,115,101,114,45,119,105,116,104,45,115,117,100,111,45,112,114,105,118,105,108,101,103,101,115,41,46,10,10,65,108,116,101,114,110,97,116,105,118,101,115,32,115,117,99,104,32,97,115,32,91,110,118,109,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,110,118,109,45,115,104,47,110,118,109,41,32,111,114,32,91,110,111,100,101,115,111,117,114,99,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,110,111,100,101,115,111,117,114,99,101,47,100,105,115,116,114,105,98,117,116,105,111,110,115,47,98,108,111,98,47,109,97,115,116,101,114,47,82,69,65,68,77,69,46,109,100,41,32,97,114,101,32,97,108,115,111,32,119,111,114,116,104,32,99,111,110,115,105,100,101,114,105,110,103,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084828},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[105,{"id":105,"thread_id":22,"nr_in_thread":5,"current_text":[35,35,35,35,32,73,110,115,116,97,108,108,32,97,115,32,82,111,111,116,10,84,104,105,115,32,115,101,99,116,105,111,110,32,97,115,115,117,109,101,115,32,121,111,117,32,97,114,101,32,105,110,115,116,97,108,108,105,110,103,32,97,115,32,96,114,111,111,116,96,46,32,73,116,32,97,108,115,111,32,100,101,109,111,110,115,116,114,97,116,101,115,32,104,111,119,32,121,111,117,32,99,97,110,32,112,114,111,118,105,100,101,32,97,110,111,116,104,101,114,32,117,115,101,114,32,97,99,99,101,115,115,32,119,105,116,104,111,117,116,32,104,97,118,105,110,103,32,116,111,32,117,115,101,32,96,115,117,100,111,96,46,32,73,116,32,100,111,101,115,110,39,116,32,109,97,116,116,101,114,32,105,102,32,117,115,101,114,32,96,106,111,121,115,116,114,101,97,109,96,32,104,97,115,32,96,115,117,100,111,96,32,112,114,105,118,105,108,101,103,101,115,32,111,114,32,110,111,116,46,10,10,96,96,96,10,36,32,119,103,101,116,32,104,116,116,112,115,58,47,47,110,111,100,101,106,115,46,111,114,103,47,100,105,115,116,47,118,49,48,46,49,54,46,48,47,110,111,100,101,45,118,49,48,46,49,54,46,48,45,108,105,110,117,120,45,120,54,52,46,116,97,114,46,120,122,10,36,32,109,107,100,105,114,32,45,112,32,47,117,115,114,47,108,111,99,97,108,47,108,105,98,47,110,111,100,101,106,115,10,36,32,116,97,114,32,45,120,74,118,102,32,110,111,100,101,45,118,49,48,46,49,54,46,48,45,108,105,110,117,120,45,120,54,52,46,116,97,114,46,120,122,32,45,67,32,47,117,115,114,47,108,111,99,97,108,47,108,105,98,47,110,111,100,101,106,115,10,36,32,110,97,110,111,32,126,47,46,98,97,115,104,95,112,114,111,102,105,108,101,10,45,45,45,10,65,112,112,101,110,100,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,108,105,110,101,115,58,10,45,45,45,10,35,32,78,111,100,101,106,115,10,86,69,82,83,73,79,78,61,118,49,48,46,49,54,46,48,10,68,73,83,84,82,79,61,108,105,110,117,120,45,120,54,52,10,101,120,112,111,114,116,32,80,65,84,72,61,47,117,115,114,47,108,111,99,97,108,47,108,105,98,47,110,111,100,101,106,115,47,110,111,100,101,45,36,86,69,82,83,73,79,78,45,36,68,73,83,84,82,79,47,98,105,110,58,36,80,65,84,72,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084864},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[106,{"id":106,"thread_id":22,"nr_in_thread":6,"current_text":[83,97,118,101,32,97,110,100,32,101,120,105,116,44,32,116,104,101,110,58,10,96,96,96,10,36,32,115,111,117,114,99,101,32,126,47,46,98,97,115,104,95,112,114,111,102,105,108,101,10,35,32,86,101,114,105,102,121,32,118,101,114,115,105,111,110,58,10,36,32,110,111,100,101,32,45,118,10,36,32,110,112,109,32,45,118,10,36,32,110,112,120,32,45,118,10,35,32,73,110,115,116,97,108,108,32,121,97,114,110,10,36,32,110,112,109,32,105,110,115,116,97,108,108,32,121,97,114,110,32,45,103,10,36,32,110,112,109,32,105,32,110,111,100,101,45,103,121,112,64,53,46,48,46,48,10,35,32,73,102,32,101,118,101,114,121,116,104,105,110,103,32,108,111,111,107,115,32,111,107,44,32,97,110,100,32,121,111,117,32,119,97,110,116,32,116,111,32,97,108,108,111,119,32,117,115,101,114,32,106,111,121,115,116,114,101,97,109,32,97,99,99,101,115,115,58,10,36,32,99,104,111,119,110,32,45,82,32,106,111,121,115,116,114,101,97,109,32,47,117,115,114,47,108,111,99,97,108,47,108,105,98,47,110,111,100,101,106,115,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084888},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[107,{"id":107,"thread_id":22,"nr_in_thread":7,"current_text":[76,111,103,32,105,110,32,116,111,32,106,111,121,115,116,114,101,97,109,58,10,96,96,96,10,36,32,115,117,32,106,111,121,115,116,114,101,97,109,10,36,32,99,100,10,35,32,82,101,112,101,97,116,32,116,104,101,32,46,98,97,115,104,95,112,114,111,102,105,108,101,32,99,111,110,102,105,103,58,10,36,32,110,97,110,111,32,126,47,46,98,97,115,104,95,112,114,111,102,105,108,101,10,45,45,45,10,65,112,112,101,110,100,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,108,105,110,101,115,58,10,45,45,45,10,35,32,78,111,100,101,106,115,10,86,69,82,83,73,79,78,61,118,49,48,46,49,54,46,48,10,68,73,83,84,82,79,61,108,105,110,117,120,45,120,54,52,10,101,120,112,111,114,116,32,80,65,84,72,61,47,117,115,114,47,108,111,99,97,108,47,108,105,98,47,110,111,100,101,106,115,47,110,111,100,101,45,36,86,69,82,83,73,79,78,45,36,68,73,83,84,82,79,47,98,105,110,58,36,80,65,84,72,10,96,96,96,10,83,97,118,101,32,97,110,100,32,101,120,105,116,44,32,116,104,101,110,58,10,96,96,96,10,36,32,115,111,117,114,99,101,32,126,47,46,98,97,115,104,95,112,114,111,102,105,108,101,10,35,32,86,101,114,105,102,121,32,116,104,97,116,32,105,116,32,119,111,114,107,115,58,10,36,32,110,111,100,101,32,45,118,10,36,32,110,112,109,32,45,118,10,36,32,110,112,120,32,45,118,10,36,32,121,97,114,110,32,45,118,10,96,96,96,10,10,89,111,117,32,104,97,118,101,32,110,111,119,32,115,117,99,99,101,115,115,102,117,108,108,121,32,105,110,115,116,97,108,108,101,100,32,116,104,101,32,110,101,119,101,115,116,32,40,76,84,83,41,32,118,101,114,115,105,111,110,115,32,111,102,32,96,110,112,109,96,44,32,96,110,111,100,101,96,32,97,110,100,32,96,121,97,114,110,96,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084900},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[108,{"id":108,"thread_id":22,"nr_in_thread":8,"current_text":[35,35,35,35,32,73,110,115,116,97,108,108,32,97,115,32,117,115,101,114,32,119,105,116,104,32,96,115,117,100,111,96,32,112,114,105,118,105,108,101,103,101,115,10,84,104,105,115,32,115,101,99,116,105,111,110,32,97,115,115,117,109,101,115,32,116,104,101,32,115,116,101,112,115,32,97,114,101,32,112,101,114,102,111,114,109,101,100,32,97,115,32,117,115,101,114,32,96,106,111,121,115,116,114,101,97,109,96,32,119,105,116,104,32,96,115,117,100,111,96,32,112,114,105,118,105,108,101,103,101,115,46,10,10,65,115,32,96,106,111,121,115,116,114,101,97,109,96,10,96,96,96,10,36,32,119,103,101,116,32,104,116,116,112,115,58,47,47,110,111,100,101,106,115,46,111,114,103,47,100,105,115,116,47,118,49,48,46,49,54,46,48,47,110,111,100,101,45,118,49,48,46,49,54,46,48,45,108,105,110,117,120,45,120,54,52,46,116,97,114,46,120,122,10,36,32,115,117,100,111,32,109,107,100,105,114,32,45,112,32,47,117,115,114,47,108,111,99,97,108,47,108,105,98,47,110,111,100,101,106,115,10,36,32,115,117,100,111,32,116,97,114,32,45,120,74,118,102,32,110,111,100,101,45,118,49,48,46,49,54,46,48,45,108,105,110,117,120,45,120,54,52,46,116,97,114,46,120,122,32,45,67,32,47,117,115,114,47,108,111,99,97,108,47,108,105,98,47,110,111,100,101,106,115,10,36,32,110,97,110,111,32,126,47,46,98,97,115,104,95,112,114,111,102,105,108,101,10,45,45,45,10,65,112,112,101,110,100,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,108,105,110,101,115,58,10,45,45,45,10,35,32,78,111,100,101,106,115,10,86,69,82,83,73,79,78,61,118,49,48,46,49,54,46,48,10,68,73,83,84,82,79,61,108,105,110,117,120,45,120,54,52,10,101,120,112,111,114,116,32,80,65,84,72,61,47,117,115,114,47,108,111,99,97,108,47,108,105,98,47,110,111,100,101,106,115,47,110,111,100,101,45,36,86,69,82,83,73,79,78,45,36,68,73,83,84,82,79,47,98,105,110,58,36,80,65,84,72,10,96,96,96,10,83,97,118,101,32,97,110,100,32,101,120,105,116,44,32,116,104,101,110,58,10,96,96,96,10,36,32,115,111,117,114,99,101,32,126,47,46,98,97,115,104,95,112,114,111,102,105,108,101,10,36,32,115,117,100,111,32,99,104,111,119,110,32,45,82,32,106,111,121,115,116,114,101,97,109,32,47,117,115,114,47,108,111,99,97,108,47,108,105,98,47,110,111,100,101,106,115,10,35,32,86,101,114,105,102,121,32,116,104,97,116,32,105,116,32,119,111,114,107,115,58,10,36,32,110,111,100,101,32,45,118,10,36,32,110,112,109,32,45,118,10,36,32,110,112,120,32,45,118,10,35,32,73,110,115,116,97,108,108,32,121,97,114,110,10,36,32,110,112,109,32,105,110,115,116,97,108,108,32,121,97,114,110,32,45,103,10,35,32,86,101,114,105,102,121,32,116,104,97,116,32,105,116,32,119,111,114,107,115,58,10,36,32,121,97,114,110,32,45,118,10,36,32,110,112,109,32,105,32,110,111,100,101,45,103,121,112,64,53,46,48,46,48,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084942},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[109,{"id":109,"thread_id":22,"nr_in_thread":9,"current_text":[73,102,32,121,111,117,32,119,97,110,116,32,96,114,111,111,116,96,32,116,111,32,98,101,32,97,98,108,101,32,116,111,32,117,115,101,32,96,110,112,109,96,32,97,115,32,119,101,108,108,58,10,10,96,96,96,10,36,32,115,117,100,111,32,115,117,10,36,32,110,97,110,111,32,126,47,46,98,97,115,104,95,112,114,111,102,105,108,101,10,45,45,45,10,65,112,112,101,110,100,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,108,105,110,101,115,58,10,45,45,45,10,35,32,78,111,100,101,106,115,10,86,69,82,83,73,79,78,61,118,49,48,46,49,54,46,48,10,68,73,83,84,82,79,61,108,105,110,117,120,45,120,54,52,10,101,120,112,111,114,116,32,80,65,84,72,61,47,117,115,114,47,108,111,99,97,108,47,108,105,98,47,110,111,100,101,106,115,47,110,111,100,101,45,36,86,69,82,83,73,79,78,45,36,68,73,83,84,82,79,47,98,105,110,58,36,80,65,84,72,10,96,96,96,10,83,97,118,101,32,97,110,100,32,101,120,105,116,44,32,116,104,101,110,58,10,10,96,36,32,115,111,117,114,99,101,32,126,47,46,98,97,115,104,95,112,114,111,102,105,108,101,96,10,10,89,111,117,32,104,97,118,101,32,110,111,119,32,115,117,99,99,101,115,115,102,117,108,108,121,32,105,110,115,116,97,108,108,101,100,32,116,104,101,32,110,101,119,101,115,116,32,40,76,84,83,41,32,118,101,114,115,105,111,110,115,32,111,102,32,96,110,112,109,96,44,32,96,110,111,100,101,96,32,97,110,100,32,96,121,97,114,110,96,46,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569084966},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[110,{"id":110,"thread_id":23,"nr_in_thread":2,"current_text":[35,35,32,71,101,110,101,114,97,116,101,32,75,101,121,115,10,67,108,105,99,107,32,96,77,121,32,75,101,121,115,96,32,105,110,32,116,104,101,32,115,105,100,101,98,97,114,44,32,97,110,100,32,116,104,101,110,32,115,101,108,101,99,116,32,116,104,101,32,96,67,114,101,97,116,101,32,75,101,121,115,96,32,116,97,98,46,32,84,104,101,32,99,104,111,105,99,101,115,32,121,111,117,32,109,97,107,101,32,102,114,111,109,32,104,101,114,101,44,32,100,101,112,101,110,100,115,32,97,32,108,105,116,116,108,101,32,111,110,32,104,111,119,32,121,111,117,32,119,97,110,116,32,116,111,32,112,97,114,116,105,99,105,112,97,116,101,46,32,73,102,32,121,111,117,32,106,117,115,116,32,119,97,110,116,32,116,111,32,112,108,97,121,32,97,114,111,117,110,100,44,32,121,111,117,32,99,97,110,32,106,117,115,116,32,102,111,108,108,111,119,32,116,104,101,32,100,101,102,97,117,108,116,115,46,32,73,102,32,121,111,117,32,104,97,118,101,32,97,32,115,112,101,99,105,102,105,99,32,114,111,108,101,32,105,110,32,109,105,110,100,44,32,121,111,117,32,109,105,103,104,116,32,119,97,110,116,32,116,111,32,102,111,108,108,111,119,32,116,104,101,32,108,105,110,107,115,32,116,111,32,116,104,101,32,105,110,115,116,114,117,99,116,105,111,110,115,32,105,110,32,116,104,101,32,104,101,97,100,101,114,44,32,111,114,32,97,99,99,101,115,115,32,116,104,101,109,32,118,105,97,32,91,65,99,116,105,118,101,32,82,111,108,101,115,93,40,35,97,99,116,105,118,101,45,114,111,108,101,115,41,46,10,10,73,110,32,97,110,121,32,101,118,101,110,116,44,32,116,104,101,32,96,75,101,121,115,96,32,119,105,108,108,32,98,101,32,115,116,111,114,101,100,32,105,110,32,121,111,117,114,32,98,114,111,119,115,101,114,32,102,111,114,32,121,111,117,114,32,99,111,110,118,101,110,105,101,110,99,101,44,32,98,117,116,32,105,116,39,115,32,115,97,102,101,115,116,32,116,111,32,115,97,118,101,32,121,111,117,114,32,96,82,97,119,32,115,101,101,100,96,32,40,121,111,117,32,110,101,101,100,32,105,116,32,102,111,114,32,99,101,114,116,97,105,110,32,114,111,108,101,115,41,32,97,110,100,32,115,97,118,101,32,116,104,101,32,46,106,115,111,110,32,102,105,108,101,46,32,84,104,101,32,96,77,110,101,109,111,110,105,99,96,32,99,97,110,32,97,108,115,111,32,98,101,32,117,115,101,100,32,116,111,32,114,101,115,116,111,114,101,32,121,111,117,114,32,96,75,101,121,115,96,44,32,98,117,116,32,119,105,108,108,32,110,111,116,32,100,111,32,121,111,117,32,97,110,121,32,103,111,111,100,32,105,102,32,121,111,117,32,119,97,110,116,32,116,111,32,98,101,99,111,109,101,32,97,32,96,86,97,108,105,100,97,116,111,114,96,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569085116},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[111,{"id":111,"thread_id":23,"nr_in_thread":3,"current_text":[35,35,32,71,101,116,32,97,32,77,101,109,98,101,114,115,104,105,112,10,84,111,32,98,101,99,111,109,101,32,97,32,96,77,101,109,98,101,114,96,32,111,102,32,116,104,101,32,112,108,97,116,102,111,114,109,44,32,121,111,117,32,110,101,101,100,32,115,111,109,101,32,116,111,107,101,110,115,46,32,69,105,116,104,101,114,32,99,108,105,99,107,32,116,104,101,32,96,70,114,101,101,32,84,111,107,101,110,115,96,32,108,105,110,107,44,32,111,114,32,99,108,105,99,107,32,91,104,101,114,101,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,102,97,117,99,101,116,41,46,32,65,102,116,101,114,32,121,111,117,32,115,111,108,118,101,100,32,116,104,101,32,99,97,112,116,99,104,97,44,32,121,111,117,114,32,116,111,107,101,110,115,32,115,104,111,117,108,100,32,98,101,32,111,110,32,116,104,101,105,114,32,119,97,121,46,10,10,42,42,78,111,116,101,42,42,10,65,108,108,32,116,114,97,110,115,97,99,116,105,111,110,115,32,40,101,120,116,114,105,110,115,105,99,115,41,32,99,111,115,116,32,49,32,74,111,121,32,116,111,107,101,110,44,32,115,111,32,121,111,117,32,115,104,111,117,108,100,32,97,108,119,97,121,115,32,107,101,101,112,32,97,32,108,105,116,116,108,101,32,105,110,32,114,101,115,101,114,118,101,44,32,97,115,32,116,104,105,115,32,97,108,115,111,32,97,112,112,108,105,101,115,32,116,111,32,115,117,99,104,32,97,99,116,105,111,110,115,32,97,115,32,118,111,116,105,110,103,44,32,117,110,115,116,97,107,105,110,103,44,32,97,110,100,32,112,111,115,116,105,110,103,32,105,110,32,116,104,101,32,110,101,119,32,91,102,111,114,117,109,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,97,99,114,111,112,111,108,105,115,47,112,105,111,110,101,101,114,47,35,47,102,111,114,117,109,41,46,10,10,78,111,119,44,32,99,108,105,99,107,32,96,77,101,109,98,101,114,115,96,32,105,110,32,116,104,101,32,115,105,100,101,98,97,114,44,32,97,110,100,32,115,101,108,101,99,116,32,116,104,101,32,96,82,101,103,105,115,116,101,114,96,32,116,97,98,46,32,67,104,111,111,115,101,32,97,32,96,72,97,110,100,108,101,47,110,105,99,107,110,97,109,101,96,46,32,79,112,116,105,111,110,97,108,108,121,44,32,112,114,111,118,105,100,101,32,97,32,108,105,110,107,32,116,111,32,97,110,32,105,109,97,103,101,32,102,105,108,101,32,102,111,114,32,121,111,117,114,32,97,118,97,116,97,114,44,32,97,110,100,32,102,105,108,108,32,105,110,32,116,104,101,32,109,97,114,107,100,111,119,110,32,101,110,97,98,108,101,100,32,96,65,98,111,117,116,96,32,102,105,101,108,100,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569085128},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[112,{"id":112,"thread_id":24,"nr_in_thread":2,"current_text":[35,32,73,110,115,116,114,117,99,116,105,111,110,115,10,85,110,108,105,107,101,32,109,111,115,116,32,111,102,32,116,104,101,32,111,116,104,101,114,32,99,117,114,114,101,110,116,32,97,110,100,32,102,117,116,117,114,101,32,114,111,108,101,115,32,111,110,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,80,108,97,116,102,111,114,109,44,32,98,101,99,111,109,105,110,103,32,97,32,96,67,111,117,110,99,105,108,32,77,101,109,98,101,114,96,32,111,114,32,118,111,116,105,110,103,32,111,110,32,112,114,111,112,111,115,97,108,115,32,114,101,113,117,105,114,101,115,32,110,111,32,101,120,116,114,97,32,115,111,102,116,119,97,114,101,46,32,69,118,101,114,121,116,104,105,110,103,32,99,97,110,32,98,101,32,100,111,110,101,32,105,110,32,116,104,101,32,98,114,111,119,115,101,114,44,32,98,121,32,103,111,105,110,103,32,91,104,101,114,101,93,40,104,116,116,112,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,41,46,10,10,42,42,78,111,116,101,42,42,10,65,102,116,101,114,32,105,110,116,114,111,100,117,99,105,110,103,32,96,77,101,109,98,101,114,115,104,105,112,115,96,32,116,111,32,116,104,101,32,112,108,97,116,102,111,114,109,44,32,119,101,32,102,111,117,110,100,32,105,116,32,116,111,32,98,101,32,99,111,110,102,117,115,105,110,103,32,116,111,32,104,97,118,101,32,97,32,99,111,110,99,101,112,116,32,111,102,32,98,111,116,104,32,96,65,99,99,111,117,110,116,115,96,32,97,110,100,32,96,77,101,109,98,101,114,115,104,105,112,115,96,46,32,87,101,32,97,114,101,32,105,110,32,116,104,101,32,112,114,111,99,101,115,115,32,111,102,32,114,101,110,97,109,105,110,103,32,116,104,101,32,96,65,99,99,111,117,110,116,115,96,32,116,111,32,116,104,101,32,96,75,101,121,115,96,44,32,98,117,116,32,116,104,101,114,101,32,97,114,101,32,115,116,105,108,108,32,116,114,97,99,101,115,32,111,102,32,96,65,99,99,111,117,110,116,115,96,32,115,104,111,119,105,110,103,32,117,112,46,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569085194},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[113,{"id":113,"thread_id":24,"nr_in_thread":3,"current_text":[35,32,71,101,116,32,83,116,97,114,116,101,100,10,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,103,101,116,32,101,108,101,99,116,101,100,32,97,115,32,97,32,96,67,111,117,110,99,105,108,32,77,101,109,98,101,114,96,32,111,114,32,118,111,116,101,32,111,110,32,116,104,101,32,112,108,97,116,102,111,114,109,44,32,121,111,117,32,110,101,101,100,32,116,111,32,98,101,32,97,32,96,77,101,109,98,101,114,96,46,32,73,110,115,116,114,117,99,116,105,111,110,115,32,102,111,114,32,116,104,105,115,32,99,97,110,32,98,101,32,102,111,117,110,100,32,91,104,101,114,101,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,97,99,114,111,112,111,108,105,115,47,112,105,111,110,101,101,114,47,35,47,102,111,114,117,109,47,116,104,114,101,97,100,115,47,50,51,41,46,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569085284},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[114,{"id":114,"thread_id":24,"nr_in_thread":4,"current_text":[35,32,69,108,101,99,116,105,111,110,32,67,121,99,108,101,10,84,104,101,32,101,108,101,99,116,105,111,110,32,99,121,99,108,101,32,99,111,110,115,105,115,116,115,32,102,111,117,114,32,115,116,97,103,101,115,46,10,49,46,32,96,65,110,110,111,117,110,99,101,109,101,110,116,96,32,45,32,108,97,115,116,115,32,52,51,50,48,48,32,98,108,111,99,107,115,32,40,126,55,50,104,41,10,50,46,32,96,86,111,116,105,110,103,96,32,32,32,32,32,32,32,45,32,108,97,115,116,115,32,49,52,52,48,48,32,98,108,111,99,107,115,32,40,126,50,52,104,41,10,51,46,32,96,82,101,118,101,97,108,96,32,32,32,32,32,32,32,45,32,108,97,115,116,115,32,49,52,52,48,48,32,98,108,111,99,107,115,32,40,126,50,52,104,41,10,52,46,32,96,84,101,114,109,96,32,32,32,32,32,32,32,32,32,45,32,108,97,115,116,115,32,50,48,49,54,48,48,32,98,108,111,99,107,115,32,40,126,49,52,100,97,121,115,41],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569085308},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[115,{"id":115,"thread_id":24,"nr_in_thread":5,"current_text":[35,35,32,65,110,110,111,117,110,99,101,109,101,110,116,10,68,117,114,105,110,103,32,116,104,101,32,96,65,110,110,111,117,110,99,101,109,101,110,116,96,32,115,116,97,103,101,44,32,97,110,121,111,110,101,32,116,104,97,116,32,105,115,32,97,32,96,77,101,109,98,101,114,96,44,32,97,110,100,32,104,111,108,100,115,32,97,116,32,108,101,97,115,116,32,117,110,115,116,97,107,101,100,32,49,48,48,48,32,74,111,121,32,40,105,101,46,32,105,102,32,121,111,117,32,117,115,101,32,121,111,117,114,32,96,118,97,108,105,100,97,116,111,114,96,32,96,115,116,97,115,104,96,32,107,101,121,44,32,121,111,117,32,110,101,101,100,32,97,32,96,98,97,108,97,110,99,101,96,32,62,32,96,98,111,110,100,101,100,96,32,43,32,49,48,48,48,32,74,111,121,41,32,116,111,107,101,110,115,32,99,97,110,32,97,110,110,111,117,110,99,101,32,116,104,101,105,114,32,99,97,110,100,105,100,97,99,121,32,116,111,32,98,101,99,111,109,101,32,97,32,96,67,111,117,110,99,105,108,32,77,101,109,98,101,114,96,46,10,10,83,101,108,101,99,116,32,96,67,111,117,110,99,105,108,96,32,105,110,32,116,104,101,32,115,105,100,101,98,97,114,44,32,97,110,100,32,99,108,105,99,107,32,116,104,101,32,96,65,112,112,108,105,99,97,110,116,115,96,32,116,97,98,46,32,83,101,116,32,116,104,101,32,97,109,111,117,110,116,32,111,102,32,116,111,107,101,110,115,32,121,111,117,32,119,97,110,116,32,116,111,44,32,115,116,97,107,101,44,32,97,110,100,32,99,111,110,102,105,114,109,46,10,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,112,117,116,32,109,111,114,101,32,115,116,97,107,101,32,98,101,104,105,110,100,32,121,111,117,114,32,99,97,110,100,105,100,97,99,121,32,108,97,116,101,114,44,32,121,111,117,32,99,97,110,32,116,111,112,32,117,112,32,97,116,32,97,110,121,32,112,111,105,110,116,32,100,117,114,105,110,103,32,116,104,101,32,115,116,97,103,101,46,32,65,102,116,101,114,32,115,101,110,100,105,110,103,32,116,104,101,32,116,114,97,110,115,97,99,116,105,111,110,44,32,121,111,117,32,115,104,111,117,108,100,32,97,112,112,101,97,114,32,117,110,100,101,114,32,34,65,112,112,108,105,99,97,110,116,115,34,46,32,84,104,101,32,109,97,120,32,110,117,109,98,101,114,32,111,102,32,65,112,112,108,105,99,97,110,116,115,32,105,115,32,96,50,53,96,46,32,87,104,101,110,32,116,104,101,32,50,53,116,104,32,99,97,110,100,105,100,97,116,101,32,97,112,112,108,105,101,115,44,32,116,104,101,32,111,110,101,32,119,105,116,104,32,116,104,101,32,108,111,119,101,115,116,32,97,109,111,117,110,116,32,115,116,97,107,101,100,32,119,105,108,108,32,98,101,32,112,117,115,104,101,100,32,111,102,102,32,116,104,101,32,108,105,115,116,44,32,97,110,100,32,103,101,116,32,116,104,101,105,114,32,115,116,97,107,101,32,114,101,116,117,114,110,101,100,46,32,73,110,32,116,111,116,97,108,44,32,96,49,50,96,32,67,111,117,110,99,105,108,32,77,101,109,98,101,114,115,32,109,117,115,116,32,98,101,32,101,108,101,99,116,101,100,46,32,73,102,32,116,104,101,114,101,32,97,114,101,32,108,101,115,115,32,116,104,97,110,32,49,50,32,97,112,112,108,105,99,97,110,116,115,44,32,116,104,101,32,96,65,110,110,111,117,110,99,101,109,101,110,116,96,32,115,116,97,103,101,32,119,105,108,108,32,98,101,32,114,101,115,116,97,114,116,101,100,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569085344},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[116,{"id":116,"thread_id":24,"nr_in_thread":6,"current_text":[35,35,32,86,111,116,105,110,103,10,65,115,32,115,111,111,110,32,97,115,32,116,104,101,32,96,65,110,110,111,117,110,99,101,109,101,110,116,96,32,115,116,97,103,101,32,99,108,111,115,101,115,44,32,121,111,117,32,99,97,110,32,98,101,103,105,110,32,118,111,116,105,110,103,32,102,111,114,32,97,112,112,108,105,99,97,110,116,115,46,32,65,115,32,119,105,116,104,32,101,118,101,114,121,116,104,105,110,103,32,101,108,115,101,44,32,121,111,117,32,110,101,101,100,32,116,111,32,115,116,97,107,101,32,105,110,32,111,114,100,101,114,32,116,111,32,100,111,32,115,111,46,32,74,111,121,115,116,114,101,97,109,32,105,115,32,99,117,114,114,101,110,116,108,121,32,119,111,114,107,105,110,103,32,117,110,100,101,114,32,116,104,101,32,34,79,110,101,32,84,111,107,101,110,32,45,32,79,110,101,32,86,111,116,101,34,32,112,114,105,110,99,105,112,97,108,46,32,71,111,32,116,111,32,116,104,101,32,96,86,111,116,101,115,96,32,116,97,98,44,32,115,101,116,32,121,111,117,114,32,115,116,97,107,105,110,103,32,97,109,111,117,110,116,44,32,115,101,108,101,99,116,32,121,111,117,114,32,99,97,110,100,105,100,97,116,101,32,97,110,100,32,103,101,110,101,114,97,116,101,32,97,32,96,82,97,110,100,111,109,32,115,97,108,116,96,46,32,84,104,105,115,32,119,105,108,108,32,98,101,32,110,101,101,100,101,100,32,116,111,32,114,101,118,101,97,108,32,97,110,100,32,97,99,116,117,97,108,108,121,32,34,98,114,111,97,100,99,97,115,116,34,32,121,111,117,114,32,118,111,116,101,46,32,89,111,117,32,99,97,110,32,118,111,116,101,32,109,111,114,101,32,116,104,97,110,32,111,110,99,101,44,32,102,111,114,32,121,111,117,114,32,115,101,108,102,44,32,97,110,100,32,102,111,114,32,109,111,114,101,32,116,104,97,110,32,111,110,101,32,97,112,112,108,105,99,97,110,116,46,32,65,108,108,32,116,104,101,32,100,97,116,97,32,119,105,108,108,32,98,101,32,115,116,111,114,101,100,32,105,110,32,121,111,117,114,32,98,114,111,119,115,101,114,44,32,115,111,32,97,115,32,108,111,110,103,32,97,115,32,121,111,117,32,97,114,101,32,117,115,105,110,103,32,116,104,101,32,115,97,109,101,32,109,97,99,104,105,110,101,47,98,114,111,119,115,101,114,47,99,111,111,107,105,101,115,44,32,121,111,117,32,100,111,110,39,116,32,110,101,101,100,32,116,111,32,115,97,118,101,32,97,110,121,116,104,105,110,103,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569085356},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[117,{"id":117,"thread_id":24,"nr_in_thread":7,"current_text":[35,35,32,82,101,118,101,97,108,10,65,115,32,115,111,111,110,32,97,115,32,116,104,101,32,96,86,111,116,105,110,103,96,32,115,116,97,103,101,32,99,108,111,115,101,115,44,32,116,104,101,32,82,101,118,101,97,108,105,110,103,32,115,116,97,103,101,32,98,101,103,105,110,115,46,32,84,104,105,115,32,105,115,32,119,104,101,110,32,121,111,117,32,99,97,110,32,114,101,118,101,97,108,32,121,111,117,114,32,118,111,116,101,46,32,71,111,32,116,111,32,116,104,101,32,96,82,101,118,101,97,108,32,97,32,118,111,116,101,96,32,116,97,98,44,32,116,111,32,97,99,116,117,97,108,108,121,32,98,114,111,97,100,99,97,115,116,32,121,111,117,114,32,118,111,116,101,46,32,86,111,116,101,115,32,116,104,97,116,32,97,114,101,32,110,111,116,32,114,101,118,101,97,108,101,100,32,105,110,32,116,105,109,101,32,119,105,108,108,32,110,111,116,32,103,101,116,32,99,111,117,110,116,101,100,32,105,110,32,116,104,101,32,101,108,101,99,116,105,111,110,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569085368},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[118,{"id":118,"thread_id":24,"nr_in_thread":8,"current_text":[35,35,32,84,101,114,109,10,65,115,32,115,111,111,110,32,97,115,32,116,104,101,32,96,82,101,118,101,97,108,96,32,115,116,97,103,101,32,99,108,111,115,101,115,44,32,116,104,101,32,49,50,32,99,97,110,100,105,100,97,116,101,115,32,119,105,116,104,32,116,104,101,32,104,105,103,104,101,115,116,32,116,111,116,97,108,32,98,97,99,107,105,110,103,44,32,105,101,46,32,116,104,101,105,114,32,111,119,110,32,115,116,97,107,101,32,43,32,118,111,116,101,114,32,115,116,97,107,101,44,32,119,105,108,108,32,98,101,99,111,109,101,32,96,67,111,117,110,99,105,108,32,77,101,109,98,101,114,115,96,46,32,84,104,101,105,114,32,116,101,114,109,32,119,105,108,108,32,114,117,110,32,102,111,114,32,49,52,32,100,97,121,115,44,32,97,102,116,101,114,32,119,104,105,99,104,32,97,32,110,101,119,32,96,67,111,117,110,99,105,108,96,32,119,105,108,108,32,98,101,101,110,32,101,108,101,99,116,101,100,46,10,10,78,111,116,101,32,116,104,97,116,32,116,104,101,32,110,101,120,116,32,96,65,110,110,111,117,110,99,101,109,101,110,116,96,32,115,116,97,103,101,32,119,105,108,108,32,115,116,97,114,116,32,101,120,97,99,116,108,121,32,50,48,49,54,48,48,32,98,108,111,99,107,115,32,40,49,52,32,100,97,121,115,41,32,97,102,116,101,114,32,116,104,101,32,112,114,101,118,105,111,117,115,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569085380},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[119,{"id":119,"thread_id":26,"nr_in_thread":2,"current_text":[35,35,35,32,73,110,115,116,114,117,99,116,105,111,110,115,10,73,102,32,121,111,117,32,102,105,110,100,32,97,32,98,117,103,32,105,110,32,97,110,121,32,111,102,32,111,117,114,32,115,111,102,116,119,97,114,101,44,32,114,101,112,111,114,116,105,110,103,32,116,104,101,109,32,97,115,32,96,73,115,115,117,101,115,96,32,105,110,32,116,104,101,32,99,111,114,114,101,99,116,32,91,114,101,112,111,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,106,111,121,115,116,114,101,97,109,35,114,101,112,111,115,105,116,111,114,121,45,105,110,100,101,120,41,32,119,105,108,108,32,97,108,108,111,119,32,117,115,32,116,111,32,97,100,100,114,101,115,115,32,116,104,105,115,46,32,65,115,32,115,116,97,116,101,100,32,91,104,101,114,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,104,101,108,112,100,101,115,107,35,98,117,105,108,100,101,114,115,45,97,110,100,45,98,117,103,45,114,101,112,111,114,116,101,114,115,41,44,32,105,116,32,109,105,103,104,116,32,97,108,115,111,32,113,117,97,108,105,102,121,32,102,111,114,32,97,32,98,111,117,110,116,121,46,32,73,102,32,121,111,117,32,102,105,110,100,32,97,110,32,101,114,114,111,114,44,32,115,111,109,101,116,104,105,110,103,32,117,110,99,108,101,97,114,32,111,114,32,106,117,115,116,32,109,105,115,115,105,110,103,32,105,110,32,116,104,101,32,103,117,105,100,101,115,32,105,110,32,116,104,105,115,32,114,101,112,111,44,32,116,104,101,32,91,115,97,109,101,32,99,111,110,99,101,112,116,32,97,112,112,108,105,101,115,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,98,111,117,110,116,105,101,115,47,105,115,115,117,101,115,47,51,41,46,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569085650},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[120,{"id":120,"thread_id":26,"nr_in_thread":3,"current_text":[65,115,32,97,32,103,101,110,101,114,97,108,32,110,111,116,101,44,32,105,110,32,97,100,100,105,116,105,111,110,32,116,111,32,116,104,101,32,115,101,118,101,114,105,116,121,32,111,102,32,116,104,101,32,98,117,103,44,32,116,104,101,32,109,111,114,101,32,100,101,116,97,105,108,115,32,121,111,117,32,105,110,99,108,117,100,101,32,105,110,32,116,104,101,32,96,73,115,115,117,101,96,44,32,116,104,101,32,98,105,103,103,101,114,32,116,104,101,32,114,101,119,97,114,100,32,119,105,108,108,32,98,101,46,32,69,120,97,109,112,108,101,32,111,102,32,97,32,100,101,116,97,105,108,101,100,32,96,73,115,115,117,101,96,58,10,42,32,70,111,114,32,110,111,100,101,115,32,97,110,100,32,115,111,102,116,119,97,114,101,32,114,97,110,32,111,110,32,121,111,117,114,32,99,111,109,112,117,116,101,114,10,32,32,42,32,76,111,103,115,32,97,110,100,32,99,114,97,115,104,32,114,101,112,111,114,116,115,32,40,102,114,111,109,32,111,110,101,32,111,102,32,116,104,101,32,110,111,100,101,115,41,10,32,32,42,32,83,116,101,112,115,32,116,111,32,114,101,112,114,111,100,117,99,101,10,32,32,42,32,89,111,117,114,32,101,110,118,105,114,111,110,109,101,110,116,32,40,101,103,46,32,111,112,101,114,97,116,105,110,103,32,115,121,115,116,101,109,32,97,110,100,32,118,101,114,115,105,111,110,41,10,32,32,42,32,101,116,99,46,10,42,32,73,102,32,114,101,108,97,116,101,100,32,116,111,32,111,117,114,32,96,80,105,111,110,101,101,114,96,32,91,116,101,115,116,110,101,116,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,41,32,97,112,112,115,58,10,32,32,42,32,87,104,97,116,32,40,105,102,32,97,110,121,41,32,101,114,114,111,114,32,109,101,115,115,97,103,101,32,100,105,100,32,121,111,117,32,115,101,101,100,63,10,32,32,42,32,87,104,97,116,32,119,101,114,101,32,121,111,117,32,116,114,121,105,110,103,32,116,111,32,100,111,63,10,32,32,42,32,87,104,97,116,32,105,115,32,121,111,117,114,32,97,100,100,114,101,115,115,63,10,32,32,42,32,87,104,97,116,32,105,115,32,121,111,117,114,32,98,97,108,97,110,99,101,63,10,32,32,42,32,87,104,97,116,32,105,115,32,116,104,101,32,116,121,112,101,32,111,102,32,96,107,101,121,96,32,40,105,101,46,32,96,83,99,104,110,111,114,114,107,101,108,96,32,111,114,32,96,69,100,119,97,114,100,115,96,41,63,10,32,32,42,32,65,114,101,32,121,111,117,32,97,32,96,77,101,109,98,101,114,96,63,10,32,32,42,32,73,115,32,116,104,101,32,96,107,101,121,96,32,117,115,101,100,32,102,111,114,32,97,110,111,116,104,101,114,32,114,111,108,101,63,10,32,32,42,32,101,116,99,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569085662},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[121,{"id":121,"thread_id":16,"nr_in_thread":2,"current_text":[35,32,73,110,115,116,114,117,99,116,105,111,110,115,10,10,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,98,101,32,118,105,115,105,98,108,101,32,105,110,32,116,104,101,32,112,111,108,107,97,100,111,116,47,115,117,98,115,116,114,97,116,101,32,116,101,108,101,109,101,116,114,121,44,32,103,111,32,91,104,101,114,101,93,40,104,116,116,112,115,58,47,47,116,101,108,101,109,101,116,114,121,46,112,111,108,107,97,100,111,116,46,105,111,47,41,46,32,78,111,116,101,32,116,104,97,116,32,102,111,114,32,119,105,110,100,111,119,115,32,97,110,100,32,97,114,109,118,55,32,40,114,97,115,112,98,101,114,114,121,32,112,105,41,44,32,121,111,117,32,110,101,101,100,32,116,111,32,97,100,100,32,97,32,116,101,108,101,109,101,116,114,121,32,102,108,97,103,32,97,116,32,115,116,97,114,116,117,112,32,40,115,101,101,32,97,112,112,108,105,99,97,98,108,101,32,115,101,116,117,112,32,110,111,100,101,41,46,10,10,73,102,32,121,111,117,114,32,96,86,97,108,105,100,97,116,111,114,96,32,104,97,115,32,101,120,112,101,114,105,101,110,99,101,100,32,115,111,109,101,32,111,102,32,116,104,101,32,110,101,116,119,111,114,107,105,110,103,32,105,115,115,117,101,115,32,100,101,115,99,114,105,98,101,100,32,91,104,101,114,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,115,117,98,115,116,114,97,116,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,47,105,115,115,117,101,115,47,54,56,41,44,32,99,111,110,115,105,100,101,114,32,114,101,115,116,97,114,116,105,110,103,32,121,111,117,114,32,110,111,100,101,32,97,116,32,114,101,103,117,108,97,114,32,105,110,116,101,114,118,97,108,115,46,32,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,97,117,116,111,109,97,116,101,32,116,104,105,115,32,112,114,111,99,101,115,115,44,32,99,111,110,115,105,100,101,114,32,114,117,110,110,105,110,103,32,121,111,117,114,32,110,111,100,101,32,97,115,32,97,32,91,115,101,114,118,105,99,101,93,40,35,114,117,110,45,97,115,45,97,45,115,101,114,118,105,99,101,41,46,10,10,42,42,78,111,116,101,42,42,10,65,102,116,101,114,32,105,110,116,114,111,100,117,99,105,110,103,32,96,77,101,109,98,101,114,115,104,105,112,115,96,32,116,111,32,116,104,101,32,112,108,97,116,102,111,114,109,44,32,119,101,32,102,111,117,110,100,32,105,116,32,116,111,32,98,101,32,99,111,110,102,117,115,105,110,103,32,116,111,32,104,97,118,101,32,97,32,99,111,110,99,101,112,116,32,111,102,32,98,111,116,104,32,96,65,99,99,111,117,110,116,115,96,32,97,110,100,32,96,77,101,109,98,101,114,115,104,105,112,115,96,46,32,87,101,32,97,114,101,32,105,110,32,116,104,101,32,112,114,111,99,101,115,115,32,111,102,32,114,101,110,97,109,105,110,103,32,116,104,101,32,96,65,99,99,111,117,110,116,115,96,32,116,111,32,116,104,101,32,96,75,101,121,115,96,44,32,98,117,116,32,116,104,101,114,101,32,97,114,101,32,115,116,105,108,108,32,116,114,97,99,101,115,32,111,102,32,96,65,99,99,111,117,110,116,96,32,115,104,111,119,105,110,103,32,117,112,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569085866},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[122,{"id":122,"thread_id":16,"nr_in_thread":3,"current_text":[35,35,32,87,105,110,100,111,119,115,10,10,42,32,69,118,101,114,121,32,116,105,109,101,32,115,111,109,101,116,104,105,110,103,32,105,115,32,119,114,105,116,116,101,110,32,105,110,32,96,60,98,114,97,99,107,101,116,115,62,96,44,32,105,116,32,109,101,97,110,115,32,121,111,117,32,104,97,118,101,32,116,111,32,114,101,112,108,97,99,101,32,116,104,105,115,32,119,105,116,104,32,121,111,117,114,32,105,110,112,117,116,44,32,119,105,116,104,111,117,116,32,116,104,101,32,96,60,62,96,46,10,42,32,87,104,101,110,32,115,111,109,101,116,104,105,110,103,32,105,115,32,119,114,105,116,116,101,110,32,105,110,32,96,34,100,111,117,98,108,101,95,113,117,111,116,101,115,34,96,44,32,105,116,32,109,101,97,110,115,32,116,104,101,32,110,117,109,98,101,114,47,100,97,116,97,32,119,105,108,108,32,118,97,114,121,32,100,101,112,101,110,100,105,110,103,32,111,110,32,121,111,117,114,32,110,111,100,101,32,111,114,32,116,104,101,32,99,117,114,114,101,110,116,32,115,116,97,116,101,32,111,102,32,116,104,101,32,98,108,111,99,107,99,104,97,105,110,46,10,42,32,70,111,114,32,116,101,114,109,105,110,97,108,32,99,111,109,109,97,110,100,115,44,32,96,62,96,32,109,101,97,110,115,32,121,111,117,32,109,117,115,116,32,116,121,112,101,32,119,104,97,116,32,99,111,109,101,115,32,97,102,116,101,114,32,116,104,97,116,32,111,110,32,119,105,110,100,111,119,115,32,97,110,100,32,109,97,99,32,114,101,115,112,101,99,116,105,118,101,108,121,46,32,96,35,96,32,77,101,97,110,115,32,105,116,39,115,32,106,117,115,116,32,97,32,99,111,109,109,101,110,116,47,101,120,112,108,97,110,97,116,105,111,110,44,32,97,110,100,32,109,117,115,116,32,110,111,116,32,98,101,32,116,121,112,101,100,46,10,96,96,96,10,35,32,84,104,105,115,32,105,115,32,106,117,115,116,32,97,32,99,111,109,109,101,110,116,44,32,100,111,110,39,116,32,116,121,112,101,32,111,114,32,112,97,115,116,101,32,105,116,32,105,110,32,121,111,117,114,32,116,101,114,109,105,110,97,108,33,10,62,32,99,100,32,67,58,92,106,111,121,115,116,114,101,97,109,45,110,111,100,101,45,49,46,48,46,48,45,119,105,110,100,111,119,115,45,120,56,54,95,54,52,10,35,32,79,110,108,121,32,116,121,112,101,47,112,97,115,116,101,32,116,104,101,32,34,99,100,32,67,58,92,106,111,121,115,116,114,101,97,109,45,110,111,100,101,45,119,105,110,100,111,119,115,45,120,54,52,34,44,32,110,111,116,32,116,104,101,32,112,114,101,99,101,100,105,110,103,32,62,32,33,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569085878},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[123,{"id":123,"thread_id":16,"nr_in_thread":4,"current_text":[35,35,35,35,32,83,101,116,117,112,32,78,111,100,101,10,10,71,101,116,32,116,104,101,32,98,105,110,97,114,121,32,91,104,101,114,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,115,117,98,115,116,114,97,116,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,47,114,101,108,101,97,115,101,115,47,100,111,119,110,108,111,97,100,47,118,49,46,48,46,48,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,45,49,46,48,46,48,45,119,105,110,100,111,119,115,45,120,56,54,95,54,52,46,122,105,112,41,46,32,84,111,32,109,97,107,101,32,116,104,101,32,97,99,116,117,97,108,32,99,111,109,109,97,110,100,115,32,116,104,101,32,115,97,109,101,32,102,111,114,32,97,108,108,32,117,115,101,114,115,44,32,73,39,109,32,103,111,105,110,103,32,116,111,32,115,97,118,101,32,105,116,32,96,67,58,92,96,32,97,110,100,32,117,110,122,105,112,32,105,116,32,116,104,101,114,101,46,32,96,67,58,92,106,111,121,115,116,114,101,97,109,45,110,111,100,101,45,49,46,48,46,48,45,119,105,110,100,111,119,115,45,120,56,54,95,54,52,96,46,32,70,101,101,108,32,102,114,101,101,32,116,111,32,115,116,111,114,101,32,105,116,32,115,111,109,101,119,104,101,114,101,32,101,108,115,101,44,32,106,117,115,116,32,109,97,107,101,32,115,117,114,101,32,121,111,117,32,117,115,101,32,116,104,101,32,99,111,114,114,101,99,116,32,112,97,116,104,32,105,110,32,116,104,101,32,105,110,115,116,114,117,99,116,105,111,110,115,32,116,104,97,116,32,102,111,108,108,111,119,115,46,10,10,73,102,32,121,111,117,32,100,111,110,39,116,32,104,97,118,101,32,105,116,44,32,100,111,119,110,108,111,97,100,32,77,105,99,114,111,115,111,102,116,32,86,105,115,117,97,108,32,83,116,117,100,105,111,32,67,43,43,32,114,117,110,116,105,109,101,32,100,105,115,116,114,105,98,117,116,97,98,108,101,32,50,48,49,53,32,91,104,101,114,101,93,40,104,116,116,112,115,58,47,47,119,119,119,46,109,105,99,114,111,115,111,102,116,46,99,111,109,47,101,110,45,105,101,47,100,111,119,110,108,111,97,100,47,100,101,116,97,105,108,115,46,97,115,112,120,63,105,100,61,52,56,49,52,53,41,46,32,32,10,10,71,101,116,32,116,104,101,32,109,105,115,115,105,110,103,32,83,83,76,32,108,105,98,114,97,114,105,101,115,32,91,104,101,114,101,93,40,104,116,116,112,115,58,47,47,105,110,100,121,46,102,117,108,103,97,110,46,99,111,109,47,83,83,76,47,111,112,101,110,115,115,108,45,49,46,48,46,50,113,45,120,54,52,95,56,54,45,119,105,110,54,52,46,122,105,112,41,44,32,101,120,116,114,97,99,116,44,32,97,110,100,32,109,111,118,101,32,116,104,101,32,102,105,108,101,115,32,96,115,115,108,101,97,121,51,50,46,100,108,108,96,32,97,110,100,32,96,108,105,98,101,97,121,51,50,46,100,108,108,96,32,116,111,32,96,67,58,92,106,111,121,115,116,114,101,97,109,45,110,111,100,101,45,119,105,110,100,111,119,115,45,120,54,52,96,46,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569085896},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[124,{"id":124,"thread_id":16,"nr_in_thread":5,"current_text":[79,112,101,110,32,96,67,111,109,109,97,110,100,32,80,114,111,109,112,116,96,32,40,116,121,112,101,32,105,110,32,99,109,100,46,46,46,32,97,102,116,101,114,32,99,108,105,99,107,105,110,103,32,119,105,110,100,111,119,115,32,98,117,116,116,111,110,41,58,10,10,96,96,96,10,62,32,99,100,32,67,58,92,106,111,121,115,116,114,101,97,109,45,110,111,100,101,45,49,46,48,46,48,45,119,105,110,100,111,119,115,45,120,56,54,95,54,52,10,62,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,46,101,120,101,10,35,32,73,102,32,121,111,117,32,119,97,110,116,32,121,111,117,114,32,110,111,100,101,32,116,111,32,104,97,118,101,32,97,32,110,111,110,45,114,97,110,100,111,109,32,105,100,101,110,116,105,102,105,101,114,58,10,62,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,46,101,120,101,32,45,45,110,97,109,101,32,60,110,111,100,101,110,97,109,101,62,10,35,32,73,102,32,121,111,117,32,119,97,110,116,32,121,111,117,114,32,110,111,100,101,32,116,111,32,115,104,111,119,32,117,112,32,105,110,32,116,104,101,32,116,101,108,101,109,101,116,114,121,58,32,104,116,116,112,115,58,47,47,116,101,108,101,109,101,116,114,121,46,112,111,108,107,97,100,111,116,46,105,111,47,10,62,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,46,101,120,101,32,45,45,110,97,109,101,32,60,110,111,100,101,110,97,109,101,62,32,45,45,116,101,108,101,109,101,116,114,121,45,117,114,108,32,119,115,58,47,47,116,101,108,101,109,101,116,114,121,46,112,111,108,107,97,100,111,116,46,105,111,58,49,48,50,52,47,10,10,35,32,78,111,116,101,58,32,100,117,101,32,116,111,32,115,111,109,101,32,105,115,115,117,101,115,32,119,105,116,104,32,111,117,114,32,110,111,100,101,115,32,103,101,116,116,105,110,103,32,109,105,120,101,100,32,117,112,32,119,105,116,104,32,110,111,100,101,115,32,102,114,111,109,32,116,104,101,32,99,104,97,105,110,88,32,110,101,116,119,111,114,107,32,40,115,101,101,32,116,101,108,101,109,101,116,114,121,32,108,105,110,107,41,44,10,35,32,105,116,32,109,105,103,104,116,32,104,101,108,112,32,121,111,117,114,32,117,112,116,105,109,101,32,98,121,32,97,108,115,111,32,112,97,115,115,105,110,103,58,10,45,45,105,110,45,112,101,101,114,115,32,49,48,48,32,45,45,111,117,116,45,112,101,101,114,115,32,49,48,48,10,35,32,97,102,116,101,114,32,116,104,101,32,111,116,104,101,114,32,102,108,97,103,115,46,32,89,111,117,32,99,97,110,32,99,104,111,111,115,101,32,97,110,121,32,110,117,109,98,101,114,32,121,111,117,32,108,105,107,101,44,32,98,117,116,32,100,101,102,97,117,108,116,32,105,115,32,50,53,46,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569085908},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[125,{"id":125,"thread_id":16,"nr_in_thread":6,"current_text":[89,111,117,114,32,110,111,100,101,32,115,104,111,117,108,100,32,110,111,119,32,115,116,97,114,116,32,115,121,110,99,105,110,103,32,116,104,101,32,98,108,111,99,107,99,104,97,105,110,46,32,84,104,101,32,111,117,116,112,117,116,32,115,104,111,117,108,100,32,108,111,111,107,32,108,105,107,101,32,116,104,105,115,58,10,96,96,96,10,74,111,121,115,116,114,101,97,109,32,78,111,100,101,10,32,32,118,101,114,115,105,111,110,32,34,86,101,114,115,105,111,110,34,45,34,121,111,117,114,95,79,83,34,10,32,32,98,121,32,74,111,121,115,116,114,101,97,109,44,32,50,48,49,57,10,67,104,97,105,110,32,115,112,101,99,105,102,105,99,97,116,105,111,110,58,32,74,111,121,115,116,114,101,97,109,32,84,101,115,116,110,101,116,32,118,50,10,78,111,100,101,32,110,97,109,101,58,32,34,110,111,100,101,110,97,109,101,34,10,82,111,108,101,115,58,32,70,85,76,76,10,71,101,110,101,114,97,116,101,100,32,97,32,110,101,119,32,107,101,121,112,97,105,114,58,32,34,115,111,109,101,95,108,111,110,103,95,111,117,112,117,116,34,10,73,110,105,116,105,97,108,105,122,105,110,103,32,71,101,110,101,115,105,115,32,98,108,111,99,107,47,115,116,97,116,101,32,40,34,115,111,109,101,95,108,111,110,103,95,111,117,112,117,116,34,41,10,76,111,97,100,101,100,32,98,108,111,99,107,45,116,105,109,101,32,61,32,54,32,115,101,99,111,110,100,115,32,102,114,111,109,32,103,101,110,101,115,105,115,32,111,110,32,102,105,114,115,116,45,108,97,117,110,99,104,32,115,116,97,114,116,117,112,46,10,66,101,115,116,32,98,108,111,99,107,58,32,35,48,10,76,111,99,97,108,32,110,111,100,101,32,97,100,100,114,101,115,115,32,105,115,58,32,47,105,112,52,47,48,46,48,46,48,46,48,47,116,99,112,47,51,48,51,51,51,47,112,50,112,47,34,121,111,117,114,95,110,111,100,101,95,107,101,121,34,10,76,105,115,116,101,110,105,110,103,32,102,111,114,32,110,101,119,32,99,111,110,110,101,99,116,105,111,110,115,32,111,110,32,49,50,55,46,48,46,48,46,49,58,57,57,52,52,46,10,46,46,46,10,46,46,46,10,83,121,110,99,105,110,103,44,32,116,97,114,103,101,116,61,35,34,98,108,111,99,107,95,104,101,105,103,104,116,34,32,40,34,110,34,32,112,101,101,114,115,41,44,32,98,101,115,116,58,32,35,34,115,121,110,99,101,100,95,104,101,105,103,104,116,34,32,40,34,104,97,115,104,95,111,102,95,115,121,110,99,101,100,95,116,105,112,34,41,44,32,102,105,110,97,108,105,122,101,100,32,35,48,32,40,34,104,97,115,104,95,111,102,95,102,105,110,97,108,105,122,101,100,95,116,105,112,34,41,44,32,226,172,135,32,34,100,111,119,110,108,111,97,100,95,115,112,101,101,100,34,105,66,47,115,32,226,172,134,32,34,117,112,108,111,97,100,95,115,112,101,101,100,34,107,105,66,47,115,10,96,96,96,10,70,114,111,109,32,116,104,101,32,108,97,115,116,32,108,105,110,101,44,32,110,111,116,105,99,101,32,96,116,97,114,103,101,116,61,35,34,98,108,111,99,107,95,104,101,105,103,104,116,34,96,32,97,110,100,32,96,98,101,115,116,58,32,35,34,115,121,110,99,101,100,95,104,101,105,103,104,116,34,96,10,87,104,101,110,32,116,104,101,32,96,116,97,114,103,101,116,61,35,98,108,111,99,107,95,104,101,105,103,104,116,96,105,115,32,116,104,101,32,115,97,109,101,32,97,115,32,96,98,101,115,116,58,32,35,34,115,121,110,99,101,100,95,104,101,105,103,104,116,34,96,44,32,121,111,117,114,32,110,111,100,101,32,105,115,32,102,117,108,108,121,32,115,121,110,99,101,100,33,10,10,42,42,75,101,101,112,32,116,104,101,32,116,101,114,109,105,110,97,108,32,119,105,110,100,111,119,32,111,112,101,110,46,42,42],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569085920},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[126,{"id":126,"thread_id":16,"nr_in_thread":7,"current_text":[35,35,35,35,32,75,101,121,115,10,10,78,111,119,32,121,111,117,32,110,101,101,100,32,116,111,32,103,101,110,101,114,97,116,101,32,121,111,117,114,32,96,107,101,121,115,96,32,105,110,32,116,104,101,32,96,80,105,111,110,101,101,114,32,97,112,112,96,46,10,10,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,104,97,118,101,32,116,104,101,32,97,112,112,108,105,99,97,116,105,111,110,32,116,97,108,107,32,116,111,32,121,111,117,114,32,111,119,110,32,110,111,100,101,44,32,99,104,111,111,115,101,32,96,83,101,116,116,105,110,103,115,96,32,105,110,32,116,104,101,32,115,105,100,101,98,97,114,44,32,97,110,100,32,99,104,97,110,103,101,32,116,104,101,32,96,114,101,109,111,116,101,32,110,111,100,101,47,101,110,100,112,111,105,110,116,32,116,111,32,99,111,110,110,101,99,116,32,116,111,96,32,116,111,32,108,111,99,97,108,32,110,111,100,101,46,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569086082},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[127,{"id":127,"thread_id":16,"nr_in_thread":8,"current_text":[35,35,35,35,32,71,101,110,101,114,97,116,101,32,121,111,117,114,32,107,101,121,115,10,10,87,104,105,108,101,32,116,104,101,32,110,111,100,101,32,105,115,32,115,121,110,99,105,110,103,44,32,121,111,117,32,99,97,110,32,115,116,97,114,116,32,116,104,101,32,112,114,111,99,101,115,115,32,111,102,32,115,101,116,116,105,110,103,32,117,112,32,116,104,101,32,114,101,115,116,46,10,10,49,46,32,71,111,32,116,111,32,116,104,101,32,91,80,105,111,110,101,101,114,32,65,112,112,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,112,105,111,110,101,101,114,41,44,32,97,110,100,32,115,101,108,101,99,116,32,96,77,121,32,107,101,121,115,96,32,105,110,32,116,104,101,32,115,105,100,101,98,97,114,46,32,67,108,105,99,107,32,116,104,101,32,96,67,114,101,97,116,101,32,107,101,121,115,96,32,116,97,98,46,10,10,78,97,109,101,115,32,97,114,101,32,101,110,116,105,114,101,108,121,32,111,112,116,105,111,110,97,108,44,32,98,117,116,32,116,104,101,32,110,101,120,116,32,115,116,101,112,115,32,119,105,108,108,32,98,101,32,101,97,115,105,101,114,32,105,102,32,121,111,117,32,102,111,108,108,111,119,32,116,104,101,32,115,121,115,116,101,109,32,115,117,103,103,101,115,116,101,100,46,10,10,50,46,32,78,97,109,101,32,121,111,117,114,32,102,105,114,115,116,32,107,101,121,112,97,105,114,32,96,115,101,115,115,105,111,110,96,44,32,111,114,32,97,116,32,108,101,97,115,116,32,115,111,109,101,116,104,105,110,103,32,116,104,97,116,32,99,111,110,116,97,105,110,115,32,116,104,101,32,119,111,114,100,46,32,73,101,32,96,106,111,104,110,45,100,111,101,45,115,101,115,115,105,111,110,45,107,101,121,96,46,10,51,46,32,73,110,32,116,104,101,32,100,114,111,112,100,111,119,110,32,105,110,32,116,104,101,32,102,105,101,108,100,32,98,101,108,111,119,44,32,99,104,111,111,115,101,32,96,82,97,119,32,115,101,101,100,96,46,32,78,111,116,101,32,116,104,97,116,32,101,97,99,104,32,116,105,109,101,32,121,111,117,32,116,111,103,103,108,101,32,98,101,116,119,101,101,110,32,96,77,110,101,109,111,110,105,99,96,32,97,110,100,32,96,82,97,119,32,115,101,101,100,96,44,32,121,111,117,32,119,105,108,108,32,103,101,110,101,114,97,116,101,32,97,32,110,101,119,32,107,101,121,32,112,97,105,114,46,10,52,46,32,67,111,112,121,32,116,104,101,32,96,34,48,120,89,111,117,114,76,111,110,103,83,101,115,115,105,111,110,82,97,119,83,101,101,100,34,96,44,32,97,110,100,32,115,97,118,101,32,105,116,32,115,111,109,101,119,104,101,114,101,32,115,97,102,101,32,45,32,108,105,107,101,32,97,32,112,97,115,115,119,111,114,100,32,109,97,110,97,103,101,114,46,32,89,111,117,32,110,101,101,100,32,116,104,105,115,32,108,97,116,101,114,33],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569086202},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[128,{"id":128,"thread_id":16,"nr_in_thread":9,"current_text":[53,46,32,67,104,111,111,115,101,32,97,32,112,97,115,115,119,111,114,100,32,40,116,104,105,115,32,107,101,121,32,119,105,108,108,32,104,111,108,100,32,97,108,108,32,121,111,117,114,32,116,111,107,101,110,115,33,41,10,54,46,32,70,111,114,32,116,104,101,32,96,115,101,115,115,105,111,110,96,32,107,101,121,44,32,121,111,117,32,97,108,115,111,32,110,101,101,100,32,116,111,32,115,101,108,101,99,116,32,96,69,100,119,97,114,100,115,32,40,101,100,50,53,53,49,57,41,96,32,102,114,111,109,32,116,104,101,32,96,65,100,118,97,110,99,101,100,32,99,114,101,97,116,105,111,110,32,111,112,116,105,111,110,115,96,46,10,55,46,32,67,108,105,99,107,32,96,83,97,118,101,96,32,45,62,32,96,67,114,101,97,116,101,32,97,110,100,32,98,97,99,107,117,112,32,107,101,121,115,96,46,10,10,68,101,112,101,110,100,105,110,103,32,111,110,32,121,111,117,114,32,98,114,111,119,115,101,114,44,32,121,111,117,32,109,105,103,104,116,32,104,97,118,101,32,116,111,32,99,111,110,102,105,114,109,32,115,97,118,105,110,103,32,116,104,101,32,96,34,53,89,111,117,114,74,111,121,83,101,115,115,105,111,110,65,100,100,114,101,115,115,46,106,115,111,110,34,96,46,10,10,82,101,112,101,97,116,32,116,104,101,32,115,116,101,112,115,32,116,119,111,32,109,111,114,101,32,116,105,109,101,115,44,32,98,117,116,32,119,105,116,104,32,100,105,102,102,101,114,101,110,116,32,110,97,109,101,115,44,32,108,101,97,118,105,110,103,32,121,111,117,32,119,105,116,104,32,116,104,114,101,101,32,115,101,116,115,32,111,102,32,107,101,121,115,32,97,115,32,115,104,111,119,110,32,98,101,108,111,119,58,10,42,32,96,115,116,97,115,104,96,10,42,32,96,99,111,110,116,114,111,108,108,101,114,96,10,42,32,96,115,101,115,115,105,111,110,96,10,10,78,111,116,101,32,116,104,97,116,32,121,111,117,32,111,110,108,121,32,42,115,116,114,105,99,116,108,121,32,110,101,101,100,42,32,116,104,101,32,82,97,119,32,115,101,101,100,32,102,111,114,32,116,104,101,32,96,115,101,115,115,105,111,110,96,32,107,101,121,112,97,105,114,44,32,98,117,116,32,105,116,39,115,32,115,97,102,101,114,32,116,111,32,100,111,32,105,116,32,102,111,114,32,97,108,108,32,111,102,32,116,104,101,109,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569086214},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[129,{"id":129,"thread_id":16,"nr_in_thread":10,"current_text":[35,35,35,35,32,82,101,45,115,116,97,114,116,32,121,111,117,114,32,110,111,100,101,32,97,115,32,97,32,118,97,108,105,100,97,116,111,114,10,10,73,102,32,121,111,117,32,104,97,118,101,110,39,116,32,97,108,114,101,97,100,121,44,32,103,101,110,101,114,97,116,101,32,121,111,117,114,32,107,101,121,115,46,10,10,49,46,32,79,112,101,110,32,116,104,101,32,116,101,114,109,105,110,97,108,32,116,104,97,116,32,105,115,32,114,117,110,110,105,110,103,32,121,111,117,114,32,110,111,100,101,44,32,97,110,100,32,107,105,108,108,32,116,104,101,32,115,101,115,115,105,111,110,32,119,105,116,104,32,96,99,116,114,108,43,99,96,32,40,116,119,105,99,101,41,46,10,32,32,32,32,42,32,79,110,32,87,105,110,100,111,119,115,44,32,116,104,101,32,102,105,114,115,116,32,96,99,116,114,108,43,99,96,32,119,105,108,108,32,112,114,111,100,117,99,101,32,97,32,108,111,110,103,32,97,110,100,32,99,111,110,102,117,115,105,110,103,32,111,117,116,112,117,116,46,10,50,46,32,82,101,115,116,97,114,116,32,105,116,32,97,103,97,105,110,32,119,105,116,104,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,99,111,109,109,97,110,100,58,10,96,96,96,10,62,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,46,101,120,101,32,45,45,118,97,108,105,100,97,116,111,114,32,45,45,107,101,121,32,60,48,120,77,121,76,111,110,103,82,97,119,83,101,101,100,62,10,35,32,73,102,32,121,111,117,32,119,97,110,116,32,121,111,117,114,32,110,111,100,101,32,116,111,32,104,97,118,101,32,97,32,110,111,110,45,114,97,110,100,111,109,32,105,100,101,110,116,105,102,105,101,114,58,10,62,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,46,101,120,101,32,45,45,110,97,109,101,32,60,110,111,100,101,110,97,109,101,62,32,45,45,118,97,108,105,100,97,116,111,114,32,45,45,107,101,121,32,60,48,120,89,111,117,114,76,111,110,103,83,101,115,115,105,111,110,82,97,119,83,101,101,100,62,10,35,32,73,102,32,121,111,117,32,97,108,115,111,32,119,97,110,116,32,105,116,32,115,104,111,119,32,117,112,32,105,110,32,116,101,108,101,109,101,116,114,121,58,10,62,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,46,101,120,101,32,45,45,110,97,109,101,32,60,110,111,100,101,110,97,109,101,62,32,45,45,116,101,108,101,109,101,116,114,121,45,117,114,108,32,119,115,58,47,47,116,101,108,101,109,101,116,114,121,46,112,111,108,107,97,100,111,116,46,105,111,58,49,48,50,52,47,32,45,45,118,97,108,105,100,97,116,111,114,32,45,45,107,101,121,32,60,48,120,89,111,117,114,76,111,110,103,83,101,115,115,105,111,110,82,97,119,83,101,101,100,62,10,10,35,32,78,111,116,101,58,32,100,117,101,32,116,111,32,115,111,109,101,32,105,115,115,117,101,115,32,119,105,116,104,32,111,117,114,32,110,111,100,101,115,32,103,101,116,116,105,110,103,32,109,105,120,101,100,32,117,112,32,119,105,116,104,32,110,111,100,101,115,32,102,114,111,109,32,116,104,101,32,99,104,97,105,110,88,32,110,101,116,119,111,114,107,32,40,115,101,101,32,116,101,108,101,109,101,116,114,121,32,108,105,110,107,41,44,10,35,32,105,116,32,109,105,103,104,116,32,104,101,108,112,32,121,111,117,114,32,117,112,116,105,109,101,32,98,121,32,97,108,115,111,32,112,97,115,115,105,110,103,58,10,45,45,105,110,45,112,101,101,114,115,32,49,48,48,32,45,45,111,117,116,45,112,101,101,114,115,32,49,48,48,10,35,32,97,102,116,101,114,32,116,104,101,32,111,116,104,101,114,32,102,108,97,103,115,46,32,89,111,117,32,99,97,110,32,99,104,111,111,115,101,32,97,110,121,32,110,117,109,98,101,114,32,121,111,117,32,108,105,107,101,44,32,98,117,116,32,116,104,101,32,100,101,102,97,117,108,116,32,105,115,32,50,53,46,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569086262},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[130,{"id":130,"thread_id":16,"nr_in_thread":11,"current_text":[84,104,105,115,32,116,105,109,101,44,32,116,104,101,32,111,117,116,112,117,116,32,115,104,111,117,108,100,32,115,104,111,119,32,97,32,115,108,105,103,104,116,108,121,32,100,105,102,102,101,114,101,110,116,32,115,116,97,114,116,117,112,32,111,117,116,112,117,116,58,10,96,96,96,10,74,111,121,115,116,114,101,97,109,32,78,111,100,101,10,32,32,118,101,114,115,105,111,110,32,34,118,101,114,115,105,111,110,34,45,34,121,111,117,114,95,79,83,34,10,32,32,98,121,32,74,111,121,115,116,114,101,97,109,44,32,50,48,49,57,10,67,104,97,105,110,32,115,112,101,99,105,102,105,99,97,116,105,111,110,58,32,74,111,121,115,116,114,101,97,109,32,83,116,97,103,105,110,103,32,84,101,115,116,110,101,116,10,78,111,100,101,32,110,97,109,101,58,32,34,110,111,100,101,110,97,109,101,34,10,82,111,108,101,115,58,32,65,85,84,72,79,82,73,84,89,10,66,101,115,116,32,98,108,111,99,107,58,32,35,34,115,121,110,99,101,100,95,104,101,105,103,104,116,34,10,76,111,99,97,108,32,110,111,100,101,32,97,100,100,114,101,115,115,32,105,115,58,32,47,105,112,52,47,48,46,48,46,48,46,48,47,116,99,112,47,51,48,51,51,51,47,112,50,112,47,34,121,111,117,114,95,110,111,100,101,95,107,101,121,34,10,76,105,115,116,101,110,105,110,103,32,102,111,114,32,110,101,119,32,99,111,110,110,101,99,116,105,111,110,115,32,111,110,32,49,50,55,46,48,46,48,46,49,58,57,57,52,52,46,10,85,115,105,110,103,32,97,117,116,104,111,114,105,116,121,32,107,101,121,32,32,34,53,89,111,117,114,74,111,121,83,101,115,115,105,111,110,65,100,100,114,101,115,115,34,32,32,35,32,83,101,101,32,78,111,116,101,10,46,46,46,10,96,96,96,10,42,42,78,111,116,101,42,42,10,73,102,32,121,111,117,114,32,96,115,101,115,115,105,111,110,96,32,119,97,115,32,103,101,110,101,114,97,116,101,100,32,97,115,32,96,83,99,104,110,111,114,114,107,101,108,32,40,115,114,50,53,53,49,57,41,96,44,32,105,116,32,119,105,108,108,32,115,104,111,119,32,97,32,99,111,109,112,108,101,116,101,108,121,32,100,105,102,102,101,114,101,110,116,32,97,100,100,114,101,115,115,46,32,73,102,32,116,104,105,115,32,104,97,112,112,101,110,115,44,32,103,111,32,98,97,99,107,32,97,110,100,32,103,101,110,101,114,97,116,101,32,97,32,110,101,119,32,91,115,101,115,115,105,111,110,32,107,101,121,93,40,35,103,101,110,101,114,97,116,101,45,121,111,117,114,45,107,101,121,115,41,32,119,105,116,104,32,96,69,100,119,97,114,100,115,32,40,101,100,50,53,53,49,57,41,96,46,32,73,102,32,121,111,117,32,100,111,110,39,116,44,32,121,111,117,114,32,110,111,100,101,32,119,105,108,108,32,116,114,121,32,116,111,32,115,105,103,110,32,98,108,111,99,107,115,32,119,105,116,104,32,116,104,101,32,119,114,111,110,103,32,107,101,121,46,32,65,115,32,97,32,99,111,110,115,101,113,117,101,110,99,101,44,32,121,111,117,32,119,105,108,108,32,103,101,116,32,115,108,97,115,104,101,100,32,97,110,100,32,107,105,99,107,101,100,32,111,117,116,32,97,115,32,97,32,96,86,97,108,105,100,97,116,111,114,96,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569086274},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[131,{"id":131,"thread_id":16,"nr_in_thread":12,"current_text":[35,35,35,35,32,70,105,110,97,108,32,83,116,101,112,10,10,78,111,119,32,105,116,39,115,32,116,105,109,101,32,116,111,32,99,111,110,102,105,103,117,114,101,32,121,111,117,114,32,107,101,121,115,32,116,111,32,115,116,97,114,116,32,118,97,108,105,100,97,116,105,110,103,46,32],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569086298},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[132,{"id":132,"thread_id":16,"nr_in_thread":13,"current_text":[35,35,35,35,32,67,111,110,102,105,103,117,114,101,32,121,111,117,114,32,118,97,108,105,100,97,116,111,114,32,107,101,121,115,10,10,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,97,32,96,86,97,108,105,100,97,116,111,114,96,44,32,121,111,117,32,110,101,101,100,32,116,111,32,115,116,97,107,101,46,32,78,111,116,101,32,116,104,97,116,32,121,111,117,32,109,97,121,32,104,97,118,101,32,116,111,32,114,101,102,114,101,115,104,32,121,111,117,114,32,98,114,111,119,115,101,114,32,105,102,32,121,111,117,39,114,101,32,110,111,116,32,115,101,101,105,110,103,32,116,104,101,32,111,112,116,105,111,110,115,32,114,105,103,104,116,32,97,119,97,121,46,10,10,42,42,73,77,80,79,82,84,65,78,84,58,42,42,32,82,101,97,100,32,115,116,101,112,32,49,51,46,32,99,97,114,101,102,117,108,108,121,46,32,89,111,117,114,32,110,111,100,101,32,110,101,101,100,115,32,116,111,32,98,101,32,102,117,108,108,121,32,115,121,110,99,101,100,44,32,98,101,102,111,114,101,32,112,114,111,99,101,101,100,105,110,103,32,116,111,32,115,116,101,112,32,49,52,46,10,10,49,46,32,83,116,105,108,108,32,105,110,32,116,104,101,32,96,77,121,32,75,101,121,115,96,32,115,105,100,101,98,97,114,32,111,102,32,116,104,101,32,91,80,105,111,110,101,101,114,32,65,112,112,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,112,105,111,110,101,101,114,41,44,32,99,104,111,111,115,101,32,121,111,117,114,32,96,115,116,97,115,104,96,32,107,101,121,46,10,50,46,32,67,108,105,99,107,32,116,104,101,32,96,70,114,101,101,32,84,111,107,101,110,115,96,32,108,105,110,107,32,98,101,108,111,119,32,121,111,117,114,32,97,100,100,114,101,115,115,44,32,91,111,114,32,99,108,105,99,107,32,104,101,114,101,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,102,97,117,99,101,116,41,46,32,83,111,108,118,101,32,116,104,101,32,99,97,112,116,99,104,97,44,32,97,110,100,32,121,111,117,32,115,104,111,117,108,100,32,114,101,99,101,105,118,101,32,116,111,107,101,110,115,46,10,51,46,32,83,101,110,100,32,115,111,109,101,32,116,111,107,101,110,115,32,116,111,32,121,111,117,114,32,96,99,111,110,116,114,111,108,108,101,114,96,46,32,73,116,32,110,101,101,100,115,32,116,111,32,112,101,114,102,111,114,109,32,97,116,32,108,101,97,115,116,32,116,119,111,32,116,114,97,110,115,97,99,116,105,111,110,115,44,32,98,117,116,32,98,101,116,116,101,114,32,116,111,32,115,101,110,100,32,126,49,48,46,10,52,46,32,78,111,119,44,32,99,108,105,99,107,32,96,86,97,108,105,100,97,116,111,114,115,96,32,105,110,32,116,104,101,32,115,105,100,101,98,97,114,44,32,97,110,100,32,116,104,101,110,32,116,104,101,32,96,86,97,108,105,100,97,116,111,114,32,83,116,97,107,105,110,103,96,32,116,97,98,46,10,53,46,32,76,111,99,97,116,101,32,116,104,101,32,97,100,100,114,101,115,115,47,107,101,121,32,110,97,109,101,100,32,96,115,116,97,115,104,96,44,32,97,110,100,32,99,108,105,99,107,32,96,66,111,110,100,32,70,117,110,100,115,96,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569086322},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[133,{"id":133,"thread_id":16,"nr_in_thread":14,"current_text":[54,46,32,73,110,32,116,104,101,32,112,111,112,117,112,32,119,105,110,100,111,119,44,32,99,104,111,111,115,101,32,121,111,117,114,32,96,99,111,110,116,114,111,108,108,101,114,96,32,97,115,32,116,104,101,32,96,99,111,110,116,114,111,108,108,101,114,32,97,99,99,111,117,110,116,96,46,10,55,46,32,69,110,116,101,114,32,116,104,101,32,97,109,111,117,110,116,32,121,111,117,32,119,97,110,116,32,116,111,32,115,116,97,107,101,32,105,110,32,116,104,101,32,96,118,97,108,117,101,32,98,111,110,100,101,100,96,32,102,105,101,108,100,46,32,40,73,116,32,99,111,117,108,100,32,98,101,32,119,105,115,101,32,116,111,32,108,101,97,118,101,32,97,32,99,111,117,112,108,101,32,111,102,32,74,111,121,32,108,101,102,116,41,46,10,56,46,32,73,110,32,116,104,101,32,96,112,97,121,109,101,110,116,32,100,101,115,116,105,110,97,116,105,111,110,96,32,100,114,111,112,100,111,119,110,44,32,116,104,101,114,101,32,97,114,101,32,116,104,114,101,101,32,111,112,116,105,111,110,115,46,32,83,101,108,101,99,116,32,116,104,101,32,100,101,102,97,117,108,116,32,96,83,116,97,115,104,32,97,99,99,111,117,110,116,32,40,105,110,99,114,101,97,115,101,32,116,104,101,32,97,109,111,117,110,116,32,97,116,32,115,116,97,107,101,41,96,44,32,111,114,32,103,111,32,116,111,32,91,97,100,118,97,110,99,101,100,93,40,35,98,111,110,100,105,110,103,45,112,114,101,102,101,114,101,110,99,101,115,41,46,10,57,46,32,84,104,101,32,98,117,116,116,111,110,32,96,98,111,110,100,96,32,115,104,111,117,108,100,32,98,101,32,104,105,103,104,108,105,103,104,116,101,100,32,110,111,119,46,32,67,108,105,99,107,32,105,116,46,10,49,48,46,32,84,121,112,101,32,105,110,32,121,111,117,114,32,112,97,115,115,119,111,114,100,32,105,110,32,116,104,101,32,96,117,110,108,111,99,107,32,119,105,116,104,32,112,97,115,115,119,111,114,100,96,32,102,105,101,108,100,32,97,110,100,32,99,108,105,99,107,32,96,115,105,103,110,32,97,110,100,32,115,117,98,109,105,116,96,46,10,49,49,46,32,89,111,117,114,32,96,99,111,110,116,114,111,108,108,101,114,96,32,97,99,99,111,117,110,116,32,115,104,111,117,108,100,32,110,111,119,32,115,104,111,119,32,97,32,96,83,101,116,32,83,101,115,115,105,111,110,32,75,101,121,96,32,98,117,116,116,111,110,46,32,67,108,105,99,107,32,105,116,46,10,49,50,46,32,73,110,32,116,104,101,32,112,111,112,117,112,44,32,115,101,108,101,99,116,32,121,111,117,114,32,96,115,101,115,115,105,111,110,96,32,97,115,32,121,111,117,114,32,96,115,101,115,115,105,111,110,32,107,101,121,96,32,105,110,32,116,104,101,32,100,114,111,112,100,111,119,110,46,32,67,111,110,102,105,114,109,44,32,115,105,103,110,32,97,110,100,32,115,117,98,109,105,116,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569086340},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[134,{"id":134,"thread_id":16,"nr_in_thread":15,"current_text":[49,51,46,32,89,111,117,32,110,101,101,100,32,116,111,32,99,104,101,99,107,32,121,111,117,114,32,110,111,100,101,44,32,119,104,105,99,104,32,121,111,117,32,115,116,97,114,116,101,100,32,101,97,114,108,105,101,114,46,32,73,110,32,116,104,101,32,111,117,116,112,117,116,32,96,116,97,114,103,101,116,61,35,34,98,108,111,99,107,95,104,101,105,103,104,116,34,96,32,115,104,111,117,108,100,32,101,113,117,97,108,32,96,98,101,115,116,58,32,35,34,115,121,110,99,101,100,95,104,101,105,103,104,116,34,96,46,32,68,111,32,110,111,116,32,112,114,111,99,101,101,100,32,98,101,102,111,114,101,32,116,104,111,115,101,32,116,119,111,32,118,97,108,117,101,115,32,97,114,101,32,105,100,101,110,116,105,99,97,108,44,32,97,115,32,121,111,117,114,32,110,111,100,101,32,119,105,108,108,32,98,101,32,100,114,111,112,112,101,100,32,111,117,116,32,102,114,111,109,32,116,104,101,32,118,97,108,105,100,97,116,111,114,115,32,105,102,32,121,111,117,114,32,110,111,100,101,32,105,115,32,110,111,116,32,102,117,108,108,121,32,115,121,110,99,101,100,46,32,73,102,32,121,111,117,32,100,105,100,32,115,116,97,114,116,32,121,111,117,114,32,110,111,100,101,32,119,105,116,104,32,96,45,45,110,97,109,101,32,60,110,111,100,101,110,97,109,101,62,96,32,112,97,114,97,109,101,116,101,114,44,32,116,104,101,110,32,121,111,117,32,97,108,115,111,32,99,97,110,32,99,104,101,99,107,32,105,102,32,121,111,117,114,32,110,111,100,101,32,105,115,32,102,117,108,108,121,32,115,121,110,99,101,100,32,102,114,111,109,32,91,84,101,108,101,109,101,116,114,121,93,40,104,116,116,112,115,58,47,47,116,101,108,101,109,101,116,114,121,46,112,111,108,107,97,100,111,116,46,105,111,47,35,108,105,115,116,47,74,111,121,115,116,114,101,97,109,37,50,48,84,101,115,116,110,101,116,37,50,48,118,50,41,46,10,49,52,46,32,89,111,117,114,32,96,99,111,110,116,114,111,108,108,101,114,96,32,97,99,99,111,117,110,116,32,115,104,111,117,108,100,32,110,111,119,32,115,104,111,119,32,97,32,96,86,97,108,105,100,97,116,101,96,32,98,117,116,116,111,110,46,32,67,108,105,99,107,32,105,116,46,10,49,53,46,32,89,111,117,32,99,97,110,32,108,101,97,118,101,32,116,104,101,32,96,117,110,115,116,97,107,101,32,116,104,114,101,115,104,111,108,100,96,32,97,110,100,32,96,112,97,121,109,101,110,116,32,112,114,101,102,101,114,101,110,99,101,115,96,32,97,115,32,100,101,102,97,117,108,116,115,44,32,111,114,32,103,111,32,116,111,32,91,97,100,118,97,110,99,101,100,93,40,35,118,97,108,105,100,97,116,105,110,103,45,112,114,101,102,101,114,101,110,99,101,115,41,46,32,67,111,110,102,105,114,109,44,32,115,105,103,110,32,97,110,100,32,115,117,98,109,105,116,46,10,10,82,101,102,114,101,115,104,32,121,111,117,114,32,98,114,111,119,115,101,114,44,32,97,110,100,32,115,101,108,101,99,116,32,116,104,101,32,96,86,97,108,105,100,97,116,111,114,32,79,118,101,114,118,105,101,119,96,32,116,97,98,46,32,73,102,32,121,111,117,114,32,97,99,99,111,117,110,116,32,115,104,111,119,115,32,117,110,100,101,114,32,96,110,101,120,116,32,117,112,96,44,32,119,97,105,116,32,102,111,114,32,116,104,101,32,110,101,120,116,32,96,101,114,97,96,44,32,97,110,100,32,121,111,117,32,119,105,108,108,32,98,101,32,109,111,118,101,100,32,116,111,32,116,104,101,32,96,118,97,108,105,100,97,116,111,114,115,96,32,108,105,115,116,46,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569086364},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[135,{"id":135,"thread_id":17,"nr_in_thread":2,"current_text":[35,32,73,110,115,116,114,117,99,116,105,111,110,115,10,10,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,98,101,32,118,105,115,105,98,108,101,32,105,110,32,116,104,101,32,112,111,108,107,97,100,111,116,47,115,117,98,115,116,114,97,116,101,32,116,101,108,101,109,101,116,114,121,44,32,103,111,32,91,104,101,114,101,93,40,104,116,116,112,115,58,47,47,116,101,108,101,109,101,116,114,121,46,112,111,108,107,97,100,111,116,46,105,111,47,41,46,32,78,111,116,101,32,116,104,97,116,32,102,111,114,32,119,105,110,100,111,119,115,32,97,110,100,32,97,114,109,118,55,32,40,114,97,115,112,98,101,114,114,121,32,112,105,41,44,32,121,111,117,32,110,101,101,100,32,116,111,32,97,100,100,32,97,32,116,101,108,101,109,101,116,114,121,32,102,108,97,103,32,97,116,32,115,116,97,114,116,117,112,32,40,115,101,101,32,97,112,112,108,105,99,97,98,108,101,32,115,101,116,117,112,32,110,111,100,101,41,46,10,10,73,102,32,121,111,117,114,32,96,86,97,108,105,100,97,116,111,114,96,32,104,97,115,32,101,120,112,101,114,105,101,110,99,101,100,32,115,111,109,101,32,111,102,32,116,104,101,32,110,101,116,119,111,114,107,105,110,103,32,105,115,115,117,101,115,32,100,101,115,99,114,105,98,101,100,32,91,104,101,114,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,115,117,98,115,116,114,97,116,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,47,105,115,115,117,101,115,47,54,56,41,44,32,99,111,110,115,105,100,101,114,32,114,101,115,116,97,114,116,105,110,103,32,121,111,117,114,32,110,111,100,101,32,97,116,32,114,101,103,117,108,97,114,32,105,110,116,101,114,118,97,108,115,46,32,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,97,117,116,111,109,97,116,101,32,116,104,105,115,32,112,114,111,99,101,115,115,44,32,99,111,110,115,105,100,101,114,32,114,117,110,110,105,110,103,32,121,111,117,114,32,110,111,100,101,32,97,115,32,97,32,91,115,101,114,118,105,99,101,93,40,35,114,117,110,45,97,115,45,97,45,115,101,114,118,105,99,101,41,46,10,10,42,42,78,111,116,101,42,42,10,65,102,116,101,114,32,105,110,116,114,111,100,117,99,105,110,103,32,96,77,101,109,98,101,114,115,104,105,112,115,96,32,116,111,32,116,104,101,32,112,108,97,116,102,111,114,109,44,32,119,101,32,102,111,117,110,100,32,105,116,32,116,111,32,98,101,32,99,111,110,102,117,115,105,110,103,32,116,111,32,104,97,118,101,32,97,32,99,111,110,99,101,112,116,32,111,102,32,98,111,116,104,32,96,65,99,99,111,117,110,116,115,96,32,97,110,100,32,96,77,101,109,98,101,114,115,104,105,112,115,96,46,32,87,101,32,97,114,101,32,105,110,32,116,104,101,32,112,114,111,99,101,115,115,32,111,102,32,114,101,110,97,109,105,110,103,32,116,104,101,32,96,65,99,99,111,117,110,116,115,96,32,116,111,32,116,104,101,32,96,75,101,121,115,96,44,32,98,117,116,32,116,104,101,114,101,32,97,114,101,32,115,116,105,108,108,32,116,114,97,99,101,115,32,111,102,32,96,65,99,99,111,117,110,116,96,32,115,104,111,119,105,110,103,32,117,112,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179118},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[136,{"id":136,"thread_id":18,"nr_in_thread":2,"current_text":[35,32,73,110,115,116,114,117,99,116,105,111,110,115,10,10,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,98,101,32,118,105,115,105,98,108,101,32,105,110,32,116,104,101,32,112,111,108,107,97,100,111,116,47,115,117,98,115,116,114,97,116,101,32,116,101,108,101,109,101,116,114,121,44,32,103,111,32,91,104,101,114,101,93,40,104,116,116,112,115,58,47,47,116,101,108,101,109,101,116,114,121,46,112,111,108,107,97,100,111,116,46,105,111,47,41,46,32,78,111,116,101,32,116,104,97,116,32,102,111,114,32,119,105,110,100,111,119,115,32,97,110,100,32,97,114,109,118,55,32,40,114,97,115,112,98,101,114,114,121,32,112,105,41,44,32,121,111,117,32,110,101,101,100,32,116,111,32,97,100,100,32,97,32,116,101,108,101,109,101,116,114,121,32,102,108,97,103,32,97,116,32,115,116,97,114,116,117,112,32,40,115,101,101,32,97,112,112,108,105,99,97,98,108,101,32,115,101,116,117,112,32,110,111,100,101,41,46,10,10,73,102,32,121,111,117,114,32,96,86,97,108,105,100,97,116,111,114,96,32,104,97,115,32,101,120,112,101,114,105,101,110,99,101,100,32,115,111,109,101,32,111,102,32,116,104,101,32,110,101,116,119,111,114,107,105,110,103,32,105,115,115,117,101,115,32,100,101,115,99,114,105,98,101,100,32,91,104,101,114,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,115,117,98,115,116,114,97,116,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,47,105,115,115,117,101,115,47,54,56,41,44,32,99,111,110,115,105,100,101,114,32,114,101,115,116,97,114,116,105,110,103,32,121,111,117,114,32,110,111,100,101,32,97,116,32,114,101,103,117,108,97,114,32,105,110,116,101,114,118,97,108,115,46,32,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,97,117,116,111,109,97,116,101,32,116,104,105,115,32,112,114,111,99,101,115,115,44,32,99,111,110,115,105,100,101,114,32,114,117,110,110,105,110,103,32,121,111,117,114,32,110,111,100,101,32,97,115,32,97,32,91,115,101,114,118,105,99,101,93,40,35,114,117,110,45,97,115,45,97,45,115,101,114,118,105,99,101,41,46,10,10,42,42,78,111,116,101,42,42,10,65,102,116,101,114,32,105,110,116,114,111,100,117,99,105,110,103,32,96,77,101,109,98,101,114,115,104,105,112,115,96,32,116,111,32,116,104,101,32,112,108,97,116,102,111,114,109,44,32,119,101,32,102,111,117,110,100,32,105,116,32,116,111,32,98,101,32,99,111,110,102,117,115,105,110,103,32,116,111,32,104,97,118,101,32,97,32,99,111,110,99,101,112,116,32,111,102,32,98,111,116,104,32,96,65,99,99,111,117,110,116,115,96,32,97,110,100,32,96,77,101,109,98,101,114,115,104,105,112,115,96,46,32,87,101,32,97,114,101,32,105,110,32,116,104,101,32,112,114,111,99,101,115,115,32,111,102,32,114,101,110,97,109,105,110,103,32,116,104,101,32,96,65,99,99,111,117,110,116,115,96,32,116,111,32,116,104,101,32,96,75,101,121,115,96,44,32,98,117,116,32,116,104,101,114,101,32,97,114,101,32,115,116,105,108,108,32,116,114,97,99,101,115,32,111,102,32,96,65,99,99,111,117,110,116,96,32,115,104,111,119,105,110,103,32,117,112,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179124},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[137,{"id":137,"thread_id":18,"nr_in_thread":3,"current_text":[35,35,32,77,97,99,10,10,42,32,69,118,101,114,121,32,116,105,109,101,32,115,111,109,101,116,104,105,110,103,32,105,115,32,119,114,105,116,116,101,110,32,105,110,32,96,60,98,114,97,99,107,101,116,115,62,96,44,32,105,116,32,109,101,97,110,115,32,121,111,117,32,104,97,118,101,32,116,111,32,114,101,112,108,97,99,101,32,116,104,105,115,32,119,105,116,104,32,121,111,117,114,32,105,110,112,117,116,44,32,119,105,116,104,111,117,116,32,116,104,101,32,96,60,62,96,46,10,42,32,87,104,101,110,32,115,111,109,101,116,104,105,110,103,32,105,115,32,119,114,105,116,116,101,110,32,105,110,32,96,34,100,111,117,98,108,101,95,113,117,111,116,101,115,34,96,44,32,105,116,32,109,101,97,110,115,32,116,104,101,32,110,117,109,98,101,114,47,100,97,116,97,32,119,105,108,108,32,118,97,114,121,32,100,101,112,101,110,100,105,110,103,32,111,110,32,121,111,117,114,32,110,111,100,101,32,111,114,32,116,104,101,32,99,117,114,114,101,110,116,32,115,116,97,116,101,32,111,102,32,116,104,101,32,98,108,111,99,107,99,104,97,105,110,46,10,42,32,70,111,114,32,116,101,114,109,105,110,97,108,32,99,111,109,109,97,110,100,115,44,32,96,36,96,32,109,101,97,110,115,32,121,111,117,32,109,117,115,116,32,116,121,112,101,32,119,104,97,116,32,99,111,109,101,115,32,97,102,116,101,114,32,116,104,97,116,32,111,110,32,119,105,110,100,111,119,115,32,97,110,100,32,109,97,99,32,114,101,115,112,101,99,116,105,118,101,108,121,46,32,96,35,96,32,77,101,97,110,115,32,105,116,39,115,32,106,117,115,116,32,97,32,99,111,109,109,101,110,116,47,101,120,112,108,97,110,97,116,105,111,110,44,32,97,110,100,32,109,117,115,116,32,110,111,116,32,98,101,32,116,121,112,101,100,46,10,96,96,96,10,35,32,84,104,105,115,32,105,115,32,106,117,115,116,32,97,32,99,111,109,109,101,110,116,44,32,100,111,110,39,116,32,116,121,112,101,32,111,114,32,112,97,115,116,101,32,105,116,32,105,110,32,121,111,117,114,32,116,101,114,109,105,110,97,108,33,10,36,32,99,100,32,126,47,10,35,32,79,110,108,121,32,116,121,112,101,47,112,97,115,116,101,32,116,104,101,32,34,99,100,32,126,47,44,32,110,111,116,32,116,104,101,32,112,114,101,99,101,100,105,110,103,32,36,32,33,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179154},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[138,{"id":138,"thread_id":18,"nr_in_thread":4,"current_text":[35,35,35,35,32,83,101,116,117,112,32,78,111,100,101,10,10,79,112,101,110,32,116,104,101,32,116,101,114,109,105,110,97,108,32,40,65,112,112,108,105,99,97,116,105,111,110,115,45,62,85,116,105,108,105,116,105,101,115,41,58,10,10,96,96,96,10,36,32,99,100,32,126,47,10,36,32,119,103,101,116,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,115,117,98,115,116,114,97,116,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,47,114,101,108,101,97,115,101,115,47,100,111,119,110,108,111,97,100,47,118,49,46,48,46,48,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,45,49,46,48,46,48,45,111,115,120,45,120,56,54,95,54,52,46,122,105,112,10,45,45,45,45,10,35,32,73,102,32,121,111,117,32,100,111,110,39,116,32,104,97,118,101,32,119,103,101,116,32,105,110,115,116,97,108,108,101,100,44,32,112,97,115,116,101,32,116,104,101,32,108,105,110,107,32,105,110,32,121,111,117,114,32,98,114,111,119,115,101,114,32,115,97,118,101,46,10,35,32,65,115,115,117,109,105,110,103,32,105,116,32,103,101,116,115,32,115,97,118,101,100,32,105,110,32,121,111,117,114,32,126,47,68,111,119,110,108,111,97,100,115,32,102,111,108,100,101,114,58,10,36,32,109,118,32,126,47,68,111,119,110,108,111,97,100,115,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,45,49,46,48,46,48,45,111,115,120,45,120,56,54,95,54,52,46,122,105,112,32,126,47,10,45,45,45,10,36,32,116,97,114,32,45,118,120,102,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,45,49,46,48,46,48,45,111,115,120,45,120,56,54,95,54,52,46,122,105,112,10,36,32,46,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,10,35,32,73,102,32,121,111,117,32,119,97,110,116,32,121,111,117,114,32,110,111,100,101,32,116,111,32,104,97,118,101,32,97,32,110,111,110,45,114,97,110,100,111,109,32,105,100,101,110,116,105,102,105,101,114,58,10,62,32,46,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,32,45,45,110,97,109,101,32,60,110,111,100,101,110,97,109,101,62,10,10,35,32,78,111,116,101,58,32,100,117,101,32,116,111,32,115,111,109,101,32,105,115,115,117,101,115,32,119,105,116,104,32,111,117,114,32,110,111,100,101,115,32,103,101,116,116,105,110,103,32,109,105,120,101,100,32,117,112,32,119,105,116,104,32,110,111,100,101,115,32,102,114,111,109,32,116,104,101,32,99,104,97,105,110,88,32,110,101,116,119,111,114,107,32,40,115,101,101,32,116,101,108,101,109,101,116,114,121,32,108,105,110,107,41,44,10,35,32,105,116,32,109,105,103,104,116,32,104,101,108,112,32,121,111,117,114,32,117,112,116,105,109,101,32,98,121,32,97,108,115,111,32,112,97,115,115,105,110,103,58,10,45,45,105,110,45,112,101,101,114,115,32,49,48,48,32,45,45,111,117,116,45,112,101,101,114,115,32,49,48,48,10,35,32,97,102,116,101,114,32,116,104,101,32,111,116,104,101,114,32,102,108,97,103,115,46,32,89,111,117,32,99,97,110,32,99,104,111,111,115,101,32,97,110,121,32,110,117,109,98,101,114,32,121,111,117,32,108,105,107,101,44,32,98,117,116,32,116,104,101,32,100,101,102,97,117,108,116,32,105,115,32,50,53,46,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179166},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[139,{"id":139,"thread_id":18,"nr_in_thread":5,"current_text":[89,111,117,114,32,110,111,100,101,32,115,104,111,117,108,100,32,110,111,119,32,115,116,97,114,116,32,115,121,110,99,105,110,103,32,116,104,101,32,98,108,111,99,107,99,104,97,105,110,46,32,84,104,101,32,111,117,116,112,117,116,32,115,104,111,117,108,100,32,108,111,111,107,32,108,105,107,101,32,116,104,105,115,58,10,96,96,96,10,74,111,121,115,116,114,101,97,109,32,78,111,100,101,10,32,32,118,101,114,115,105,111,110,32,34,86,101,114,115,105,111,110,34,45,34,121,111,117,114,95,79,83,34,10,32,32,98,121,32,74,111,121,115,116,114,101,97,109,44,32,50,48,49,57,10,67,104,97,105,110,32,115,112,101,99,105,102,105,99,97,116,105,111,110,58,32,74,111,121,115,116,114,101,97,109,32,84,101,115,116,110,101,116,32,118,50,10,78,111,100,101,32,110,97,109,101,58,32,34,110,111,100,101,110,97,109,101,34,10,82,111,108,101,115,58,32,70,85,76,76,10,71,101,110,101,114,97,116,101,100,32,97,32,110,101,119,32,107,101,121,112,97,105,114,58,32,34,115,111,109,101,95,108,111,110,103,95,111,117,112,117,116,34,10,73,110,105,116,105,97,108,105,122,105,110,103,32,71,101,110,101,115,105,115,32,98,108,111,99,107,47,115,116,97,116,101,32,40,34,115,111,109,101,95,108,111,110,103,95,111,117,112,117,116,34,41,10,76,111,97,100,101,100,32,98,108,111,99,107,45,116,105,109,101,32,61,32,54,32,115,101,99,111,110,100,115,32,102,114,111,109,32,103,101,110,101,115,105,115,32,111,110,32,102,105,114,115,116,45,108,97,117,110,99,104,32,115,116,97,114,116,117,112,46,10,66,101,115,116,32,98,108,111,99,107,58,32,35,48,10,76,111,99,97,108,32,110,111,100,101,32,97,100,100,114,101,115,115,32,105,115,58,32,47,105,112,52,47,48,46,48,46,48,46,48,47,116,99,112,47,51,48,51,51,51,47,112,50,112,47,34,121,111,117,114,95,110,111,100,101,95,107,101,121,34,10,76,105,115,116,101,110,105,110,103,32,102,111,114,32,110,101,119,32,99,111,110,110,101,99,116,105,111,110,115,32,111,110,32,49,50,55,46,48,46,48,46,49,58,57,57,52,52,46,10,46,46,46,10,46,46,46,10,83,121,110,99,105,110,103,44,32,116,97,114,103,101,116,61,35,34,98,108,111,99,107,95,104,101,105,103,104,116,34,32,40,34,110,34,32,112,101,101,114,115,41,44,32,98,101,115,116,58,32,35,34,115,121,110,99,101,100,95,104,101,105,103,104,116,34,32,40,34,104,97,115,104,95,111,102,95,115,121,110,99,101,100,95,116,105,112,34,41,44,32,102,105,110,97,108,105,122,101,100,32,35,48,32,40,34,104,97,115,104,95,111,102,95,102,105,110,97,108,105,122,101,100,95,116,105,112,34,41,44,32,226,172,135,32,34,100,111,119,110,108,111,97,100,95,115,112,101,101,100,34,105,66,47,115,32,226,172,134,32,34,117,112,108,111,97,100,95,115,112,101,101,100,34,107,105,66,47,115,10,96,96,96,10,70,114,111,109,32,116,104,101,32,108,97,115,116,32,108,105,110,101,44,32,110,111,116,105,99,101,32,96,116,97,114,103,101,116,61,35,34,98,108,111,99,107,95,104,101,105,103,104,116,34,96,32,97,110,100,32,96,98,101,115,116,58,32,35,34,115,121,110,99,101,100,95,104,101,105,103,104,116,34,96,10,87,104,101,110,32,116,104,101,32,96,116,97,114,103,101,116,61,35,98,108,111,99,107,95,104,101,105,103,104,116,96,105,115,32,116,104,101,32,115,97,109,101,32,97,115,32,96,98,101,115,116,58,32,35,34,115,121,110,99,101,100,95,104,101,105,103,104,116,34,96,44,32,121,111,117,114,32,110,111,100,101,32,105,115,32,102,117,108,108,121,32,115,121,110,99,101,100,33,10,10,42,42,75,101,101,112,32,116,104,101,32,116,101,114,109,105,110,97,108,32,119,105,110,100,111,119,32,111,112,101,110,46,42,42],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179178},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[140,{"id":140,"thread_id":18,"nr_in_thread":6,"current_text":[35,35,35,35,32,75,101,121,115,10,10,78,111,119,32,121,111,117,32,110,101,101,100,32,116,111,32,103,101,110,101,114,97,116,101,32,121,111,117,114,32,96,107,101,121,115,96,32,105,110,32,116,104,101,32,96,80,105,111,110,101,101,114,32,97,112,112,96,46,10,10,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,104,97,118,101,32,116,104,101,32,97,112,112,108,105,99,97,116,105,111,110,32,116,97,108,107,32,116,111,32,121,111,117,114,32,111,119,110,32,110,111,100,101,44,32,99,104,111,111,115,101,32,96,83,101,116,116,105,110,103,115,96,32,105,110,32,116,104,101,32,115,105,100,101,98,97,114,44,32,97,110,100,32,99,104,97,110,103,101,32,116,104,101,32,96,114,101,109,111,116,101,32,110,111,100,101,47,101,110,100,112,111,105,110,116,32,116,111,32,99,111,110,110,101,99,116,32,116,111,96,32,116,111,32,108,111,99,97,108,32,110,111,100,101,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179196},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[141,{"id":141,"thread_id":18,"nr_in_thread":7,"current_text":[35,35,35,35,32,71,101,110,101,114,97,116,101,32,121,111,117,114,32,107,101,121,115,10,10,87,104,105,108,101,32,116,104,101,32,110,111,100,101,32,105,115,32,115,121,110,99,105,110,103,44,32,121,111,117,32,99,97,110,32,115,116,97,114,116,32,116,104,101,32,112,114,111,99,101,115,115,32,111,102,32,115,101,116,116,105,110,103,32,117,112,32,116,104,101,32,114,101,115,116,46,10,10,49,46,32,71,111,32,116,111,32,116,104,101,32,91,80,105,111,110,101,101,114,32,65,112,112,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,112,105,111,110,101,101,114,41,44,32,97,110,100,32,115,101,108,101,99,116,32,96,77,121,32,107,101,121,115,96,32,105,110,32,116,104,101,32,115,105,100,101,98,97,114,46,32,67,108,105,99,107,32,116,104,101,32,96,67,114,101,97,116,101,32,107,101,121,115,96,32,116,97,98,46,10,10,78,97,109,101,115,32,97,114,101,32,101,110,116,105,114,101,108,121,32,111,112,116,105,111,110,97,108,44,32,98,117,116,32,116,104,101,32,110,101,120,116,32,115,116,101,112,115,32,119,105,108,108,32,98,101,32,101,97,115,105,101,114,32,105,102,32,121,111,117,32,102,111,108,108,111,119,32,116,104,101,32,115,121,115,116,101,109,32,115,117,103,103,101,115,116,101,100,46,10,10,50,46,32,78,97,109,101,32,121,111,117,114,32,102,105,114,115,116,32,107,101,121,112,97,105,114,32,96,115,101,115,115,105,111,110,96,44,32,111,114,32,97,116,32,108,101,97,115,116,32,115,111,109,101,116,104,105,110,103,32,116,104,97,116,32,99,111,110,116,97,105,110,115,32,116,104,101,32,119,111,114,100,46,32,73,101,32,96,106,111,104,110,45,100,111,101,45,115,101,115,115,105,111,110,45,107,101,121,96,46,10,51,46,32,73,110,32,116,104,101,32,100,114,111,112,100,111,119,110,32,105,110,32,116,104,101,32,102,105,101,108,100,32,98,101,108,111,119,44,32,99,104,111,111,115,101,32,96,82,97,119,32,115,101,101,100,96,46,32,78,111,116,101,32,116,104,97,116,32,101,97,99,104,32,116,105,109,101,32,121,111,117,32,116,111,103,103,108,101,32,98,101,116,119,101,101,110,32,96,77,110,101,109,111,110,105,99,96,32,97,110,100,32,96,82,97,119,32,115,101,101,100,96,44,32,121,111,117,32,119,105,108,108,32,103,101,110,101,114,97,116,101,32,97,32,110,101,119,32,107,101,121,32,112,97,105,114,46,10,52,46,32,67,111,112,121,32,116,104,101,32,96,34,48,120,89,111,117,114,76,111,110,103,83,101,115,115,105,111,110,82,97,119,83,101,101,100,34,96,44,32,97,110,100,32,115,97,118,101,32,105,116,32,115,111,109,101,119,104,101,114,101,32,115,97,102,101,32,45,32,108,105,107,101,32,97,32,112,97,115,115,119,111,114,100,32,109,97,110,97,103,101,114,46,32,89,111,117,32,110,101,101,100,32,116,104,105,115,32,108,97,116,101,114,33,10,53,46,32,67,104,111,111,115,101,32,97,32,112,97,115,115,119,111,114,100,32,40,116,104,105,115,32,107,101,121,32,119,105,108,108,32,104,111,108,100,32,97,108,108,32,121,111,117,114,32,116,111,107,101,110,115,33,41,10,54,46,32,70,111,114,32,116,104,101,32,96,115,101,115,115,105,111,110,96,32,107,101,121,44,32,121,111,117,32,97,108,115,111,32,110,101,101,100,32,116,111,32,115,101,108,101,99,116,32,96,69,100,119,97,114,100,115,32,40,101,100,50,53,53,49,57,41,96,32,102,114,111,109,32,116,104,101,32,96,65,100,118,97,110,99,101,100,32,99,114,101,97,116,105,111,110,32,111,112,116,105,111,110,115,96,46,10,55,46,32,67,108,105,99,107,32,96,83,97,118,101,96,32,45,62,32,96,67,114,101,97,116,101,32,97,110,100,32,98,97,99,107,117,112,32,107,101,121,115,96,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179244},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[142,{"id":142,"thread_id":18,"nr_in_thread":8,"current_text":[82,101,112,101,97,116,32,116,104,101,32,115,116,101,112,115,32,116,119,111,32,109,111,114,101,32,116,105,109,101,115,44,32,98,117,116,32,119,105,116,104,32,100,105,102,102,101,114,101,110,116,32,110,97,109,101,115,44,32,108,101,97,118,105,110,103,32,121,111,117,32,119,105,116,104,32,116,104,114,101,101,32,115,101,116,115,32,111,102,32,107,101,121,115,32,97,115,32,115,104,111,119,110,32,98,101,108,111,119,58,10,42,32,96,115,116,97,115,104,96,10,42,32,96,99,111,110,116,114,111,108,108,101,114,96,10,42,32,96,115,101,115,115,105,111,110,96,10,10,78,111,116,101,32,116,104,97,116,32,121,111,117,32,111,110,108,121,32,42,115,116,114,105,99,116,108,121,32,110,101,101,100,42,32,116,104,101,32,82,97,119,32,115,101,101,100,32,102,111,114,32,116,104,101,32,96,115,101,115,115,105,111,110,96,32,107,101,121,112,97,105,114,44,32,98,117,116,32,105,116,39,115,32,115,97,102,101,114,32,116,111,32,100,111,32,105,116,32,102,111,114,32,97,108,108,32,111,102,32,116,104,101,109,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179292},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[143,{"id":143,"thread_id":18,"nr_in_thread":9,"current_text":[35,35,35,35,32,82,101,45,115,116,97,114,116,32,121,111,117,114,32,110,111,100,101,32,97,115,32,97,32,118,97,108,105,100,97,116,111,114,10,10,49,46,32,79,112,101,110,32,116,104,101,32,116,101,114,109,105,110,97,108,32,116,104,97,116,32,105,115,32,114,117,110,110,105,110,103,32,121,111,117,114,32,110,111,100,101,44,32,97,110,100,32,107,105,108,108,32,116,104,101,32,115,101,115,115,105,111,110,32,119,105,116,104,32,96,99,116,114,108,43,99,96,46,10,50,46,32,82,101,115,116,97,114,116,32,105,116,32,97,103,97,105,110,32,119,105,116,104,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,99,111,109,109,97,110,100,58,10,96,96,96,10,36,32,46,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,32,45,45,118,97,108,105,100,97,116,111,114,32,45,45,107,101,121,32,60,48,120,77,121,76,111,110,103,82,97,119,83,101,101,100,62,10,35,32,73,102,32,121,111,117,32,119,97,110,116,32,121,111,117,114,32,110,111,100,101,32,116,111,32,104,97,118,101,32,97,32,110,111,110,45,114,97,110,100,111,109,32,105,100,101,110,116,105,102,105,101,114,58,10,36,32,46,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,32,45,45,110,97,109,101,32,60,110,111,100,101,110,97,109,101,62,32,45,45,118,97,108,105,100,97,116,111,114,32,45,45,107,101,121,32,60,48,120,89,111,117,114,76,111,110,103,83,101,115,115,105,111,110,82,97,119,83,101,101,100,62,10,10,35,32,78,111,116,101,58,32,100,117,101,32,116,111,32,115,111,109,101,32,105,115,115,117,101,115,32,119,105,116,104,32,111,117,114,32,110,111,100,101,115,32,103,101,116,116,105,110,103,32,109,105,120,101,100,32,117,112,32,119,105,116,104,32,110,111,100,101,115,32,102,114,111,109,32,116,104,101,32,99,104,97,105,110,88,32,110,101,116,119,111,114,107,32,40,115,101,101,32,116,101,108,101,109,101,116,114,121,32,108,105,110,107,41,44,10,35,32,105,116,32,109,105,103,104,116,32,104,101,108,112,32,121,111,117,114,32,117,112,116,105,109,101,32,98,121,32,97,108,115,111,32,112,97,115,115,105,110,103,58,10,45,45,105,110,45,112,101,101,114,115,32,49,48,48,32,45,45,111,117,116,45,112,101,101,114,115,32,49,48,48,10,35,32,97,102,116,101,114,32,116,104,101,32,111,116,104,101,114,32,102,108,97,103,115,46,32,89,111,117,32,99,97,110,32,99,104,111,111,115,101,32,97,110,121,32,110,117,109,98,101,114,32,121,111,117,32,108,105,107,101,44,32,98,117,116,32,116,104,101,32,100,101,102,97,117,108,116,32,105,115,32,50,53,46,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179304},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[144,{"id":144,"thread_id":18,"nr_in_thread":10,"current_text":[84,104,105,115,32,116,105,109,101,44,32,116,104,101,32,111,117,116,112,117,116,32,115,104,111,117,108,100,32,115,104,111,119,32,97,32,115,108,105,103,104,116,108,121,32,100,105,102,102,101,114,101,110,116,32,115,116,97,114,116,117,112,32,111,117,116,112,117,116,58,10,96,96,96,10,74,111,121,115,116,114,101,97,109,32,78,111,100,101,10,32,32,118,101,114,115,105,111,110,32,34,118,101,114,115,105,111,110,34,45,34,121,111,117,114,95,79,83,34,10,32,32,98,121,32,74,111,121,115,116,114,101,97,109,44,32,50,48,49,57,10,67,104,97,105,110,32,115,112,101,99,105,102,105,99,97,116,105,111,110,58,32,74,111,121,115,116,114,101,97,109,32,83,116,97,103,105,110,103,32,84,101,115,116,110,101,116,10,78,111,100,101,32,110,97,109,101,58,32,34,110,111,100,101,110,97,109,101,34,10,82,111,108,101,115,58,32,65,85,84,72,79,82,73,84,89,10,66,101,115,116,32,98,108,111,99,107,58,32,35,34,115,121,110,99,101,100,95,104,101,105,103,104,116,34,10,76,111,99,97,108,32,110,111,100,101,32,97,100,100,114,101,115,115,32,105,115,58,32,47,105,112,52,47,48,46,48,46,48,46,48,47,116,99,112,47,51,48,51,51,51,47,112,50,112,47,34,121,111,117,114,95,110,111,100,101,95,107,101,121,34,10,76,105,115,116,101,110,105,110,103,32,102,111,114,32,110,101,119,32,99,111,110,110,101,99,116,105,111,110,115,32,111,110,32,49,50,55,46,48,46,48,46,49,58,57,57,52,52,46,10,85,115,105,110,103,32,97,117,116,104,111,114,105,116,121,32,107,101,121,32,32,34,53,89,111,117,114,74,111,121,83,101,115,115,105,111,110,65,100,100,114,101,115,115,34,32,32,35,32,83,101,101,32,78,111,116,101,10,46,46,46,10,96,96,96,10,42,42,78,111,116,101,42,42,10,73,102,32,121,111,117,114,32,96,115,101,115,115,105,111,110,96,32,119,97,115,32,103,101,110,101,114,97,116,101,100,32,97,115,32,96,83,99,104,110,111,114,114,107,101,108,32,40,115,114,50,53,53,49,57,41,96,44,32,105,116,32,119,105,108,108,32,115,104,111,119,32,97,32,99,111,109,112,108,101,116,101,108,121,32,100,105,102,102,101,114,101,110,116,32,97,100,100,114,101,115,115,46,32,73,102,32,116,104,105,115,32,104,97,112,112,101,110,115,44,32,103,111,32,98,97,99,107,32,97,110,100,32,103,101,110,101,114,97,116,101,32,97,32,110,101,119,32,91,115,101,115,115,105,111,110,32,107,101,121,93,40,35,103,101,110,101,114,97,116,101,45,121,111,117,114,45,107,101,121,115,45,49,41,32,119,105,116,104,32,96,69,100,119,97,114,100,115,32,40,101,100,50,53,53,49,57,41,96,46,32,73,102,32,121,111,117,32,100,111,110,39,116,44,32,121,111,117,114,32,110,111,100,101,32,119,105,108,108,32,116,114,121,32,116,111,32,115,105,103,110,32,98,108,111,99,107,115,32,119,105,116,104,32,116,104,101,32,119,114,111,110,103,32,107,101,121,46,32,65,115,32,97,32,99,111,110,115,101,113,117,101,110,99,101,44,32,121,111,117,32,119,105,108,108,32,103,101,116,32,115,108,97,115,104,101,100,32,97,110,100,32,107,105,99,107,101,100,32,111,117,116,32,97,115,32,96,86,97,108,105,100,97,116,111,114,96,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179328},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[145,{"id":145,"thread_id":18,"nr_in_thread":11,"current_text":[35,35,35,35,32,70,105,110,97,108,32,83,116,101,112,10,10,78,111,119,32,105,116,39,115,32,116,105,109,101,32,116,111,32,99,111,110,102,105,103,117,114,101,32,121,111,117,114,32,107,101,121,115,32,116,111,32,115,116,97,114,116,32,118,97,108,105,100,97,116,105,110,103,46,32],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179340},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[146,{"id":146,"thread_id":18,"nr_in_thread":12,"current_text":[35,35,35,35,32,67,111,110,102,105,103,117,114,101,32,121,111,117,114,32,118,97,108,105,100,97,116,111,114,32,107,101,121,115,10,10,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,97,32,96,86,97,108,105,100,97,116,111,114,96,44,32,121,111,117,32,110,101,101,100,32,116,111,32,115,116,97,107,101,46,32,78,111,116,101,32,116,104,97,116,32,121,111,117,32,109,97,121,32,104,97,118,101,32,116,111,32,114,101,102,114,101,115,104,32,121,111,117,114,32,98,114,111,119,115,101,114,32,105,102,32,121,111,117,39,114,101,32,110,111,116,32,115,101,101,105,110,103,32,116,104,101,32,111,112,116,105,111,110,115,32,114,105,103,104,116,32,97,119,97,121,46,10,10,42,42,73,77,80,79,82,84,65,78,84,58,42,42,32,82,101,97,100,32,115,116,101,112,32,49,51,46,32,99,97,114,101,102,117,108,108,121,46,32,89,111,117,114,32,110,111,100,101,32,110,101,101,100,115,32,116,111,32,98,101,32,102,117,108,108,121,32,115,121,110,99,101,100,44,32,98,101,102,111,114,101,32,112,114,111,99,101,101,100,105,110,103,32,116,111,32,115,116,101,112,32,49,52,46,10,10,49,46,32,83,116,105,108,108,32,105,110,32,116,104,101,32,96,77,121,32,75,101,121,115,96,32,115,105,100,101,98,97,114,32,111,102,32,116,104,101,32,91,80,105,111,110,101,101,114,32,65,112,112,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,112,105,111,110,101,101,114,41,44,32,99,104,111,111,115,101,32,121,111,117,114,32,96,115,116,97,115,104,96,32,107,101,121,46,10,50,46,32,67,108,105,99,107,32,116,104,101,32,96,70,114,101,101,32,84,111,107,101,110,115,96,32,108,105,110,107,32,98,101,108,111,119,32,121,111,117,114,32,97,100,100,114,101,115,115,44,32,91,111,114,32,99,108,105,99,107,32,104,101,114,101,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,102,97,117,99,101,116,41,46,32,83,111,108,118,101,32,116,104,101,32,99,97,112,116,99,104,97,44,32,97,110,100,32,121,111,117,32,115,104,111,117,108,100,32,114,101,99,101,105,118,101,32,116,111,107,101,110,115,46,10,51,46,32,83,101,110,100,32,115,111,109,101,32,116,111,107,101,110,115,32,116,111,32,121,111,117,114,32,96,99,111,110,116,114,111,108,108,101,114,96,46,32,73,116,32,110,101,101,100,115,32,116,111,32,112,101,114,102,111,114,109,32,97,116,32,108,101,97,115,116,32,116,119,111,32,116,114,97,110,115,97,99,116,105,111,110,115,44,32,98,117,116,32,98,101,116,116,101,114,32,116,111,32,115,101,110,100,32,126,49,48,46,10,52,46,32,78,111,119,44,32,99,108,105,99,107,32,96,86,97,108,105,100,97,116,111,114,115,96,32,105,110,32,116,104,101,32,115,105,100,101,98,97,114,44,32,97,110,100,32,116,104,101,110,32,116,104,101,32,96,86,97,108,105,100,97,116,111,114,32,83,116,97,107,105,110,103,96,32,116,97,98,46,10,53,46,32,76,111,99,97,116,101,32,116,104,101,32,97,100,100,114,101,115,115,47,107,101,121,32,110,97,109,101,100,32,96,115,116,97,115,104,96,44,32,97,110,100,32,99,108,105,99,107,32,96,66,111,110,100,32,70,117,110,100,115,96,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179358},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[147,{"id":147,"thread_id":18,"nr_in_thread":13,"current_text":[54,46,32,73,110,32,116,104,101,32,112,111,112,117,112,32,119,105,110,100,111,119,44,32,99,104,111,111,115,101,32,121,111,117,114,32,96,99,111,110,116,114,111,108,108,101,114,96,32,97,115,32,116,104,101,32,96,99,111,110,116,114,111,108,108,101,114,32,97,99,99,111,117,110,116,96,46,10,55,46,32,69,110,116,101,114,32,116,104,101,32,97,109,111,117,110,116,32,121,111,117,32,119,97,110,116,32,116,111,32,115,116,97,107,101,32,105,110,32,116,104,101,32,96,118,97,108,117,101,32,98,111,110,100,101,100,96,32,102,105,101,108,100,46,32,40,73,116,32,99,111,117,108,100,32,98,101,32,119,105,115,101,32,116,111,32,108,101,97,118,101,32,97,32,99,111,117,112,108,101,32,111,102,32,74,111,121,32,108,101,102,116,41,46,10,56,46,32,73,110,32,116,104,101,32,96,112,97,121,109,101,110,116,32,100,101,115,116,105,110,97,116,105,111,110,96,32,100,114,111,112,100,111,119,110,44,32,116,104,101,114,101,32,97,114,101,32,116,104,114,101,101,32,111,112,116,105,111,110,115,46,32,83,101,108,101,99,116,32,116,104,101,32,100,101,102,97,117,108,116,32,96,83,116,97,115,104,32,97,99,99,111,117,110,116,32,40,105,110,99,114,101,97,115,101,32,116,104,101,32,97,109,111,117,110,116,32,97,116,32,115,116,97,107,101,41,96,44,32,111,114,32,103,111,32,116,111,32,91,97,100,118,97,110,99,101,100,93,40,35,98,111,110,100,105,110,103,45,112,114,101,102,101,114,101,110,99,101,115,41,46,10,57,46,32,84,104,101,32,98,117,116,116,111,110,32,96,98,111,110,100,96,32,115,104,111,117,108,100,32,98,101,32,104,105,103,104,108,105,103,104,116,101,100,32,110,111,119,46,32,67,108,105,99,107,32,105,116,46,10,49,48,46,32,84,121,112,101,32,105,110,32,121,111,117,114,32,112,97,115,115,119,111,114,100,32,105,110,32,116,104,101,32,96,117,110,108,111,99,107,32,119,105,116,104,32,112,97,115,115,119,111,114,100,96,32,102,105,101,108,100,32,97,110,100,32,99,108,105,99,107,32,96,115,105,103,110,32,97,110,100,32,115,117,98,109,105,116,96,46,10,49,49,46,32,89,111,117,114,32,96,99,111,110,116,114,111,108,108,101,114,96,32,97,99,99,111,117,110,116,32,115,104,111,117,108,100,32,110,111,119,32,115,104,111,119,32,97,32,96,83,101,116,32,83,101,115,115,105,111,110,32,75,101,121,96,32,98,117,116,116,111,110,46,32,67,108,105,99,107,32,105,116,46,10,49,50,46,32,73,110,32,116,104,101,32,112,111,112,117,112,44,32,115,101,108,101,99,116,32,121,111,117,114,32,96,115,101,115,115,105,111,110,96,32,97,115,32,121,111,117,114,32,96,115,101,115,115,105,111,110,32,107,101,121,96,32,105,110,32,116,104,101,32,100,114,111,112,100,111,119,110,46,32,67,111,110,102,105,114,109,44,32,115,105,103,110,32,97,110,100,32,115,117,98,109,105,116,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179370},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[148,{"id":148,"thread_id":18,"nr_in_thread":14,"current_text":[49,51,46,32,89,111,117,32,110,101,101,100,32,116,111,32,99,104,101,99,107,32,121,111,117,114,32,110,111,100,101,44,32,119,104,105,99,104,32,121,111,117,32,115,116,97,114,116,101,100,32,101,97,114,108,105,101,114,46,32,73,110,32,116,104,101,32,111,117,116,112,117,116,32,96,116,97,114,103,101,116,61,35,34,98,108,111,99,107,95,104,101,105,103,104,116,34,96,32,115,104,111,117,108,100,32,101,113,117,97,108,32,96,98,101,115,116,58,32,35,34,115,121,110,99,101,100,95,104,101,105,103,104,116,34,96,46,32,68,111,32,110,111,116,32,112,114,111,99,101,101,100,32,98,101,102,111,114,101,32,116,104,111,115,101,32,116,119,111,32,118,97,108,117,101,115,32,97,114,101,32,105,100,101,110,116,105,99,97,108,44,32,97,115,32,121,111,117,114,32,110,111,100,101,32,119,105,108,108,32,98,101,32,100,114,111,112,112,101,100,32,111,117,116,32,102,114,111,109,32,116,104,101,32,118,97,108,105,100,97,116,111,114,115,32,105,102,32,121,111,117,114,32,110,111,100,101,32,105,115,32,110,111,116,32,102,117,108,108,121,32,115,121,110,99,101,100,46,32,73,102,32,121,111,117,32,100,105,100,32,115,116,97,114,116,32,121,111,117,114,32,110,111,100,101,32,119,105,116,104,32,96,45,45,110,97,109,101,32,60,110,111,100,101,110,97,109,101,62,96,32,112,97,114,97,109,101,116,101,114,44,32,116,104,101,110,32,121,111,117,32,97,108,115,111,32,99,97,110,32,99,104,101,99,107,32,105,102,32,121,111,117,114,32,110,111,100,101,32,105,115,32,102,117,108,108,121,32,115,121,110,99,101,100,32,102,114,111,109,32,91,84,101,108,101,109,101,116,114,121,93,40,104,116,116,112,115,58,47,47,116,101,108,101,109,101,116,114,121,46,112,111,108,107,97,100,111,116,46,105,111,47,35,108,105,115,116,47,74,111,121,115,116,114,101,97,109,37,50,48,84,101,115,116,110,101,116,37,50,48,118,50,41,46,10,49,52,46,32,89,111,117,114,32,96,99,111,110,116,114,111,108,108,101,114,96,32,97,99,99,111,117,110,116,32,115,104,111,117,108,100,32,110,111,119,32,115,104,111,119,32,97,32,96,86,97,108,105,100,97,116,101,96,32,98,117,116,116,111,110,46,32,67,108,105,99,107,32,105,116,46,10,49,53,46,32,89,111,117,32,99,97,110,32,108,101,97,118,101,32,116,104,101,32,96,117,110,115,116,97,107,101,32,116,104,114,101,115,104,111,108,100,96,32,97,110,100,32,96,112,97,121,109,101,110,116,32,112,114,101,102,101,114,101,110,99,101,115,96,32,97,115,32,100,101,102,97,117,108,116,115,44,32,111,114,32,103,111,32,116,111,32,91,97,100,118,97,110,99,101,100,93,40,35,118,97,108,105,100,97,116,105,110,103,45,112,114,101,102,101,114,101,110,99,101,115,41,46,32,67,111,110,102,105,114,109,44,32,115,105,103,110,32,97,110,100,32,115,117,98,109,105,116,46,10,10,82,101,102,114,101,115,104,32,121,111,117,114,32,98,114,111,119,115,101,114,44,32,97,110,100,32,115,101,108,101,99,116,32,116,104,101,32,96,86,97,108,105,100,97,116,111,114,32,79,118,101,114,118,105,101,119,96,32,116,97,98,46,32,73,102,32,121,111,117,114,32,97,99,99,111,117,110,116,32,115,104,111,119,115,32,117,110,100,101,114,32,96,110,101,120,116,32,117,112,96,44,32,119,97,105,116,32,102,111,114,32,116,104,101,32,110,101,120,116,32,96,101,114,97,96,44,32,97,110,100,32,121,111,117,32,119,105,108,108,32,98,101,32,109,111,118,101,100,32,116,111,32,116,104,101,32,96,118,97,108,105,100,97,116,111,114,115,96,32,108,105,115,116,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179388},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[149,{"id":149,"thread_id":17,"nr_in_thread":3,"current_text":[35,35,32,76,105,110,117,120,10,10,42,32,69,118,101,114,121,32,116,105,109,101,32,115,111,109,101,116,104,105,110,103,32,105,115,32,119,114,105,116,116,101,110,32,105,110,32,96,60,98,114,97,99,107,101,116,115,62,96,44,32,116,104,105,115,32,109,101,97,110,115,32,121,111,117,32,104,97,118,101,32,116,111,32,114,101,112,108,97,99,101,32,116,104,105,115,32,119,105,116,104,32,121,111,117,114,32,105,110,112,117,116,44,32,119,105,116,104,111,117,116,32,116,104,101,32,96,60,62,96,46,10,42,32,87,104,101,110,32,115,111,109,101,116,104,105,110,103,32,105,115,32,119,114,105,116,116,101,110,32,105,110,32,96,34,100,111,117,98,108,101,95,113,117,111,116,101,115,34,96,44,32,105,116,32,109,101,97,110,115,32,116,104,101,32,110,117,109,98,101,114,47,100,97,116,97,32,119,105,108,108,32,118,97,114,121,32,100,101,112,101,110,100,105,110,103,32,111,110,32,121,111,117,114,32,110,111,100,101,32,111,114,32,116,104,101,32,99,117,114,114,101,110,116,32,115,116,97,116,101,32,111,102,32,116,104,101,32,98,108,111,99,107,99,104,97,105,110,46,10,42,32,70,111,114,32,116,101,114,109,105,110,97,108,32,99,111,109,109,97,110,100,115,44,32,96,36,96,32,109,101,97,110,115,32,121,111,117,32,109,117,115,116,32,116,121,112,101,32,119,104,97,116,32,99,111,109,101,115,32,97,102,116,101,114,32,116,104,97,116,32,111,110,32,119,105,110,100,111,119,115,32,97,110,100,32,109,97,99,32,114,101,115,112,101,99,116,105,118,101,108,121,46,32,96,35,96,32,77,101,97,110,115,32,105,116,39,115,32,106,117,115,116,32,97,32,99,111,109,109,101,110,116,47,101,120,112,108,97,110,97,116,105,111,110,44,32,97,110,100,32,109,117,115,116,32,110,111,116,32,98,101,32,116,121,112,101,100,46,10,96,96,96,10,35,32,84,104,105,115,32,105,115,32,106,117,115,116,32,97,32,99,111,109,109,101,110,116,44,32,100,111,110,39,116,32,116,121,112,101,32,111,114,32,112,97,115,116,101,32,105,116,32,105,110,32,121,111,117,114,32,116,101,114,109,105,110,97,108,33,10,36,32,99,100,32,126,47,10,35,32,79,110,108,121,32,116,121,112,101,47,112,97,115,116,101,32,116,104,101,32,34,99,100,32,126,47,44,32,110,111,116,32,116,104,101,32,112,114,101,99,101,100,105,110,103,32,36,32,33,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179430},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[150,{"id":150,"thread_id":17,"nr_in_thread":4,"current_text":[35,35,35,35,32,83,101,116,117,112,32,78,111,100,101,10,10,79,112,101,110,32,116,104,101,32,116,101,114,109,105,110,97,108,58,10,10,96,96,96,10,36,32,99,100,32,126,47,10,35,32,54,52,32,98,105,116,32,100,101,98,105,97,110,32,98,97,115,101,100,32,108,105,110,117,120,10,36,32,119,103,101,116,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,115,117,98,115,116,114,97,116,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,47,114,101,108,101,97,115,101,115,47,100,111,119,110,108,111,97,100,47,118,49,46,48,46,48,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,45,49,46,48,46,48,45,108,105,110,117,120,45,120,56,54,95,54,52,46,116,97,114,46,103,122,10,36,32,116,97,114,32,45,118,120,102,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,45,49,46,48,46,48,45,108,105,110,117,120,45,120,56,54,95,54,52,46,116,97,114,46,103,122,10,35,32,97,114,109,118,55,32,40,114,97,115,112,98,101,114,114,121,32,112,105,41,10,36,32,119,103,101,116,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,74,111,121,115,116,114,101,97,109,47,115,117,98,115,116,114,97,116,101,45,110,111,100,101,45,106,111,121,115,116,114,101,97,109,47,114,101,108,101,97,115,101,115,47,100,111,119,110,108,111,97,100,47,118,49,46,48,46,48,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,45,49,46,48,46,48,45,97,114,109,118,55,46,116,97,114,46,103,122,10,36,32,116,97,114,32,45,118,120,102,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,45,49,46,48,46,48,45,97,114,109,118,55,46,116,97,114,46,103,122,10,35,32,70,111,114,32,98,111,116,104,10,36,32,46,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,10,35,32,73,102,32,121,111,117,32,119,97,110,116,32,121,111,117,114,32,110,111,100,101,32,116,111,32,104,97,118,101,32,97,32,110,111,110,45,114,97,110,100,111,109,32,105,100,101,110,116,105,102,105,101,114,58,10,36,32,46,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,32,45,45,110,97,109,101,32,60,110,111,100,101,110,97,109,101,62,10,35,32,73,102,32,121,111,117,32,119,97,110,116,32,121,111,117,114,32,110,111,100,101,32,116,111,32,115,104,111,119,32,117,112,32,105,110,32,116,104,101,32,116,101,108,101,109,101,116,114,121,58,32,104,116,116,112,115,58,47,47,116,101,108,101,109,101,116,114,121,46,112,111,108,107,97,100,111,116,46,105,111,47,10,36,32,46,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,32,45,45,110,97,109,101,32,60,110,111,100,101,110,97,109,101,62,32,45,45,116,101,108,101,109,101,116,114,121,45,117,114,108,32,119,115,58,47,47,116,101,108,101,109,101,116,114,121,46,112,111,108,107,97,100,111,116,46,105,111,58,49,48,50,52,47,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179460},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[151,{"id":151,"thread_id":17,"nr_in_thread":5,"current_text":[96,96,96,10,35,32,78,111,116,101,58,32,100,117,101,32,116,111,32,115,111,109,101,32,105,115,115,117,101,115,32,119,105,116,104,32,111,117,114,32,110,111,100,101,115,32,103,101,116,116,105,110,103,32,109,105,120,101,100,32,117,112,32,119,105,116,104,32,110,111,100,101,115,32,102,114,111,109,32,116,104,101,32,99,104,97,105,110,88,32,110,101,116,119,111,114,107,32,40,115,101,101,32,116,101,108,101,109,101,116,114,121,32,108,105,110,107,41,44,10,35,32,105,116,32,109,105,103,104,116,32,104,101,108,112,32,121,111,117,114,32,117,112,116,105,109,101,32,98,121,32,97,108,115,111,32,112,97,115,115,105,110,103,58,10,45,45,105,110,45,112,101,101,114,115,32,49,48,48,32,45,45,111,117,116,45,112,101,101,114,115,32,49,48,48,10,35,32,97,102,116,101,114,32,116,104,101,32,111,116,104,101,114,32,102,108,97,103,115,46,32,89,111,117,32,99,97,110,32,99,104,111,111,115,101,32,97,110,121,32,110,117,109,98,101,114,32,121,111,117,32,108,105,107,101,44,32,98,117,116,32,116,104,101,32,100,101,102,97,117,108,116,32,105,115,32,50,53,46,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179472},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[152,{"id":152,"thread_id":17,"nr_in_thread":6,"current_text":[89,111,117,114,32,110,111,100,101,32,115,104,111,117,108,100,32,110,111,119,32,115,116,97,114,116,32,115,121,110,99,105,110,103,32,116,104,101,32,98,108,111,99,107,99,104,97,105,110,46,32,84,104,101,32,111,117,116,112,117,116,32,115,104,111,117,108,100,32,108,111,111,107,32,108,105,107,101,32,116,104,105,115,58,10,96,96,96,10,74,111,121,115,116,114,101,97,109,32,78,111,100,101,10,32,32,118,101,114,115,105,111,110,32,34,86,101,114,115,105,111,110,34,45,34,121,111,117,114,95,79,83,34,10,32,32,98,121,32,74,111,121,115,116,114,101,97,109,44,32,50,48,49,57,10,67,104,97,105,110,32,115,112,101,99,105,102,105,99,97,116,105,111,110,58,32,74,111,121,115,116,114,101,97,109,32,84,101,115,116,110,101,116,32,118,50,10,78,111,100,101,32,110,97,109,101,58,32,34,110,111,100,101,110,97,109,101,34,10,82,111,108,101,115,58,32,70,85,76,76,10,71,101,110,101,114,97,116,101,100,32,97,32,110,101,119,32,107,101,121,112,97,105,114,58,32,34,115,111,109,101,95,108,111,110,103,95,111,117,112,117,116,34,10,73,110,105,116,105,97,108,105,122,105,110,103,32,71,101,110,101,115,105,115,32,98,108,111,99,107,47,115,116,97,116,101,32,40,34,115,111,109,101,95,108,111,110,103,95,111,117,112,117,116,34,41,10,76,111,97,100,101,100,32,98,108,111,99,107,45,116,105,109,101,32,61,32,54,32,115,101,99,111,110,100,115,32,102,114,111,109,32,103,101,110,101,115,105,115,32,111,110,32,102,105,114,115,116,45,108,97,117,110,99,104,32,115,116,97,114,116,117,112,46,10,66,101,115,116,32,98,108,111,99,107,58,32,35,48,10,76,111,99,97,108,32,110,111,100,101,32,97,100,100,114,101,115,115,32,105,115,58,32,47,105,112,52,47,48,46,48,46,48,46,48,47,116,99,112,47,51,48,51,51,51,47,112,50,112,47,34,121,111,117,114,95,110,111,100,101,95,107,101,121,34,10,76,105,115,116,101,110,105,110,103,32,102,111,114,32,110,101,119,32,99,111,110,110,101,99,116,105,111,110,115,32,111,110,32,49,50,55,46,48,46,48,46,49,58,57,57,52,52,46,10,46,46,46,10,46,46,46,10,83,121,110,99,105,110,103,44,32,116,97,114,103,101,116,61,35,34,98,108,111,99,107,95,104,101,105,103,104,116,34,32,40,34,110,34,32,112,101,101,114,115,41,44,32,98,101,115,116,58,32,35,34,115,121,110,99,101,100,95,104,101,105,103,104,116,34,32,40,34,104,97,115,104,95,111,102,95,115,121,110,99,101,100,95,116,105,112,34,41,44,32,102,105,110,97,108,105,122,101,100,32,35,48,32,40,34,104,97,115,104,95,111,102,95,102,105,110,97,108,105,122,101,100,95,116,105,112,34,41,44,32,226,172,135,32,34,100,111,119,110,108,111,97,100,95,115,112,101,101,100,34,105,66,47,115,32,226,172,134,32,34,117,112,108,111,97,100,95,115,112,101,101,100,34,107,105,66,47,115,10,96,96,96,10,70,114,111,109,32,116,104,101,32,108,97,115,116,32,108,105,110,101,44,32,110,111,116,105,99,101,32,96,116,97,114,103,101,116,61,35,34,98,108,111,99,107,95,104,101,105,103,104,116,34,96,32,97,110,100,32,96,98,101,115,116,58,32,35,34,115,121,110,99,101,100,95,104,101,105,103,104,116,34,96,10,87,104,101,110,32,116,104,101,32,96,116,97,114,103,101,116,61,35,98,108,111,99,107,95,104,101,105,103,104,116,96,105,115,32,116,104,101,32,115,97,109,101,32,97,115,32,96,98,101,115,116,58,32,35,34,115,121,110,99,101,100,95,104,101,105,103,104,116,34,96,44,32,121,111,117,114,32,110,111,100,101,32,105,115,32,102,117,108,108,121,32,115,121,110,99,101,100,33,10,10,42,42,75,101,101,112,32,116,104,101,32,116,101,114,109,105,110,97,108,32,119,105,110,100,111,119,32,111,112,101,110,46,42,42],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179490},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[153,{"id":153,"thread_id":17,"nr_in_thread":7,"current_text":[35,35,35,35,32,75,101,121,115,10,10,78,111,119,32,121,111,117,32,110,101,101,100,32,116,111,32,103,101,110,101,114,97,116,101,32,121,111,117,114,32,96,107,101,121,115,96,32,105,110,32,116,104,101,32,96,80,105,111,110,101,101,114,32,97,112,112,96,46,10,10,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,104,97,118,101,32,116,104,101,32,97,112,112,108,105,99,97,116,105,111,110,32,116,97,108,107,32,116,111,32,121,111,117,114,32,111,119,110,32,110,111,100,101,44,32,99,104,111,111,115,101,32,96,83,101,116,116,105,110,103,115,96,32,105,110,32,116,104,101,32,115,105,100,101,98,97,114,44,32,97,110,100,32,99,104,97,110,103,101,32,116,104,101,32,96,114,101,109,111,116,101,32,110,111,100,101,47,101,110,100,112,111,105,110,116,32,116,111,32,99,111,110,110,101,99,116,32,116,111,96,32,116,111,32,108,111,99,97,108,32,110,111,100,101,46,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179502},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[154,{"id":154,"thread_id":17,"nr_in_thread":8,"current_text":[35,35,35,35,32,71,101,110,101,114,97,116,101,32,121,111,117,114,32,107,101,121,115,10,10,87,104,105,108,101,32,116,104,101,32,110,111,100,101,32,105,115,32,115,121,110,99,105,110,103,44,32,121,111,117,32,99,97,110,32,115,116,97,114,116,32,116,104,101,32,112,114,111,99,101,115,115,32,111,102,32,115,101,116,116,105,110,103,32,117,112,32,116,104,101,32,114,101,115,116,46,10,10,49,46,32,71,111,32,116,111,32,116,104,101,32,91,80,105,111,110,101,101,114,32,65,112,112,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,112,105,111,110,101,101,114,41,44,32,97,110,100,32,115,101,108,101,99,116,32,96,77,121,32,107,101,121,115,96,32,105,110,32,116,104,101,32,115,105,100,101,98,97,114,46,32,67,108,105,99,107,32,116,104,101,32,96,67,114,101,97,116,101,32,107,101,121,115,96,32,116,97,98,46,10,10,78,97,109,101,115,32,97,114,101,32,101,110,116,105,114,101,108,121,32,111,112,116,105,111,110,97,108,44,32,98,117,116,32,116,104,101,32,110,101,120,116,32,115,116,101,112,115,32,119,105,108,108,32,98,101,32,101,97,115,105,101,114,32,105,102,32,121,111,117,32,102,111,108,108,111,119,32,116,104,101,32,115,121,115,116,101,109,32,115,117,103,103,101,115,116,101,100,46,10,10,50,46,32,78,97,109,101,32,121,111,117,114,32,102,105,114,115,116,32,107,101,121,112,97,105,114,32,96,115,101,115,115,105,111,110,96,44,32,111,114,32,97,116,32,108,101,97,115,116,32,115,111,109,101,116,104,105,110,103,32,116,104,97,116,32,99,111,110,116,97,105,110,115,32,116,104,101,32,119,111,114,100,46,32,73,101,32,96,106,111,104,110,45,100,111,101,45,115,101,115,115,105,111,110,45,107,101,121,96,46,10,51,46,32,73,110,32,116,104,101,32,100,114,111,112,100,111,119,110,32,105,110,32,116,104,101,32,102,105,101,108,100,32,98,101,108,111,119,44,32,99,104,111,111,115,101,32,96,82,97,119,32,115,101,101,100,96,46,32,78,111,116,101,32,116,104,97,116,32,101,97,99,104,32,116,105,109,101,32,121,111,117,32,116,111,103,103,108,101,32,98,101,116,119,101,101,110,32,96,77,110,101,109,111,110,105,99,96,32,97,110,100,32,96,82,97,119,32,115,101,101,100,96,44,32,121,111,117,32,119,105,108,108,32,103,101,110,101,114,97,116,101,32,97,32,110,101,119,32,107,101,121,32,112,97,105,114,46,10,52,46,32,67,111,112,121,32,116,104,101,32,96,34,48,120,89,111,117,114,76,111,110,103,83,101,115,115,105,111,110,82,97,119,83,101,101,100,34,96,44,32,97,110,100,32,115,97,118,101,32,105,116,32,115,111,109,101,119,104,101,114,101,32,115,97,102,101,32,45,32,108,105,107,101,32,97,32,112,97,115,115,119,111,114,100,32,109,97,110,97,103,101,114,46,32,89,111,117,32,110,101,101,100,32,116,104,105,115,32,108,97,116,101,114,33,10,53,46,32,67,104,111,111,115,101,32,97,32,112,97,115,115,119,111,114,100,32,40,116,104,105,115,32,107,101,121,32,119,105,108,108,32,104,111,108,100,32,97,108,108,32,121,111,117,114,32,116,111,107,101,110,115,33,41,10,54,46,32,70,111,114,32,116,104,101,32,96,115,101,115,115,105,111,110,96,32,107,101,121,44,32,121,111,117,32,97,108,115,111,32,110,101,101,100,32,116,111,32,115,101,108,101,99,116,32,96,69,100,119,97,114,100,115,32,40,101,100,50,53,53,49,57,41,96,32,102,114,111,109,32,116,104,101,32,96,65,100,118,97,110,99,101,100,32,99,114,101,97,116,105,111,110,32,111,112,116,105,111,110,115,96,46,10,55,46,32,67,108,105,99,107,32,96,83,97,118,101,96,32,45,62,32,96,67,114,101,97,116,101,32,97,110,100,32,98,97,99,107,117,112,32,107,101,121,115,96,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179520},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[155,{"id":155,"thread_id":17,"nr_in_thread":9,"current_text":[68,101,112,101,110,100,105,110,103,32,111,110,32,121,111,117,114,32,98,114,111,119,115,101,114,44,32,121,111,117,32,109,105,103,104,116,32,104,97,118,101,32,116,111,32,99,111,110,102,105,114,109,32,115,97,118,105,110,103,32,116,104,101,32,96,34,53,89,111,117,114,74,111,121,83,101,115,115,105,111,110,65,100,100,114,101,115,115,46,106,115,111,110,34,96,46,10,10,82,101,112,101,97,116,32,116,104,101,32,115,116,101,112,115,32,116,119,111,32,109,111,114,101,32,116,105,109,101,115,44,32,98,117,116,32,119,105,116,104,32,100,105,102,102,101,114,101,110,116,32,110,97,109,101,115,44,32,108,101,97,118,105,110,103,32,121,111,117,32,119,105,116,104,32,116,104,114,101,101,32,115,101,116,115,32,111,102,32,107,101,121,115,32,97,115,32,115,104,111,119,110,32,98,101,108,111,119,58,10,42,32,96,115,116,97,115,104,96,10,42,32,96,99,111,110,116,114,111,108,108,101,114,96,10,42,32,96,115,101,115,115,105,111,110,96,10,10,78,111,116,101,32,116,104,97,116,32,121,111,117,32,111,110,108,121,32,42,115,116,114,105,99,116,108,121,32,110,101,101,100,42,32,116,104,101,32,82,97,119,32,115,101,101,100,32,102,111,114,32,116,104,101,32,96,115,101,115,115,105,111,110,96,32,107,101,121,112,97,105,114,44,32,98,117,116,32,105,116,39,115,32,115,97,102,101,114,32,116,111,32,100,111,32,105,116,32,102,111,114,32,97,108,108,32,111,102,32,116,104,101,109,46,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179538},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[156,{"id":156,"thread_id":17,"nr_in_thread":10,"current_text":[35,35,35,35,32,82,101,45,115,116,97,114,116,32,121,111,117,114,32,110,111,100,101,32,97,115,32,97,32,118,97,108,105,100,97,116,111,114,10,10,49,46,32,79,112,101,110,32,116,104,101,32,116,101,114,109,105,110,97,108,32,116,104,97,116,32,105,115,32,114,117,110,110,105,110,103,32,121,111,117,114,32,110,111,100,101,44,32,97,110,100,32,107,105,108,108,32,116,104,101,32,115,101,115,115,105,111,110,32,119,105,116,104,32,96,99,116,114,108,43,99,96,46,10,50,46,32,82,101,115,116,97,114,116,32,105,116,32,97,103,97,105,110,32,119,105,116,104,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,99,111,109,109,97,110,100,58,10,96,96,96,10,36,32,46,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,32,45,45,118,97,108,105,100,97,116,111,114,32,45,45,107,101,121,32,60,48,120,77,121,76,111,110,103,82,97,119,83,101,101,100,62,10,35,32,73,102,32,121,111,117,32,119,97,110,116,32,121,111,117,114,32,110,111,100,101,32,116,111,32,104,97,118,101,32,97,32,110,111,110,45,114,97,110,100,111,109,32,105,100,101,110,116,105,102,105,101,114,58,10,36,32,46,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,32,45,45,110,97,109,101,32,60,110,111,100,101,110,97,109,101,62,32,45,45,118,97,108,105,100,97,116,111,114,32,45,45,107,101,121,32,60,48,120,89,111,117,114,76,111,110,103,83,101,115,115,105,111,110,82,97,119,83,101,101,100,62,10,35,32,97,114,109,118,55,32,40,114,97,115,112,98,101,114,114,121,32,112,105,41,32,111,110,108,121,58,10,35,32,73,102,32,121,111,117,32,119,97,110,116,32,121,111,117,114,32,110,111,100,101,32,116,111,32,115,104,111,119,32,117,112,32,105,110,32,116,104,101,32,116,101,108,101,109,101,116,114,121,58,32,104,116,116,112,115,58,47,47,116,101,108,101,109,101,116,114,121,46,112,111,108,107,97,100,111,116,46,105,111,47,10,36,32,46,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,32,45,45,110,97,109,101,32,60,110,111,100,101,110,97,109,101,62,32,45,45,118,97,108,105,100,97,116,111,114,32,45,45,107,101,121,32,60,48,120,89,111,117,114,76,111,110,103,83,101,115,115,105,111,110,82,97,119,83,101,101,100,62,32,45,45,116,101,108,101,109,101,116,114,121,45,117,114,108,32,119,115,58,47,47,116,101,108,101,109,101,116,114,121,46,112,111,108,107,97,100,111,116,46,105,111,58,49,48,50,52,47,10,10,35,32,78,111,116,101,58,32,100,117,101,32,116,111,32,115,111,109,101,32,105,115,115,117,101,115,32,119,105,116,104,32,111,117,114,32,110,111,100,101,115,32,103,101,116,116,105,110,103,32,109,105,120,101,100,32,117,112,32,119,105,116,104,32,110,111,100,101,115,32,102,114,111,109,32,116,104,101,32,99,104,97,105,110,88,32,110,101,116,119,111,114,107,32,40,115,101,101,32,116,101,108,101,109,101,116,114,121,32,108,105,110,107,41,44,10,35,32,105,116,32,109,105,103,104,116,32,104,101,108,112,32,121,111,117,114,32,117,112,116,105,109,101,32,98,121,32,97,108,115,111,32,112,97,115,115,105,110,103,58,10,45,45,105,110,45,112,101,101,114,115,32,49,48,48,32,45,45,111,117,116,45,112,101,101,114,115,32,49,48,48,10,35,32,97,102,116,101,114,32,116,104,101,32,111,116,104,101,114,32,102,108,97,103,115,46,32,89,111,117,32,99,97,110,32,99,104,111,111,115,101,32,97,110,121,32,110,117,109,98,101,114,32,121,111,117,32,108,105,107,101,44,32,98,117,116,32,116,104,101,32,100,101,102,97,117,108,116,32,105,115,32,50,53,46,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179556},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[157,{"id":157,"thread_id":17,"nr_in_thread":11,"current_text":[84,104,105,115,32,116,105,109,101,44,32,116,104,101,32,111,117,116,112,117,116,32,115,104,111,117,108,100,32,115,104,111,119,32,97,32,115,108,105,103,104,116,108,121,32,100,105,102,102,101,114,101,110,116,32,115,116,97,114,116,117,112,32,111,117,116,112,117,116,58,10,96,96,96,10,74,111,121,115,116,114,101,97,109,32,78,111,100,101,10,32,32,118,101,114,115,105,111,110,32,34,118,101,114,115,105,111,110,34,45,34,121,111,117,114,95,79,83,34,10,32,32,98,121,32,74,111,121,115,116,114,101,97,109,44,32,50,48,49,57,10,67,104,97,105,110,32,115,112,101,99,105,102,105,99,97,116,105,111,110,58,32,74,111,121,115,116,114,101,97,109,32,83,116,97,103,105,110,103,32,84,101,115,116,110,101,116,10,78,111,100,101,32,110,97,109,101,58,32,34,110,111,100,101,110,97,109,101,34,10,82,111,108,101,115,58,32,65,85,84,72,79,82,73,84,89,10,66,101,115,116,32,98,108,111,99,107,58,32,35,34,115,121,110,99,101,100,95,104,101,105,103,104,116,34,10,76,111,99,97,108,32,110,111,100,101,32,97,100,100,114,101,115,115,32,105,115,58,32,47,105,112,52,47,48,46,48,46,48,46,48,47,116,99,112,47,51,48,51,51,51,47,112,50,112,47,34,121,111,117,114,95,110,111,100,101,95,107,101,121,34,10,76,105,115,116,101,110,105,110,103,32,102,111,114,32,110,101,119,32,99,111,110,110,101,99,116,105,111,110,115,32,111,110,32,49,50,55,46,48,46,48,46,49,58,57,57,52,52,46,10,85,115,105,110,103,32,97,117,116,104,111,114,105,116,121,32,107,101,121,32,32,34,53,89,111,117,114,74,111,121,83,101,115,115,105,111,110,65,100,100,114,101,115,115,34,32,32,35,32,83,101,101,32,78,111,116,101,10,46,46,46,10,96,96,96,10,42,42,78,111,116,101,42,42,10,73,102,32,121,111,117,114,32,96,115,101,115,115,105,111,110,96,32,119,97,115,32,103,101,110,101,114,97,116,101,100,32,97,115,32,96,83,99,104,110,111,114,114,107,101,108,32,40,115,114,50,53,53,49,57,41,96,44,32,105,116,32,119,105,108,108,32,115,104,111,119,32,97,32,99,111,109,112,108,101,116,101,108,121,32,100,105,102,102,101,114,101,110,116,32,97,100,100,114,101,115,115,46,32,73,102,32,116,104,105,115,32,104,97,112,112,101,110,115,44,32,103,111,32,98,97,99,107,32,97,110,100,32,103,101,110,101,114,97,116,101,32,97,32,110,101,119,32,91,115,101,115,115,105,111,110,32,107,101,121,93,40,35,103,101,110,101,114,97,116,101,45,121,111,117,114,45,107,101,121,115,45,50,41,32,119,105,116,104,32,96,69,100,119,97,114,100,115,32,40,101,100,50,53,53,49,57,41,96,46,32,73,102,32,121,111,117,32,100,111,110,39,116,44,32,121,111,117,114,32,110,111,100,101,32,119,105,108,108,32,116,114,121,32,116,111,32,115,105,103,110,32,98,108,111,99,107,115,32,119,105,116,104,32,116,104,101,32,119,114,111,110,103,32,107,101,121,46,32,65,115,32,97,32,99,111,110,115,101,113,117,101,110,99,101,44,32,121,111,117,32,119,105,108,108,32,103,101,116,32,115,108,97,115,104,101,100,32,97,110,100,32,107,105,99,107,101,100,32,111,117,116,32,97,115,32,96,86,97,108,105,100,97,116,111,114,96,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179622},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[158,{"id":158,"thread_id":17,"nr_in_thread":12,"current_text":[35,35,35,35,32,70,105,110,97,108,32,83,116,101,112,10,10,78,111,119,32,105,116,39,115,32,116,105,109,101,32,116,111,32,99,111,110,102,105,103,117,114,101,32,121,111,117,114,32,107,101,121,115,32,116,111,32,115,116,97,114,116,32,118,97,108,105,100,97,116,105,110,103,46,32],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179634},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[159,{"id":159,"thread_id":17,"nr_in_thread":13,"current_text":[35,35,35,35,32,67,111,110,102,105,103,117,114,101,32,121,111,117,114,32,118,97,108,105,100,97,116,111,114,32,107,101,121,115,10,10,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,97,32,96,86,97,108,105,100,97,116,111,114,96,44,32,121,111,117,32,110,101,101,100,32,116,111,32,115,116,97,107,101,46,32,78,111,116,101,32,116,104,97,116,32,121,111,117,32,109,97,121,32,104,97,118,101,32,116,111,32,114,101,102,114,101,115,104,32,121,111,117,114,32,98,114,111,119,115,101,114,32,105,102,32,121,111,117,39,114,101,32,110,111,116,32,115,101,101,105,110,103,32,116,104,101,32,111,112,116,105,111,110,115,32,114,105,103,104,116,32,97,119,97,121,46,10,10,42,42,73,77,80,79,82,84,65,78,84,58,42,42,32,82,101,97,100,32,115,116,101,112,32,49,51,46,32,99,97,114,101,102,117,108,108,121,46,32,89,111,117,114,32,110,111,100,101,32,110,101,101,100,115,32,116,111,32,98,101,32,102,117,108,108,121,32,115,121,110,99,101,100,44,32,98,101,102,111,114,101,32,112,114,111,99,101,101,100,105,110,103,32,116,111,32,115,116,101,112,32,49,52,46,10,10,49,46,32,83,116,105,108,108,32,105,110,32,116,104,101,32,96,77,121,32,75,101,121,115,96,32,115,105,100,101,98,97,114,32,111,102,32,116,104,101,32,91,80,105,111,110,101,101,114,32,65,112,112,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,112,105,111,110,101,101,114,41,44,32,99,104,111,111,115,101,32,121,111,117,114,32,96,115,116,97,115,104,96,32,107,101,121,46,10,50,46,32,67,108,105,99,107,32,116,104,101,32,96,70,114,101,101,32,84,111,107,101,110,115,96,32,108,105,110,107,32,98,101,108,111,119,32,121,111,117,114,32,97,100,100,114,101,115,115,44,32,91,111,114,32,99,108,105,99,107,32,104,101,114,101,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,102,97,117,99,101,116,41,46,32,83,111,108,118,101,32,116,104,101,32,99,97,112,116,99,104,97,44,32,97,110,100,32,121,111,117,32,115,104,111,117,108,100,32,114,101,99,101,105,118,101,32,116,111,107,101,110,115,46,10,51,46,32,83,101,110,100,32,115,111,109,101,32,116,111,107,101,110,115,32,116,111,32,121,111,117,114,32,96,99,111,110,116,114,111,108,108,101,114,96,46,32,73,116,32,110,101,101,100,115,32,116,111,32,112,101,114,102,111,114,109,32,97,116,32,108,101,97,115,116,32,116,119,111,32,116,114,97,110,115,97,99,116,105,111,110,115,44,32,98,117,116,32,98,101,116,116,101,114,32,116,111,32,115,101,110,100,32,126,49,48,46,10,52,46,32,78,111,119,44,32,99,108,105,99,107,32,96,86,97,108,105,100,97,116,111,114,115,96,32,105,110,32,116,104,101,32,115,105,100,101,98,97,114,44,32,97,110,100,32,116,104,101,110,32,116,104,101,32,96,86,97,108,105,100,97,116,111,114,32,83,116,97,107,105,110,103,96,32,116,97,98,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179652},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[160,{"id":160,"thread_id":17,"nr_in_thread":14,"current_text":[53,46,32,76,111,99,97,116,101,32,116,104,101,32,97,100,100,114,101,115,115,47,107,101,121,32,110,97,109,101,100,32,96,115,116,97,115,104,96,44,32,97,110,100,32,99,108,105,99,107,32,96,66,111,110,100,32,70,117,110,100,115,96,46,10,54,46,32,73,110,32,116,104,101,32,112,111,112,117,112,32,119,105,110,100,111,119,44,32,99,104,111,111,115,101,32,121,111,117,114,32,96,99,111,110,116,114,111,108,108,101,114,96,32,97,115,32,116,104,101,32,96,99,111,110,116,114,111,108,108,101,114,32,97,99,99,111,117,110,116,96,46,10,55,46,32,69,110,116,101,114,32,116,104,101,32,97,109,111,117,110,116,32,121,111,117,32,119,97,110,116,32,116,111,32,115,116,97,107,101,32,105,110,32,116,104,101,32,96,118,97,108,117,101,32,98,111,110,100,101,100,96,32,102,105,101,108,100,46,32,40,73,116,32,99,111,117,108,100,32,98,101,32,119,105,115,101,32,116,111,32,108,101,97,118,101,32,97,32,99,111,117,112,108,101,32,111,102,32,74,111,121,32,108,101,102,116,41,46,10,56,46,32,73,110,32,116,104,101,32,96,112,97,121,109,101,110,116,32,100,101,115,116,105,110,97,116,105,111,110,96,32,100,114,111,112,100,111,119,110,44,32,116,104,101,114,101,32,97,114,101,32,116,104,114,101,101,32,111,112,116,105,111,110,115,46,32,83,101,108,101,99,116,32,116,104,101,32,100,101,102,97,117,108,116,32,96,83,116,97,115,104,32,97,99,99,111,117,110,116,32,40,105,110,99,114,101,97,115,101,32,116,104,101,32,97,109,111,117,110,116,32,97,116,32,115,116,97,107,101,41,96,44,32,111,114,32,103,111,32,116,111,32,91,97,100,118,97,110,99,101,100,93,40,35,98,111,110,100,105,110,103,45,112,114,101,102,101,114,101,110,99,101,115,41,46,10,57,46,32,84,104,101,32,98,117,116,116,111,110,32,96,98,111,110,100,96,32,115,104,111,117,108,100,32,98,101,32,104,105,103,104,108,105,103,104,116,101,100,32,110,111,119,46,32,67,108,105,99,107,32,105,116,46,10,49,48,46,32,84,121,112,101,32,105,110,32,121,111,117,114,32,112,97,115,115,119,111,114,100,32,105,110,32,116,104,101,32,96,117,110,108,111,99,107,32,119,105,116,104,32,112,97,115,115,119,111,114,100,96,32,102,105,101,108,100,32,97,110,100,32,99,108,105,99,107,32,96,115,105,103,110,32,97,110,100,32,115,117,98,109,105,116,96,46,10,49,49,46,32,89,111,117,114,32,96,99,111,110,116,114,111,108,108,101,114,96,32,97,99,99,111,117,110,116,32,115,104,111,117,108,100,32,110,111,119,32,115,104,111,119,32,97,32,96,83,101,116,32,83,101,115,115,105,111,110,32,75,101,121,96,32,98,117,116,116,111,110,46,32,67,108,105,99,107,32,105,116,46,10,49,50,46,32,73,110,32,116,104,101,32,112,111,112,117,112,44,32,115,101,108,101,99,116,32,121,111,117,114,32,96,115,101,115,115,105,111,110,96,32,97,115,32,121,111,117,114,32,96,115,101,115,115,105,111,110,32,107,101,121,96,32,105,110,32,116,104,101,32,100,114,111,112,100,111,119,110,46,32,67,111,110,102,105,114,109,44,32,115,105,103,110,32,97,110,100,32,115,117,98,109,105,116,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179664},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[161,{"id":161,"thread_id":17,"nr_in_thread":15,"current_text":[49,51,46,32,89,111,117,32,110,101,101,100,32,116,111,32,99,104,101,99,107,32,121,111,117,114,32,110,111,100,101,44,32,119,104,105,99,104,32,121,111,117,32,115,116,97,114,116,101,100,32,101,97,114,108,105,101,114,46,32,73,110,32,116,104,101,32,111,117,116,112,117,116,32,96,116,97,114,103,101,116,61,35,34,98,108,111,99,107,95,104,101,105,103,104,116,34,96,32,115,104,111,117,108,100,32,101,113,117,97,108,32,96,98,101,115,116,58,32,35,34,115,121,110,99,101,100,95,104,101,105,103,104,116,34,96,46,32,68,111,32,110,111,116,32,112,114,111,99,101,101,100,32,98,101,102,111,114,101,32,116,104,111,115,101,32,116,119,111,32,118,97,108,117,101,115,32,97,114,101,32,105,100,101,110,116,105,99,97,108,44,32,97,115,32,121,111,117,114,32,110,111,100,101,32,119,105,108,108,32,98,101,32,100,114,111,112,112,101,100,32,111,117,116,32,102,114,111,109,32,116,104,101,32,118,97,108,105,100,97,116,111,114,115,32,105,102,32,121,111,117,114,32,110,111,100,101,32,105,115,32,110,111,116,32,102,117,108,108,121,32,115,121,110,99,101,100,46,32,73,102,32,121,111,117,32,100,105,100,32,115,116,97,114,116,32,121,111,117,114,32,110,111,100,101,32,119,105,116,104,32,96,45,45,110,97,109,101,32,60,110,111,100,101,110,97,109,101,62,96,32,112,97,114,97,109,101,116,101,114,44,32,116,104,101,110,32,121,111,117,32,97,108,115,111,32,99,97,110,32,99,104,101,99,107,32,105,102,32,121,111,117,114,32,110,111,100,101,32,105,115,32,102,117,108,108,121,32,115,121,110,99,101,100,32,102,114,111,109,32,91,84,101,108,101,109,101,116,114,121,93,40,104,116,116,112,115,58,47,47,116,101,108,101,109,101,116,114,121,46,112,111,108,107,97,100,111,116,46,105,111,47,35,108,105,115,116,47,74,111,121,115,116,114,101,97,109,37,50,48,84,101,115,116,110,101,116,37,50,48,118,50,41,46,10,49,52,46,32,89,111,117,114,32,96,99,111,110,116,114,111,108,108,101,114,96,32,97,99,99,111,117,110,116,32,115,104,111,117,108,100,32,110,111,119,32,115,104,111,119,32,97,32,96,86,97,108,105,100,97,116,101,96,32,98,117,116,116,111,110,46,32,67,108,105,99,107,32,105,116,46,10,49,53,46,32,89,111,117,32,99,97,110,32,108,101,97,118,101,32,116,104,101,32,96,117,110,115,116,97,107,101,32,116,104,114,101,115,104,111,108,100,96,32,97,110,100,32,96,112,97,121,109,101,110,116,32,112,114,101,102,101,114,101,110,99,101,115,96,32,97,115,32,100,101,102,97,117,108,116,115,44,32,111,114,32,103,111,32,116,111,32,91,97,100,118,97,110,99,101,100,93,40,35,118,97,108,105,100,97,116,105,110,103,45,112,114,101,102,101,114,101,110,99,101,115,41,46,32,67,111,110,102,105,114,109,44,32,115,105,103,110,32,97,110,100,32,115,117,98,109,105,116,46,10,10,82,101,102,114,101,115,104,32,121,111,117,114,32,98,114,111,119,115,101,114,44,32,97,110,100,32,115,101,108,101,99,116,32,116,104,101,32,96,86,97,108,105,100,97,116,111,114,32,79,118,101,114,118,105,101,119,96,32,116,97,98,46,32,73,102,32,121,111,117,114,32,97,99,99,111,117,110,116,32,115,104,111,119,115,32,117,110,100,101,114,32,96,110,101,120,116,32,117,112,96,44,32,119,97,105,116,32,102,111,114,32,116,104,101,32,110,101,120,116,32,96,101,114,97,96,44,32,97,110,100,32,121,111,117,32,119,105,108,108,32,98,101,32,109,111,118,101,100,32,116,111,32,116,104,101,32,96,118,97,108,105,100,97,116,111,114,115,96,32,108,105,115,116,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179676},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[162,{"id":162,"thread_id":19,"nr_in_thread":2,"current_text":[35,35,35,35,35,32,69,120,97,109,112,108,101,32,119,105,116,104,32,117,115,101,114,32,106,111,121,115,116,114,101,97,109,10,10,84,104,101,32,101,120,97,109,112,108,101,32,98,101,108,111,119,32,97,115,115,117,109,101,115,32,116,104,101,32,102,111,108,108,111,119,105,110,103,58,10,45,32,89,111,117,32,119,97,110,116,32,116,111,32,114,101,115,116,97,114,116,32,121,111,117,114,32,110,111,100,101,32,101,118,101,114,121,32,50,52,104,32,40,96,56,54,52,48,48,96,115,41,10,45,32,89,111,117,32,104,97,118,101,32,115,101,116,117,112,32,97,32,117,115,101,114,32,96,106,111,121,115,116,114,101,97,109,96,32,116,111,32,114,117,110,32,116,104,101,32,110,111,100,101,10,45,32,84,104,101,32,112,97,116,104,32,116,111,32,116,104,101,32,96,106,111,121,115,116,114,101,97,109,45,110,111,100,101,96,32,98,105,110,97,114,121,32,105,115,32,96,47,104,111,109,101,47,106,111,121,115,116,114,101,97,109,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,96,10,10,96,96,96,10,91,85,110,105,116,93,10,68,101,115,99,114,105,112,116,105,111,110,61,74,111,121,115,116,114,101,97,109,32,78,111,100,101,10,65,102,116,101,114,61,110,101,116,119,111,114,107,46,116,97,114,103,101,116,10,10,91,83,101,114,118,105,99,101,93,10,84,121,112,101,61,115,105,109,112,108,101,10,85,115,101,114,61,106,111,121,115,116,114,101,97,109,10,87,111,114,107,105,110,103,68,105,114,101,99,116,111,114,121,61,47,104,111,109,101,47,106,111,121,115,116,114,101,97,109,47,10,69,120,101,99,83,116,97,114,116,61,47,104,111,109,101,47,106,111,121,115,116,114,101,97,109,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,32,92,10,32,32,32,32,32,32,32,32,45,45,111,117,116,45,112,101,101,114,115,32,49,48,48,32,92,10,32,32,32,32,32,32,32,32,45,45,105,110,45,112,101,101,114,115,32,49,48,48,32,92,10,32,32,32,32,32,32,32,32,45,45,118,97,108,105,100,97,116,111,114,32,92,10,32,32,32,32,32,32,32,32,45,45,107,101,121,32,60,48,120,89,111,117,114,76,111,110,103,83,101,115,115,105,111,110,82,97,119,83,101,101,100,62,32,92,10,32,32,32,32,32,32,32,32,45,45,110,97,109,101,32,60,110,111,100,101,110,97,109,101,62,10,82,101,115,116,97,114,116,61,97,108,119,97,121,115,10,82,117,110,116,105,109,101,77,97,120,83,101,99,61,56,54,52,48,48,10,82,101,115,116,97,114,116,83,101,99,61,51,10,76,105,109,105,116,78,79,70,73,76,69,61,56,49,57,50,10,10,91,73,110,115,116,97,108,108,93,10,87,97,110,116,101,100,66,121,61,109,117,108,116,105,45,117,115,101,114,46,116,97,114,103,101,116,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179880},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[163,{"id":163,"thread_id":19,"nr_in_thread":3,"current_text":[73,102,32,121,111,117,32,106,117,115,116,32,119,97,110,116,32,116,111,32,104,97,118,101,32,116,104,101,32,110,111,100,101,32,114,101,115,116,97,114,116,32,105,102,32,105,116,32,99,114,97,115,104,101,115,44,32,114,101,112,108,97,99,101,58,10,10,96,96,96,10,82,101,115,116,97,114,116,61,97,108,119,97,121,115,10,82,117,110,116,105,109,101,77,97,120,83,101,99,61,56,54,52,48,48,10,35,32,119,105,116,104,10,82,101,115,116,97,114,116,61,111,110,45,102,97,105,108,117,114,101,10,96,96,96,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179892},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[164,{"id":164,"thread_id":19,"nr_in_thread":4,"current_text":[35,35,35,35,35,32,69,120,97,109,112,108,101,32,97,115,32,114,111,111,116,10,10,84,104,101,32,101,120,97,109,112,108,101,32,98,101,108,111,119,32,97,115,115,117,109,101,115,32,116,104,101,32,102,111,108,108,111,119,105,110,103,58,10,45,32,89,111,117,32,119,97,110,116,32,116,111,32,114,101,115,116,97,114,116,32,121,111,117,114,32,110,111,100,101,32,101,118,101,114,121,32,50,52,104,32,40,96,56,54,52,48,48,96,115,41,10,45,32,89,111,117,32,104,97,118,101,32,115,101,116,117,112,32,97,32,117,115,101,114,32,96,114,111,111,116,96,32,116,111,32,114,117,110,32,116,104,101,32,110,111,100,101,10,45,32,84,104,101,32,112,97,116,104,32,116,111,32,116,104,101,32,96,106,111,121,115,116,114,101,97,109,45,110,111,100,101,96,32,98,105,110,97,114,121,32,105,115,32,96,47,114,111,111,116,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,96,10,10,96,96,96,10,91,85,110,105,116,93,10,68,101,115,99,114,105,112,116,105,111,110,61,74,111,121,115,116,114,101,97,109,32,78,111,100,101,10,65,102,116,101,114,61,110,101,116,119,111,114,107,46,116,97,114,103,101,116,10,10,91,83,101,114,118,105,99,101,93,10,84,121,112,101,61,115,105,109,112,108,101,10,85,115,101,114,61,114,111,111,116,10,87,111,114,107,105,110,103,68,105,114,101,99,116,111,114,121,61,47,114,111,111,116,47,10,69,120,101,99,83,116,97,114,116,61,47,114,111,111,116,47,106,111,121,115,116,114,101,97,109,45,110,111,100,101,32,92,10,32,32,32,32,32,32,32,32,45,45,111,117,116,45,112,101,101,114,115,32,49,48,48,32,92,10,32,32,32,32,32,32,32,32,45,45,105,110,45,112,101,101,114,115,32,49,48,48,32,92,10,32,32,32,32,32,32,32,32,45,45,118,97,108,105,100,97,116,111,114,32,92,10,32,32,32,32,32,32,32,32,45,45,107,101,121,32,60,48,120,89,111,117,114,76,111,110,103,83,101,115,115,105,111,110,82,97,119,83,101,101,100,62,32,92,10,32,32,32,32,32,32,32,32,45,45,110,97,109,101,32,60,110,111,100,101,110,97,109,101,62,10,82,101,115,116,97,114,116,61,97,108,119,97,121,115,10,82,117,110,116,105,109,101,77,97,120,83,101,99,61,56,54,52,48,48,10,82,101,115,116,97,114,116,83,101,99,61,51,10,76,105,109,105,116,78,79,70,73,76,69,61,56,49,57,50,10,10,91,73,110,115,116,97,108,108,93,10,87,97,110,116,101,100,66,121,61,109,117,108,116,105,45,117,115,101,114,46,116,97,114,103,101,116,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179904},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[165,{"id":165,"thread_id":19,"nr_in_thread":5,"current_text":[73,102,32,121,111,117,32,106,117,115,116,32,119,97,110,116,32,116,111,32,104,97,118,101,32,116,104,101,32,110,111,100,101,32,114,101,115,116,97,114,116,32,105,102,32,105,116,32,99,114,97,115,104,101,115,44,32,114,101,112,108,97,99,101,58,10,10,96,96,96,10,82,101,115,116,97,114,116,61,97,108,119,97,121,115,10,82,117,110,116,105,109,101,77,97,120,83,101,99,61,56,54,52,48,48,10,35,32,119,105,116,104,10,82,101,115,116,97,114,116,61,111,110,45,102,97,105,108,117,114,101,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179910},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[166,{"id":166,"thread_id":19,"nr_in_thread":6,"current_text":[35,35,35,35,32,83,116,97,114,116,105,110,103,32,116,104,101,32,115,101,114,118,105,99,101,10,10,89,111,117,32,99,97,110,32,97,100,100,47,114,101,109,111,118,101,32,97,110,121,32,96,102,108,97,103,115,96,32,97,115,32,108,111,110,103,32,97,115,32,121,111,117,32,114,101,109,101,109,98,101,114,32,116,111,32,105,110,99,108,117,100,101,32,96,92,96,32,102,111,114,32,101,118,101,114,121,32,108,105,110,101,32,98,117,116,32,116,104,101,32,108,97,115,116,46,32,65,108,115,111,32,110,111,116,101,32,116,104,97,116,32,115,121,115,116,101,109,100,32,105,115,32,118,101,114,121,32,115,101,110,115,105,116,105,118,101,32,116,111,32,115,121,110,116,97,120,44,32,115,111,32,109,97,107,101,32,115,117,114,101,32,116,104,101,114,101,32,97,114,101,32,110,111,32,101,120,116,114,97,32,115,112,97,99,101,115,32,98,101,102,111,114,101,32,111,114,32,97,102,116,101,114,32,116,104,101,32,96,92,96,46,10,10,65,102,116,101,114,32,121,111,117,32,97,114,101,32,104,97,112,112,121,32,119,105,116,104,32,121,111,117,114,32,99,111,110,102,105,103,117,114,97,116,105,111,110,58,10,10,96,96,96,10,36,32,115,121,115,116,101,109,99,116,108,32,100,97,101,109,111,110,45,114,101,108,111,97,100,10,35,32,116,104,105,115,32,105,115,32,111,110,108,121,32,115,116,114,105,99,116,108,121,32,110,101,99,101,115,115,97,114,121,32,97,102,116,101,114,32,121,111,117,32,99,104,97,110,103,101,100,32,116,104,101,32,46,115,101,114,118,105,99,101,32,102,105,108,101,32,97,102,116,101,114,32,114,117,110,110,105,110,103,44,32,98,117,116,32,99,104,97,110,99,101,115,32,97,114,101,32,121,111,117,32,119,105,108,108,32,110,101,101,100,32,116,111,32,117,115,101,32,105,116,32,111,110,99,101,32,111,114,32,116,119,105,99,101,46,10,35,32,105,102,32,121,111,117,114,32,110,111,100,101,32,105,115,32,115,116,105,108,108,32,114,117,110,110,105,110,103,44,32,110,111,119,32,105,115,32,116,104,101,32,116,105,109,101,32,116,111,32,107,105,108,108,32,105,116,46,10,36,32,115,121,115,116,101,109,99,116,108,32,115,116,97,114,116,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,10,35,32,105,102,32,101,118,101,114,121,116,104,105,110,103,32,105,115,32,99,111,114,114,101,99,116,108,121,32,99,111,110,102,105,103,117,114,101,100,44,32,116,104,105,115,32,99,111,109,109,97,110,100,32,119,105,108,108,32,110,111,116,32,114,101,116,117,114,110,32,97,110,121,116,104,105,110,103,46,10,35,32,84,111,32,118,101,114,105,102,121,32,105,116,39,115,32,114,117,110,110,105,110,103,58,10,36,32,115,121,115,116,101,109,99,116,108,32,115,116,97,116,117,115,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,10,35,32,116,104,105,115,32,119,105,108,108,32,111,110,108,121,32,115,104,111,119,32,116,104,101,32,108,97,115,116,32,102,101,119,32,108,105,110,101,115,46,32,84,111,32,115,101,101,32,116,104,101,32,108,97,116,101,115,116,32,49,48,48,32,101,110,116,114,105,101,115,32,40,97,110,100,32,102,111,108,108,111,119,32,97,115,32,110,101,119,32,97,114,101,32,97,100,100,101,100,41,10,36,32,106,111,117,114,110,97,108,99,116,108,32,45,110,32,49,48,48,32,45,102,32,45,117,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179940},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[167,{"id":167,"thread_id":19,"nr_in_thread":7,"current_text":[96,96,96,10,35,32,84,111,32,109,97,107,101,32,116,104,101,32,115,101,114,118,105,99,101,32,115,116,97,114,116,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,97,116,32,98,111,111,116,58,10,36,32,115,121,115,116,101,109,99,116,108,32,101,110,97,98,108,101,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,10,96,96,96,10,89,111,117,32,99,97,110,32,114,101,115,116,97,114,116,32,116,104,101,32,115,101,114,118,105,99,101,32,119,105,116,104,58,10,45,32,96,115,121,115,116,101,109,99,116,108,32,114,101,115,116,97,114,116,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,96,10,10,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,99,104,97,110,103,101,32,115,111,109,101,116,104,105,110,103,32,40,111,114,32,106,117,115,116,32,115,116,111,112,41,44,32,114,117,110,58,10,45,32,96,115,121,115,116,101,109,99,116,108,32,115,116,111,112,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,96,10,10,66,101,102,111,114,101,32,121,111,117,32,109,97,107,101,32,116,104,101,32,99,104,97,110,103,101,115,46,32,65,102,116,101,114,32,99,104,97,110,103,105,110,103,58,10,10,96,96,96,10,36,32,115,121,115,116,101,109,99,116,108,32,100,97,101,109,111,110,45,114,101,108,111,97,100,10,36,32,115,121,115,116,101,109,99,116,108,32,115,116,97,114,116,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569179952},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[168,{"id":168,"thread_id":19,"nr_in_thread":8,"current_text":[35,35,35,35,32,69,114,114,111,114,115,10,10,73,102,32,121,111,117,32,109,97,107,101,32,97,32,109,105,115,116,97,107,101,32,115,111,109,101,119,104,101,114,101,44,32,96,115,121,115,116,101,109,99,116,108,32,115,116,97,114,116,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,96,32,119,105,108,108,32,112,114,111,109,112,116,58,10,96,96,96,10,70,97,105,108,101,100,32,116,111,32,115,116,97,114,116,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,46,115,101,114,118,105,99,101,58,32,85,110,105,116,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,46,115,101,114,118,105,99,101,32,105,115,32,110,111,116,32,108,111,97,100,101,100,32,112,114,111,112,101,114,108,121,58,32,73,110,118,97,108,105,100,32,97,114,103,117,109,101,110,116,46,10,83,101,101,32,115,121,115,116,101,109,32,108,111,103,115,32,97,110,100,32,39,115,121,115,116,101,109,99,116,108,32,115,116,97,116,117,115,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,46,115,101,114,118,105,99,101,39,32,102,111,114,32,100,101,116,97,105,108,115,46,10,96,96,96,10,70,111,108,108,111,119,32,116,104,101,32,105,110,115,116,114,117,99,116,105,111,110,115,44,32,97,110,100,32,115,101,101,32,105,102,32,97,110,121,116,104,105,110,103,32,108,111,111,107,115,32,119,114,111,110,103,46,32,67,111,114,114,101,99,116,32,105,116,44,32,116,104,101,110,58,10,10,96,96,96,10,36,32,115,121,115,116,101,109,99,116,108,32,100,97,101,109,111,110,45,114,101,108,111,97,100,10,36,32,115,121,115,116,101,109,99,116,108,32,115,116,97,114,116,32,106,111,121,115,116,114,101,97,109,45,110,111,100,101,10,96,96,96,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569180024},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[169,{"id":169,"thread_id":19,"nr_in_thread":9,"current_text":[35,35,32,83,101,116,116,105,110,103,115,10,10,73,102,32,121,111,117,32,100,111,110,39,116,32,119,97,110,116,32,116,111,32,117,115,101,32,116,104,101,32,100,101,102,97,117,108,116,32,115,101,116,116,105,110,103,115,44,32,104,101,114,101,32,97,114,101,32,115,111,109,101,32,111,102,32,116,104,101,32,111,112,116,105,111,110,115,32,121,111,117,32,99,97,110,32,99,111,110,102,105,103,117,114,101,46,10,10,35,35,35,35,32,66,111,110,100,105,110,103,32,112,114,101,102,101,114,101,110,99,101,115,10,84,104,101,32,98,111,110,100,105,110,103,32,112,114,101,102,101,114,101,110,99,101,115,32,100,101,99,105,100,101,115,32,111,110,32,104,111,119,32,119,104,101,114,101,32,121,111,117,114,32,40,74,111,121,41,32,115,116,97,107,105,110,103,32,114,101,119,97,114,100,115,32,97,114,101,32,100,105,115,116,114,105,98,117,116,101,100,46,32,84,104,101,114,101,32,97,114,101,32,116,104,114,101,101,32,97,108,116,101,114,110,97,116,105,118,101,115,58,10,49,46,32,96,83,116,97,115,104,32,97,99,99,111,117,110,116,32,40,105,110,99,114,101,97,115,101,32,116,104,101,32,97,109,111,117,110,116,32,97,116,32,115,116,97,107,101,41,96,32,40,100,101,102,97,117,108,116,41,46,10,10,84,104,105,115,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,115,101,110,100,115,32,97,108,108,32,114,101,119,97,114,100,115,32,116,104,101,32,96,115,116,97,115,104,96,32,97,100,100,114,101,115,115,44,32,119,104,101,114,101,32,105,116,32,103,101,116,115,32,98,111,110,100,101,100,32,97,115,32,97,110,32,97,100,100,105,116,105,111,110,97,108,32,115,116,97,107,101,46,32,84,104,105,115,32,119,105,108,108,32,105,110,99,114,101,97,115,101,32,121,111,117,114,32,112,114,111,98,97,98,105,108,105,116,121,32,111,102,32,115,116,97,121,105,110,103,32,105,110,32,116,104,101,32,96,118,97,108,105,100,97,116,111,114,96,32,115,101,116,46,10,10,50,46,32,96,83,116,97,115,104,32,97,99,99,111,117,110,116,32,40,100,111,32,110,111,32,105,110,99,114,101,97,115,101,32,116,104,101,32,97,109,111,117,110,116,32,97,116,32,115,116,97,107,101,41,96,10,10,65,115,32,108,105,107,101,32,96,49,46,96,32,116,104,105,115,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,115,101,110,100,115,32,97,108,108,32,114,101,119,97,114,100,115,32,116,104,101,32,96,115,116,97,115,104,96,32,97,100,100,114,101,115,115,44,32,98,117,116,32,100,111,101,115,32,42,110,111,116,42,32,103,101,116,32,98,111,110,100,101,100,32,97,115,32,115,116,97,107,101,44,32,109,101,97,110,105,110,103,32,121,111,117,32,105,116,32,119,105,108,108,32,110,111,116,32,104,101,108,112,32,34,103,117,97,114,100,34,32,121,111,117,114,32,115,112,111,116,32,105,110,32,116,104,101,32,96,118,97,108,105,100,97,116,111,114,96,32,115,101,116,46,10,10,51,46,32,96,67,111,110,116,114,111,108,108,101,114,32,97,99,99,111,117,110,116,96,10,10,84,104,105,115,32,115,101,110,100,115,32,97,108,108,32,114,101,119,97,114,100,115,32,116,111,32,116,104,101,32,96,99,111,110,116,114,111,108,108,101,114,96,44,32,97,116,32,121,111,117,114,32,100,105,115,112,111,115,97,108,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569180048},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[170,{"id":170,"thread_id":19,"nr_in_thread":10,"current_text":[35,35,35,35,32,86,97,108,105,100,97,116,105,110,103,32,112,114,101,102,101,114,101,110,99,101,115,10,49,46,32,84,104,101,32,96,117,110,115,116,97,107,101,32,116,104,114,101,115,104,111,108,100,96,32,105,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,116,105,109,101,115,32,121,111,117,32,99,97,110,32,103,101,116,32,115,108,97,115,104,101,100,32,40,102,111,114,32,98,101,105,110,103,32,111,102,102,108,105,110,101,41,32,98,101,102,111,114,101,32,121,111,117,39,114,101,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,91,117,110,115,116,97,107,101,100,93,40,35,117,110,115,116,97,107,105,110,103,41,46,32,65,32,108,111,119,32,110,117,109,98,101,114,32,99,97,110,32,109,101,97,110,32,121,111,117,32,115,116,111,112,32,98,101,105,110,103,32,96,118,97,108,105,100,97,116,111,114,96,32,106,117,115,116,32,98,101,99,97,117,115,101,32,121,111,117,114,32,105,110,116,101,114,110,101,116,32,105,115,32,100,111,119,110,32,97,32,109,105,110,117,116,101,44,32,98,117,116,32,105,102,32,121,111,117,32,115,101,116,32,116,104,101,32,110,117,109,98,101,114,32,116,111,111,32,104,105,103,104,44,32,121,111,117,32,119,105,108,108,32,103,101,116,32,115,108,97,115,104,101,100,32,104,101,97,118,105,108,121,32,105,102,32,121,111,117,114,32,110,111,100,101,32,98,114,101,97,107,115,32,100,111,119,110,32,111,114,32,121,111,117,32,108,111,115,101,32,116,104,101,32,105,110,116,101,114,110,101,116,32,102,111,114,32,97,110,32,104,111,117,114,46,10,10,50,46,32,84,104,101,32,96,112,97,121,109,101,110,116,32,112,114,101,102,101,114,101,110,99,101,115,96,32,105,115,32,104,111,119,32,116,104,101,32,40,106,111,121,41,32,115,116,97,107,105,110,103,32,114,101,119,97,114,100,115,32,97,114,101,32,115,112,108,105,116,32,98,101,116,119,101,101,110,32,121,111,117,114,115,101,108,102,32,97,110,100,32,97,110,121,32,112,111,116,101,110,116,105,97,108,32,91,110,111,109,105,110,97,116,111,114,115,93,40,35,110,111,109,105,110,97,116,105,110,103,41,46,32,84,104,101,32,100,101,102,97,117,108,116,32,40,48,41,32,109,101,97,110,115,32,116,104,97,116,32,116,104,101,32,114,101,119,97,114,100,32,105,115,32,115,112,108,105,116,32,98,97,115,101,100,32,111,110,32,116,104,101,32,97,109,111,117,110,116,32,111,102,32,98,111,110,100,101,100,32,115,116,97,107,101,32,116,104,101,32,96,118,97,108,105,100,97,116,111,114,96,32,97,110,100,32,96,110,111,109,105,110,97,116,111,114,115,96,32,104,97,118,101,32,112,117,116,32,117,112,46,32],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569180078},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[171,{"id":171,"thread_id":19,"nr_in_thread":11,"current_text":[69,120,97,109,112,108,101,58,10,10,76,101,116,32,96,118,96,32,91,74,111,121,93,32,98,101,32,116,104,101,32,98,111,110,100,101,100,32,116,111,107,101,110,115,32,102,111,114,32,116,104,101,32,118,97,108,105,100,97,116,111,114,32,96,115,116,97,115,104,96,10,76,101,116,32,96,112,96,32,91,74,111,121,93,32,98,101,32,116,104,101,32,96,112,97,121,109,101,110,116,32,112,114,101,102,101,114,101,110,99,101,96,32,100,101,99,105,100,101,100,32,98,121,32,116,104,101,32,118,97,108,105,100,97,116,111,114,10,76,101,116,32,96,110,49,96,32,91,74,111,121,93,32,98,101,32,116,104,101,194,160,98,111,110,100,101,100,32,116,111,107,101,110,115,32,102,111,114,32,116,104,101,32,110,111,109,105,110,97,116,111,114,49,32,96,115,116,97,115,104,96,10,76,101,116,32,96,110,50,96,32,91,74,111,121,93,32,98,101,32,116,104,101,194,160,98,111,110,100,101,100,32,116,111,107,101,110,115,32,102,111,114,32,116,104,101,32,110,111,109,105,110,97,116,111,114,50,32,96,115,116,97,115,104,96,10,76,101,116,32,96,114,96,32,91,74,111,121,93,32,98,101,32,116,104,101,32,114,101,119,97,114,100,32,116,104,97,116,32,96,101,114,97,96,10,10,96,96,96,10,35,32,112,97,121,111,117,116,32,102,111,114,32,116,104,101,32,118,97,108,105,100,97,116,111,114,10,112,32,43,32,40,118,47,40,118,43,110,49,43,110,50,41,42,40,114,45,112,41,41,10,35,32,112,97,121,111,117,116,32,102,111,114,32,116,104,101,32,110,111,109,105,110,97,116,111,114,49,10,40,110,49,47,40,118,43,110,49,43,110,50,41,42,40,114,45,112,41,41,10,96,96,96],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569180090},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[172,{"id":172,"thread_id":19,"nr_in_thread":12,"current_text":[35,35,32,78,111,109,105,110,97,116,105,110,103,10,10,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,103,101,116,32,115,111,109,101,32,114,101,116,117,114,110,32,111,110,32,121,111,117,114,32,116,111,107,101,110,115,32,119,105,116,104,111,117,116,32,114,117,110,110,105,110,103,32,97,32,110,111,100,101,32,121,111,117,114,115,101,108,102,44,32,121,111,117,32,99,97,110,32,96,110,111,109,105,110,97,116,101,96,32,97,110,111,116,104,101,114,32,96,118,97,108,105,100,97,116,111,114,96,32,97,110,100,32,103,101,116,32,97,32,115,104,97,114,101,32,111,102,32,116,104,101,105,114,32,114,101,119,97,114,100,115,46,10,10,84,104,105,115,32,109,105,103,104,116,32,97,108,115,111,32,99,111,109,101,32,105,110,32,104,97,110,100,121,32,105,102,32,116,104,101,114,101,32,97,114,101,32,116,111,111,32,109,97,110,121,32,96,118,97,108,105,100,97,116,111,114,115,96,32,97,110,100,32,121,111,117,32,100,111,110,39,116,32,104,97,118,101,32,101,110,111,117,103,104,32,116,111,107,101,110,115,32,103,101,116,32,97,32,115,112,111,116,44,32,111,114,32,105,102,32,121,111,117,32,104,97,118,101,32,116,111,32,115,104,117,116,32,100,111,119,110,32,121,111,117,114,32,111,119,110,32,110,111,100,101,32,102,111,114,32,97,32,119,104,105,108,101,46,10,10,35,35,35,35,32,71,101,110,101,114,97,116,101,32,107,101,121,115,10,73,102,32,121,111,117,32,104,97,118,101,110,39,116,32,97,108,114,101,97,100,121,32,98,101,101,110,32,116,104,114,111,117,103,104,32,116,104,101,32,112,114,111,99,101,115,115,32,111,102,32,115,101,116,116,105,110,103,32,117,112,32,121,111,117,114,32,96,115,116,97,115,104,96,44,32,96,99,111,110,116,114,111,108,108,101,114,96,32,97,110,100,32,96,115,101,115,115,105,111,110,96,32,107,101,121,44,32,121,111,117,32,102,105,114,115,116,32,110,101,101,100,32,116,111,32,103,101,110,101,114,97,116,101,32,121,111,117,114,32,107,101,121,115,32,40,115,101,101,32,118,97,108,105,100,97,116,111,114,32,115,101,116,117,112,41,46,32,78,111,116,101,32,116,104,97,116,32,121,111,117,32,100,111,110,39,116,32,110,101,101,100,32,97,32,96,115,101,115,115,105,111,110,96,32,107,101,121,32,116,111,32,110,111,109,105,110,97,116,101,44,32,115,111,32,121,111,117,32,99,97,110,32,115,107,105,112,32,116,104,111,115,101,32,115,116,101,112,115,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569180114},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[173,{"id":173,"thread_id":19,"nr_in_thread":13,"current_text":[35,35,35,35,32,67,111,110,102,105,103,117,114,101,32,121,111,117,114,32,110,111,109,105,110,97,116,105,110,103,32,107,101,121,115,10,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,97,32,96,110,111,109,105,110,97,116,111,114,96,44,32,121,111,117,32,110,101,101,100,32,115,116,97,107,101,46,32,78,111,116,101,32,116,104,97,116,32,121,111,117,32,109,97,121,32,104,97,118,101,32,116,111,32,114,101,102,114,101,115,104,32,121,111,117,114,32,98,114,111,119,115,101,114,32,105,102,32,121,111,117,39,114,101,32,110,111,116,32,115,101,101,105,110,103,32,116,104,101,32,111,112,116,105,111,110,115,32,114,105,103,104,116,32,97,119,97,121,46,32,73,102,32,121,111,117,32,104,97,118,101,32,112,114,101,118,105,111,117,115,108,121,32,98,101,101,110,32,97,32,96,86,97,108,105,100,97,116,111,114,96,44,32,111,114,32,116,114,105,101,100,32,116,111,32,100,111,32,115,111,44,32,115,107,105,112,32,97,104,101,97,100,32,116,111,32,115,116,101,112,32,96,57,46,96,46,10,10,49,46,32,73,110,32,116,104,101,32,96,77,121,32,75,101,121,115,96,32,115,105,100,101,98,97,114,44,32,99,104,111,111,115,101,32,121,111,117,114,32,96,115,116,97,115,104,96,32,107,101,121,46,10,50,46,32,67,108,105,99,107,32,116,104,101,32,96,70,114,101,101,32,84,111,107,101,110,115,96,32,108,105,110,107,32,98,101,108,111,119,32,121,111,117,114,32,97,100,100,114,101,115,115,44,32,91,111,114,32,99,108,105,99,107,32,104,101,114,101,93,40,104,116,116,112,115,58,47,47,116,101,115,116,110,101,116,46,106,111,121,115,116,114,101,97,109,46,111,114,103,47,102,97,117,99,101,116,41,46,32,83,111,108,118,101,32,116,104,101,32,99,97,112,116,99,104,97,44,32,97,110,100,32,121,111,117,32,115,104,111,117,108,100,32,114,101,99,101,105,118,101,32,116,111,107,101,110,115,46,10,51,46,32,83,101,110,100,32,115,111,109,101,32,116,111,107,101,110,115,32,116,111,32,121,111,117,114,32,96,99,111,110,116,114,111,108,108,101,114,96,46,32,73,116,32,110,101,101,100,115,32,116,111,32,112,101,114,102,111,114,109,32,97,116,32,108,101,97,115,116,32,116,119,111,32,116,114,97,110,115,97,99,116,105,111,110,115,44,32,98,117,116,32,98,101,116,116,101,114,32,116,111,32,115,101,110,100,32,126,49,48,46,10,52,46,32,78,111,119,44,32,99,108,105,99,107,32,96,86,97,108,105,100,97,116,111,114,115,96,32,105,110,32,116,104,101,32,115,105,100,101,98,97,114,44,32,97,110,100,32,116,104,101,110,32,116,104,101,32,96,86,97,108,105,100,97,116,111,114,32,83,116,97,107,105,110,103,96,32,116,97,98,46,10,53,46,32,76,111,99,97,116,101,32,116,104,101,32,97,100,100,114,101,115,115,47,107,101,121,32,110,97,109,101,100,32,96,115,116,97,115,104,96,44,32,97,110,100,32,99,108,105,99,107,32,96,66,111,110,100,32,70,117,110,100,115,96,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569180144},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[174,{"id":174,"thread_id":19,"nr_in_thread":14,"current_text":[54,46,32,73,110,32,116,104,101,32,112,111,112,117,112,32,119,105,110,100,111,119,44,32,99,104,111,111,115,101,32,121,111,117,114,32,96,99,111,110,116,114,111,108,108,101,114,96,32,97,115,32,116,104,101,32,96,99,111,110,116,114,111,108,108,101,114,32,97,99,99,111,117,110,116,96,46,10,55,46,32,69,110,116,101,114,32,116,104,101,32,97,109,111,117,110,116,32,121,111,117,32,119,97,110,116,32,116,111,32,115,116,97,107,101,32,105,110,32,116,104,101,32,96,118,97,108,117,101,32,98,111,110,100,101,100,96,32,102,105,101,108,100,46,10,56,46,32,73,110,32,116,104,101,32,96,112,97,121,109,101,110,116,32,100,101,115,116,105,110,97,116,105,111,110,96,32,100,114,111,112,100,111,119,110,44,32,116,104,101,114,101,32,97,114,101,32,116,104,114,101,101,32,111,112,116,105,111,110,115,46,32,83,101,108,101,99,116,32,116,104,101,32,100,101,102,97,117,108,116,32,96,83,116,97,115,104,32,97,99,99,111,117,110,116,32,40,105,110,99,114,101,97,115,101,32,116,104,101,32,97,109,111,117,110,116,32,97,116,32,115,116,97,107,101,41,96,44,32,111,114,32,103,111,32,116,111,32,91,97,100,118,97,110,99,101,100,93,40,35,98,111,110,100,105,110,103,45,112,114,101,102,101,114,101,110,99,101,115,41,46,10,57,46,32,89,111,117,114,32,96,99,111,110,116,114,111,108,108,101,114,96,32,97,99,99,111,117,110,116,32,115,104,111,117,108,100,32,110,111,119,32,115,104,111,119,32,97,32,96,83,101,116,32,83,101,115,115,105,111,110,32,75,101,121,96,32,97,110,100,32,97,32,96,78,111,109,105,110,97,116,105,110,103,96,32,98,117,116,116,111,110,46,32,67,108,105,99,107,32,116,104,101,32,108,97,116,116,101,114,46,10,49,48,46,32,73,110,32,116,104,101,32,112,111,112,117,112,44,32,115,101,108,101,99,116,47,112,97,115,116,101,32,116,104,101,32,96,115,116,97,115,104,96,32,97,100,100,114,101,115,115,32,111,102,32,116,104,101,32,96,86,97,108,105,100,97,116,111,114,96,32,121,111,117,32,119,105,115,104,32,116,111,32,110,111,109,105,110,97,116,101,46,32,67,111,110,102,105,114,109,44,32,115,105,103,110,32,97,110,100,32,115,117,98,109,105,116,46,10,10,73,110,32,116,104,101,32,110,101,120,116,32,96,101,114,97,96,44,32,121,111,117,32,119,105,108,108,32,115,104,111,119,32,97,115,32,97,32,96,110,111,109,105,110,97,116,111,114,96,32,111,102,32,116,104,101,32,96,86,97,108,105,100,97,116,111,114,96,32,121,111,117,32,110,111,109,105,110,97,116,101,100,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569180156},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[175,{"id":175,"thread_id":20,"nr_in_thread":2,"current_text":[35,35,35,35,32,83,101,115,115,105,111,110,32,107,101,121,10,10,68,105,100,32,121,111,117,32,97,99,99,105,100,101,110,116,97,108,108,121,32,99,104,111,111,115,101,32,96,83,99,104,110,111,114,114,107,101,108,32,40,115,114,50,53,53,49,57,41,96,44,32,105,110,115,116,101,97,100,32,111,102,32,96,69,100,119,97,114,100,115,32,40,101,100,50,53,53,49,57,41,96,32,102,111,114,32,121,111,117,114,32,96,115,101,115,115,105,111,110,96,32,107,101,121,44,32,97,110,100,32,100,105,100,110,39,116,32,110,111,116,105,99,101,32,98,101,102,111,114,101,32,121,111,117,32,99,111,110,102,105,103,117,114,101,100,32,121,111,117,114,32,96,86,97,108,105,100,97,116,111,114,32,107,101,121,115,96,63,32,84,104,105,115,32,99,97,110,32,98,101,32,114,101,115,111,108,118,101,100,46,10,10,49,46,32,71,111,32,116,111,32,96,86,97,108,105,100,97,116,111,114,115,96,32,45,62,32,96,86,97,108,105,100,97,116,111,114,32,83,116,97,107,105,110,103,96,32,97,110,100,32,96,85,110,115,116,97,107,101,96,46,10,10,50,46,32,71,101,110,101,114,97,116,101,32,97,32,110,101,119,32,96,115,101,115,115,105,111,110,96,32,107,101,121,32,119,105,116,104,32,96,69,100,119,97,114,100,115,32,40,101,100,50,53,53,49,57,41,96,44,32,114,101,115,116,97,114,116,32,121,111,117,114,32,110,111,100,101,44,32,97,110,100,32,114,101,112,108,97,99,101,32,116,104,101,32,96,114,97,119,32,115,101,101,100,96,32,119,105,116,104,32,116,104,101,32,110,101,119,32,111,110,101,46,10,10,51,46,32,84,104,101,110,44,32,99,104,111,111,115,101,32,96,83,101,116,116,105,110,103,115,96,32,105,110,32,116,104,101,32,115,105,100,101,98,97,114,44,32,97,110,100,32,115,119,105,116,99,104,32,102,114,111,109,32,96,66,97,115,105,99,32,102,101,97,116,117,114,101,115,32,111,110,108,121,96,32,116,111,32,96,70,117,108,108,121,32,102,101,97,116,117,114,101,100,96,46,10,10,52,46,32,71,111,32,116,111,32,96,69,120,116,114,105,110,115,105,99,115,96,44,32,97,110,100,32,115,101,108,101,99,116,32,121,111,117,114,32,96,99,111,110,116,114,111,108,108,101,114,96,32,107,101,121,32,102,114,111,109,32,116,104,101,32,100,114,111,112,100,111,119,110,32,97,116,32,116,104,101,32,116,111,112,46,32,73,110,32,116,104,101,32,115,101,99,111,110,100,32,100,114,111,112,100,111,119,110,44,32,115,101,108,101,99,116,32,96,115,101,115,115,105,111,110,96,44,32,97,110,100,32,105,110,32,116,104,101,32,116,104,105,114,100,44,32,96,115,101,116,75,101,121,96,46,32,70,105,110,97,108,108,121,44,32,99,104,111,111,115,101,32,121,111,117,114,32,110,101,119,32,96,115,101,115,115,105,111,110,96,32,107,101,121,32,105,110,32,116,104,101,32,102,111,117,114,116,104,32,97,110,100,32,102,105,110,97,108,32,100,114,111,112,100,111,119,110,44,32,97,110,100,32,115,117,98,109,105,116,46,10,10,53,46,32,79,110,99,101,32,105,116,32,99,111,110,102,105,114,109,115,44,32,103,111,32,98,97,99,107,32,116,111,32,96,86,97,108,105,100,97,116,111,114,115,96,32,45,62,32,96,86,97,108,105,100,97,116,111,114,32,83,116,97,107,105,110,103,96,32,97,110,100,32,96,83,116,97,107,101,96,46,10,10,73,110,32,116,104,101,32,96,78,101,120,116,32,117,112,96,44,32,121,111,117,114,32,110,101,119,32,96,115,101,115,115,105,111,110,96,32,107,101,121,32,115,104,111,117,108,100,32,115,104,111,119,44,32,97,110,100,32,109,97,116,99,104,32,116,104,101,32,96,97,117,116,104,111,114,105,116,121,32,107,101,121,96,32,105,110,32,121,111,117,114,32,110,111,100,101,46,32,40,109,105,110,117,115,32,116,104,101,32,102,105,110,97,108,32,51,32,99,104,97,114,97,99,116,101,114,115,41,46,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569180294},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[176,{"id":176,"thread_id":20,"nr_in_thread":3,"current_text":[35,35,35,35,32,85,110,115,116,97,107,105,110,103,10,10,73,102,32,121,111,117,32,115,116,111,112,32,118,97,108,105,100,97,116,105,110,103,32,98,121,32,107,105,108,108,105,110,103,32,121,111,117,114,32,110,111,100,101,32,98,101,102,111,114,101,32,117,110,115,116,97,107,105,110,103,44,32,121,111,117,32,119,105,108,108,32,103,101,116,32,115,108,97,115,104,101,100,32,97,110,100,32,107,105,99,107,101,100,32,102,114,111,109,32,116,104,101,32,96,118,97,108,105,100,97,116,111,114,96,32,115,101,116,46,32,73,102,32,121,111,117,32,107,110,111,119,32,105,110,32,97,100,118,97,110,99,101,32,40,126,49,104,114,41,32,121,111,117,32,99,97,110,32,100,111,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,115,116,101,112,115,32,105,110,115,116,101,97,100,58,10,10,70,105,114,115,116,44,32,109,97,107,101,32,115,117,114,101,32,121,111,117,32,104,97,118,101,32,115,101,116,32,96,70,117,108,108,121,32,70,101,97,116,117,114,101,100,96,32,105,110,116,101,114,102,97,99,101,32,105,110,32,116,104,101,32,96,83,101,116,116,105,110,103,115,96,32,115,105,100,101,98,97,114,46,10,10,49,46,32,73,110,32,96,86,97,108,105,100,97,116,111,114,32,83,116,97,107,105,110,103,96,44,32,99,108,105,99,107,32,96,83,116,111,112,32,86,97,108,105,100,97,116,105,110,103,96,32,119,105,116,104,32,121,111,117,114,32,99,111,110,116,114,111,108,108,101,114,46,32,84,104,105,115,32,99,97,110,32,97,108,115,111,32,98,101,32,100,111,110,101,32,118,105,97,32,96,69,120,116,114,105,110,115,105,99,96,58,32,87,105,116,104,32,96,99,111,110,116,114,111,108,108,101,114,96,32,45,62,32,96,115,116,97,107,105,110,103,96,32,45,62,32,96,99,104,105,108,108,40,41,96,46,10,10,73,102,32,121,111,117,32,97,114,101,32,106,117,115,116,32,112,97,117,115,105,110,103,32,116,104,101,32,96,118,97,108,105,100,97,116,111,114,96,32,97,110,100,32,105,110,116,101,110,100,32,116,111,32,115,116,97,114,116,32,105,116,32,117,112,32,108,97,116,101,114,44,32,121,111,117,32,99,97,110,32,115,116,111,112,32,104,101,114,101,46,32,87,104,101,110,32,121,111,117,32,97,114,101,32,114,101,97,100,121,32,116,111,32,115,116,97,114,116,32,97,103,97,105,110,44,32,102,105,114,101,32,117,112,32,121,111,117,114,32,110,111,100,101,44,32,103,111,32,116,111,32,96,86,97,108,105,100,97,116,111,114,32,83,116,97,107,105,110,103,96,44,32,97,110,100,32,99,108,105,99,107,32,96,86,97,108,105,100,97,116,101,96,46,10,10,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,115,116,111,112,32,98,101,105,110,103,32,97,32,96,118,97,108,105,100,97,116,111,114,96,32,97,110,100,32,109,111,118,101,32,121,111,117,114,32,116,111,107,101,110,115,32,116,111,32,111,116,104,101,114,47,98,101,116,116,101,114,32,117,115,101,44,32,99,111,110,116,105,110,117,101,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569180318},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[177,{"id":177,"thread_id":20,"nr_in_thread":4,"current_text":[10,50,46,32,78,101,120,116,32,121,111,117,32,109,117,115,116,32,117,110,98,111,110,100,46,32,73,110,32,96,69,120,116,114,105,110,115,105,99,115,96,44,32,117,115,105,110,103,32,116,104,101,32,96,99,111,110,116,114,111,108,108,101,114,96,44,32,115,101,108,101,99,116,32,96,115,116,97,107,105,110,103,96,32,45,62,32,96,117,110,98,111,110,100,40,118,97,108,117,101,41,96,32,97,110,100,32,99,104,111,111,115,101,32,104,111,119,32,109,117,99,104,32,121,111,117,32,119,97,110,116,32,116,111,32,117,110,98,111,110,100,44,32,96,60,117,110,98,111,110,100,105,110,103,62,96,46,32,83,117,98,109,105,116,32,84,114,97,110,115,97,99,116,105,111,110,46,10,10,65,116,32,116,104,105,115,32,112,111,105,110,116,44,32,121,111,117,32,99,97,110,32,106,117,115,116,32,119,97,105,116,32,50,104,114,115,32,116,111,32,98,101,32,115,117,114,101,44,32,97,110,100,32,112,114,111,99,101,101,100,32,116,111,32,115,116,101,112,32,96,54,46,96,32,10,10,79,114,58,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569180348},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[178,{"id":178,"thread_id":20,"nr_in_thread":5,"current_text":[51,46,32,71,111,32,116,111,32,96,67,104,97,105,110,32,83,116,97,116,101,96,32,45,62,32,96,115,116,97,107,105,110,103,96,32,45,62,32,96,108,101,100,103,101,114,40,65,99,99,111,117,110,116,73,100,41,58,32,79,112,116,105,111,110,60,83,116,97,107,105,110,103,76,101,100,103,101,114,62,96,32,119,105,116,104,32,116,104,101,32,96,99,111,110,116,114,111,108,108,101,114,96,46,32,79,117,116,112,117,116,58,10,96,96,96,10,35,32,73,102,32,121,111,117,32,104,97,118,101,32,115,117,99,99,101,115,115,102,117,108,108,121,32,105,110,105,116,105,97,116,101,100,32,117,110,115,116,97,107,105,110,103,58,10,123,34,115,116,97,115,104,34,58,34,53,89,111,117,114,83,116,97,115,104,65,100,100,114,101,115,115,34,44,34,116,111,116,97,108,34,58,60,116,111,116,95,98,111,110,100,101,100,62,44,34,97,99,116,105,118,101,34,58,44,60,97,99,116,95,98,111,110,100,101,100,62,58,91,123,34,118,97,108,117,101,34,58,60,117,110,98,111,110,100,105,110,103,62,44,34,101,114,97,34,58,60,69,95,117,110,98,111,110,100,101,100,62,125,93,125,10,35,32,73,102,32,121,111,117,32,104,97,118,101,32,110,111,116,32,115,117,99,99,101,115,115,102,117,108,108,121,32,105,110,105,116,105,97,116,101,100,32,117,110,115,116,97,107,105,110,103,44,32,111,114,32,105,116,32,104,97,115,32,97,108,114,101,97,100,121,32,99,111,109,112,108,101,116,101,100,58,10,123,34,115,116,97,115,104,34,58,34,53,89,111,117,114,83,116,97,115,104,65,100,100,114,101,115,115,34,44,34,116,111,116,97,108,34,58,60,116,111,116,95,98,111,110,100,101,100,62,44,34,97,99,116,105,118,101,34,58,44,34,60,97,99,116,95,98,111,110,100,101,100,62,34,58,91,93,125,10,96,96,96,10,42,32,96,60,116,111,116,95,98,111,110,100,101,100,62,96,32,73,115,32,116,104,101,32,116,111,116,97,108,32,97,109,111,117,110,116,32,121,111,117,32,104,97,118,101,32,115,116,97,107,101,100,47,98,111,110,100,101,100,10,42,32,96,60,97,99,116,95,98,111,110,100,101,100,62,96,32,73,115,32,116,104,101,32,97,109,111,117,110,116,32,111,102,32,116,111,107,101,110,115,32,116,104,97,116,32,105,115,32,110,111,116,32,98,101,105,110,103,32,117,110,108,111,99,107,101,100,10,42,32,96,60,117,110,98,111,110,100,105,110,103,62,96,32,73,115,32,116,104,101,32,97,109,111,117,110,116,32,111,102,32,116,111,107,101,110,115,32,116,104,97,116,32,105,115,32,105,110,32,116,104,101,32,112,114,111,99,101,115,115,32,111,102,32,98,101,105,110,103,32,102,114,101,101,100,10,32,32,42,32,96,60,117,110,98,111,110,100,105,110,103,62,96,32,43,32,96,60,97,99,116,95,98,111,110,100,101,100,62,96,32,61,32,96,60,116,111,116,95,98,111,110,100,101,100,62,96,10,42,32,96,60,69,95,117,110,98,111,110,100,101,100,62,96,32,73,115,32,116,104,101,32,96,101,114,97,96,32,119,104,101,110,32,121,111,117,114,32,116,111,107,101,110,115,32,119,105,108,108,32,98,101,32,34,102,114,101,101,34,32,116,111,32,116,114,97,110,115,102,101,114,47,98,111,110,100,47,118,111,116,101,10,10,84,104,101,32,96,101,114,97,96,32,115,104,111,117,108,100,32,111,110,108,121,32,99,104,97,110,103,101,32,101,118,101,114,121,32,54,48,48,32,98,108,111,99,107,115,44,32,98,117,116,32,99,101,114,116,97,105,110,32,101,118,101,110,116,115,32,109,97,121,32,116,114,105,103,103,101,114,32,97,32,110,101,119,32,101,114,97,46,32,84,111,32,99,97,108,99,117,108,97,116,101,32,119,104,101,110,32,121,111,117,114,32,102,117,110,100,115,32,97,114,101,32,34,102,114,101,101,34],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569180390},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[179,{"id":179,"thread_id":20,"nr_in_thread":6,"current_text":[52,46,32,73,110,32,96,67,104,97,105,110,32,83,116,97,116,101,96,32,45,62,32,96,115,116,97,107,105,110,103,96,32,45,62,32,96,99,117,114,114,101,110,116,69,114,97,40,41,96,46,32,76,101,116,32,111,117,116,112,117,116,32,98,101,32,96,60,69,95,99,117,114,114,101,110,116,62,96,10,53,46,32,73,110,32,96,69,120,112,108,111,114,101,100,96,32,99,111,108,108,101,99,116,32,96,60,98,108,111,99,107,115,95,105,110,95,101,114,97,62,47,54,48,48,96,32,117,110,100,101,114,32,101,114,97,46,10,96,96,96,10,54,48,48,40,60,69,95,117,110,98,111,110,100,101,100,62,32,45,32,60,69,95,99,117,114,114,101,110,116,62,32,45,32,49,41,32,45,32,60,98,108,111,99,107,115,95,105,110,95,101,114,97,62,32,61,32,60,98,108,111,99,107,115,95,108,101,102,116,62,10,40,60,98,108,111,99,107,115,95,108,101,102,116,62,32,42,32,54,41,47,54,48,32,61,32,60,109,105,110,117,116,101,115,95,108,101,102,116,62,10,96,96,96,10,65,102,116,101,114,32,96,60,109,105,110,117,116,101,115,95,108,101,102,116,62,96,32,104,97,115,32,112,97,115,115,101,100,44,32,105,101,46,32,96,60,69,95,99,117,114,114,101,110,116,62,96,32,61,32,96,60,69,95,117,110,98,111,110,100,101,100,62,96,44,32,121,111,117,114,32,116,111,107,101,110,115,32,115,104,111,117,108,100,32,98,101,32,102,114,101,101,46,10,82,101,112,101,97,116,32,115,116,101,112,32,96,51,46,96,32,105,102,32,121,111,117,32,119,97,110,116,32,116,111,32,99,111,110,102,105,114,109,46,10,96,96,96,10,35,32,73,102,32,121,111,117,32,104,97,118,101,32,99,111,109,112,108,101,116,101,100,32,117,110,115,116,97,107,105,110,103,58,10,123,34,115,116,97,115,104,34,58,34,53,89,111,117,114,83,116,97,115,104,65,100,100,114,101,115,115,34,44,34,116,111,116,97,108,34,58,60,116,111,116,95,98,111,110,100,101,100,62,44,34,97,99,116,105,118,101,34,58,44,34,60,97,99,116,95,98,111,110,100,101,100,62,34,58,91,93,125,10,96,96,96,10,10,10,54,46,32,73,110,32,96,69,120,116,114,105,110,115,105,99,115,96,44,32,117,115,105,110,103,32,116,104,101,32,96,99,111,110,116,114,111,108,108,101,114,96,44,32,115,101,108,101,99,116,32,96,115,116,97,107,105,110,103,96,32,45,62,32,96,119,105,116,104,100,114,97,119,85,110,98,111,110,100,101,100,40,41,96,10,10,89,111,117,114,32,116,111,107,101,110,115,32,115,104,111,117,108,100,32,110,111,119,32,98,101,32,34,102,114,101,101,34,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569180432},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[180,{"id":180,"thread_id":20,"nr_in_thread":7,"current_text":[35,35,35,35,32,82,101,115,116,97,114,116,32,118,97,108,105,100,97,116,105,110,103,32,97,102,116,101,114,32,103,101,116,116,105,110,103,32,98,111,111,116,101,100,10,73,102,32,121,111,117,114,32,110,111,100,101,32,115,104,117,116,32,100,111,119,110,32,98,101,102,111,114,101,32,121,111,117,32,104,97,100,32,115,116,111,112,112,101,100,32,118,97,108,105,100,97,116,105,110,103,32,97,110,100,47,111,114,32,116,104,101,32,103,114,97,99,101,32,112,101,114,105,111,100,32,102,111,114,32,96,115,116,97,107,105,110,103,46,99,104,105,108,108,96,32,119,97,115,32,99,111,109,112,108,101,116,101,100,44,32,97,108,108,32,121,111,117,32,110,101,101,100,32,116,111,32,105,115,32,115,116,97,114,116,32,96,118,97,108,105,100,97,116,105,110,103,96,32,97,103,97,105,110,32,102,114,111,109,32,96,86,97,108,105,100,97,116,111,114,32,83,116,97,107,105,110,103,96,46,32,74,117,115,116,32,109,97,107,101,32,115,117,114,101,32,116,104,97,116,32,121,111,117,114,32,110,111,100,101,32,105,115,32,98,97,99,107,32,117,112,44,32,97,110,100,32,116,104,101,32,96,97,117,116,104,111,114,105,116,121,96,32,107,101,121,32,115,104,111,119,105,110,103,32,97,116,32,110,111,100,101,32,115,116,97,114,116,117,112,32,105,115,32,116,104,101,32,115,97,109,101,32,97,115,32,121,111,117,114,32,96,115,101,115,115,105,111,110,96,32,107,101,121,46,10,42,42,78,111,116,101,42,42,10,73,116,32,100,111,101,115,110,39,116,32,109,97,116,116,101,114,32,105,102,32,121,111,117,114,32,96,115,116,97,115,104,96,32,104,97,115,32,97,32,96,98,97,108,97,110,99,101,96,32,60,32,96,98,111,110,100,101,100,96,46,10],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1569180450},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[181,{"id":181,"thread_id":28,"nr_in_thread":1,"current_text":[74,111,121,115,116,114,101,97,109,32,102,111,114,117,109,32,105,115,32,97,119,101,115,111,109,101,44,32,108,101,116,39,115,32,112,111,115,116,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1576639110},"author_id":"5F3j33mjoyVphsZvBCpgHwveHSfYF52PaiSLAJffKFW2gRJv"}],[182,{"id":182,"thread_id":29,"nr_in_thread":1,"current_text":[68,111,32,108,101,116,32,117,115,32,107,110,111,119,32,104,111,119,32,116,111,32,98,101,32,97,32,100,105,115,116,114,105,98,117,116,111,114,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1576761648},"author_id":"5CZ1SFjDJZzCmRjqMwFdmzGVicNvbKhV1GZ8pDEmHdAiuxuT"}],[183,{"id":183,"thread_id":30,"nr_in_thread":1,"current_text":[89,101,115,32,73,32,97,109,32,97,99,116,117,97,108,108,121,32,97,110,32,97,114,116,105,115,116,32,97,110,100,32,116,104,105,115,32,105,115,32,116,104,101,32,98,101,115,116,32,73,32,99,97,110,32,100,111,32,119,105,116,104,32,99,114,101,97,116,105,118,105,116,121,46],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1579627500},"author_id":"5G9jLNPdnfPR6zuLroCgLu25TmcErbCinutRop1KPhnMUmkC"}],[184,{"id":184,"thread_id":30,"nr_in_thread":2,"current_text":[116,101,115,116,32,114,101,112,108,121,32,40,115,110,101,97,107,121,32,101,100,105,116,41],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1579628082},"author_id":"5G9jLNPdnfPR6zuLroCgLu25TmcErbCinutRop1KPhnMUmkC"}],[185,{"id":185,"thread_id":30,"nr_in_thread":3,"current_text":[102,111,111,32,98,97,114,32,98,97,122],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1579632180},"author_id":"5G9jLNPdnfPR6zuLroCgLu25TmcErbCinutRop1KPhnMUmkC"}],[186,{"id":186,"thread_id":31,"nr_in_thread":1,"current_text":[98,101,116,97,32,116,104,114,101,97,100],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1579636566},"author_id":"5G9jLNPdnfPR6zuLroCgLu25TmcErbCinutRop1KPhnMUmkC"}],[187,{"id":187,"thread_id":31,"nr_in_thread":2,"current_text":[116,101,115,116,32,114,101,112,108,121],"moderation":null,"text_change_history":[],"created_at":{"block":1,"time":1579636674},"author_id":"5G9jLNPdnfPR6zuLroCgLu25TmcErbCinutRop1KPhnMUmkC"}]],"threads":[[1,{"id":1,"title":[67,111,100,101,32,111,102,32,67,111,110,100,117,99,116],"category_id":1,"nr_in_category":1,"moderation":null,"num_unmoderated_posts":1,"num_moderated_posts":0,"created_at":{"block":1,"time":1561406472},"author_id":"5DaDUnNVzZPwK9KLwyPFgeSbc9Xeh6G39A2oq36tiV9aEzcx"}],[2,{"id":2,"title":[84,104,105,115,32,105,115,32,116,104,101,32,102,105,114,115,116,32,112,111,115,116,32,101,118,101,114,32,102,111,114,32,116,104,101,32,74,111,121,115,116,114,101,97,109,32,83,104,105,116,32,80,111,115,116,105,110,103,32,67,111,109,109,117,110,105,116,121],"category_id":3,"nr_in_category":1,"moderation":null,"num_unmoderated_posts":6,"num_moderated_posts":0,"created_at":{"block":1,"time":1561407198},"author_id":"5CEw8JxuM1kh34VoocG9bqqjqs98pdA7fG5uaTtPdjzShqFb"}],[3,{"id":3,"title":[72,111,119,32,116,111,32,83,116,97,114,116,32,65,32,83,116,111,114,97,103,101,32,78,111,100,101,63],"category_id":1,"nr_in_category":2,"moderation":null,"num_unmoderated_posts":1,"num_moderated_posts":0,"created_at":{"block":1,"time":1561407264},"author_id":"5CEw8JxuM1kh34VoocG9bqqjqs98pdA7fG5uaTtPdjzShqFb"}],[4,{"id":4,"title":[67,111,110,116,101,110,116,32,67,117,114,97,116,111,114],"category_id":2,"nr_in_category":1,"moderation":null,"num_unmoderated_posts":2,"num_moderated_posts":0,"created_at":{"block":1,"time":1561467588},"author_id":"5G3jMHcbqgzyqCiiBMZ26LFZoqTPw77XzMqwj8cyrb58ybhE"}],[5,{"id":5,"title":[67,114,121,112,116,111,99,117,114,114,101,110,99,105,101,115],"category_id":3,"nr_in_category":2,"moderation":null,"num_unmoderated_posts":2,"num_moderated_posts":0,"created_at":{"block":1,"time":1561508412},"author_id":"5H8kTuZp2T2geceCuaEQ29Jg8fFjCJkwGQgZjRhhGLxFVMSC"}],[6,{"id":6,"title":[73,110,116,114,111,100,117,99,116,105,111,110,58,32,66,101,100,101,104,111,32,77,101,110,100,101,114],"category_id":1,"nr_in_category":3,"moderation":null,"num_unmoderated_posts":2,"num_moderated_posts":0,"created_at":{"block":1,"time":1561550916},"author_id":"5GBonukAQsiG7pr7UFNUYW3BYudduTKWokKCJPy1bMeu7ZhB"}],[7,{"id":7,"title":[83,116,97,107,101,100,32,80,111,100,99,97,115,116,32,45,32,69,112,54],"category_id":3,"nr_in_category":3,"moderation":null,"num_unmoderated_posts":3,"num_moderated_posts":0,"created_at":{"block":1,"time":1561711008},"author_id":"5EtFzT8ZJN7VPKfcxjsQhtJUhHzuPsUFMaahPLGoaw5odaqj"}],[8,{"id":8,"title":[73,109,112,114,111,118,105,110,103,32,70,111,114,117,109,32,70,117,110,99,116,105,111,110,97,108,105,116,121,63],"category_id":1,"nr_in_category":4,"moderation":null,"num_unmoderated_posts":7,"num_moderated_posts":0,"created_at":{"block":1,"time":1562161002},"author_id":"5GBonukAQsiG7pr7UFNUYW3BYudduTKWokKCJPy1bMeu7ZhB"}],[9,{"id":9,"title":[68,105,115,116,114,105,98,117,116,111,114,32,40,66,97,110,100,119,105,100,116,104,32,80,114,111,118,105,100,101,114,41],"category_id":2,"nr_in_category":2,"moderation":{"moderated_at":{"block":1,"time":1563035028},"moderator_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd","rationale":[77,101,97,110,116,32,116,111,32,98,101,32,97,32,115,117,98,99,97,116,101,103,111,114,121,46,46,46,46]},"num_unmoderated_posts":1,"num_moderated_posts":0,"created_at":{"block":1,"time":1563034344},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[10,{"id":10,"title":[74,111,121,115,116,114,101,97,109,32,85,110,111,102,102,105,99,105,97,108,32,84,117,116,111,114,105,97,108,32,86,105,100,101,111],"category_id":1,"nr_in_category":5,"moderation":null,"num_unmoderated_posts":3,"num_moderated_posts":0,"created_at":{"block":1,"time":1563038424},"author_id":"5H8kTuZp2T2geceCuaEQ29Jg8fFjCJkwGQgZjRhhGLxFVMSC"}],[11,{"id":11,"title":[65,98,111,117,116,32,74,111,121,115,116,114,101,97,109,32,66,111,117,110,116,105,101,115],"category_id":10,"nr_in_category":1,"moderation":null,"num_unmoderated_posts":15,"num_moderated_posts":0,"created_at":{"block":1,"time":1568847786},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[12,{"id":12,"title":[66,111,117,110,116,121,32,35,48,32,45,32,70,105,120,32,98,114,111,107,101,110,32,108,105,110,107,115,44,32,102,111,114,109,97,116,116,105,110,103,44,32,101,116,99,32,105,110,32,82,69,65,68,77,69,115,32,45,32,36,50,47,102,105,120],"category_id":10,"nr_in_category":2,"moderation":null,"num_unmoderated_posts":5,"num_moderated_posts":0,"created_at":{"block":1,"time":1568847810},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[13,{"id":13,"title":[66,111,117,110,116,121,32,35,49,32,45,32,73,109,112,114,111,118,101,32,110,101,116,119,111,114,107,105,110,103,32,43,32,112,114,111,109,111,116,105,111,110,97,108,32,99,97,109,112,97,105,103,110,32,45,32,36,53,48,48,42],"category_id":10,"nr_in_category":3,"moderation":null,"num_unmoderated_posts":9,"num_moderated_posts":0,"created_at":{"block":1,"time":1568847846},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[14,{"id":14,"title":[66,111,117,110,116,121,32,35,50,32,45,32,76,105,115,116,32,111,102,32,109,101,100,105,97,32,102,105,108,101,32,116,121,112,101,115,47,101,120,116,101,110,115,105,111,110,115,32,112,108,97,121,97,98,108,101,32,45,32,36,53,48],"category_id":10,"nr_in_category":4,"moderation":null,"num_unmoderated_posts":2,"num_moderated_posts":0,"created_at":{"block":1,"time":1568847870},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[15,{"id":15,"title":[66,111,117,110,116,121,32,35,51,32,45,32,67,111,109,112,105,108,101,32,108,105,115,116,32,111,102,32,102,114,101,101,32,109,101,100,105,97,32,97,110,100,32,109,101,116,97,100,97,116,97,32,115,111,117,114,99,101,115,32,45,32,36,50,48,48,42],"category_id":10,"nr_in_category":5,"moderation":null,"num_unmoderated_posts":6,"num_moderated_posts":0,"created_at":{"block":1,"time":1568847912},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[16,{"id":16,"title":[83,101,116,117,112,32,89,111,117,114,32,86,97,108,105,100,97,116,111,114,32,40,87,105,110,100,111,119,115,41],"category_id":4,"nr_in_category":1,"moderation":null,"num_unmoderated_posts":15,"num_moderated_posts":0,"created_at":{"block":1,"time":1568899470},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[17,{"id":17,"title":[83,101,116,117,112,32,89,111,117,114,32,86,97,108,105,100,97,116,111,114,32,40,76,105,110,117,120,41],"category_id":4,"nr_in_category":2,"moderation":null,"num_unmoderated_posts":15,"num_moderated_posts":0,"created_at":{"block":1,"time":1568899500},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[18,{"id":18,"title":[83,101,116,117,112,32,89,111,117,114,32,86,97,108,105,100,97,116,111,114,32,40,77,97,99,41],"category_id":4,"nr_in_category":3,"moderation":null,"num_unmoderated_posts":14,"num_moderated_posts":0,"created_at":{"block":1,"time":1568899530},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[19,{"id":19,"title":[65,100,118,97,110,99,101,100,32,40,82,117,110,32,65,115,32,83,101,114,118,105,99,101,44,32,83,101,116,116,105,110,103,115,32,97,110,100,32,78,111,109,105,110,97,116,105,110,103,41],"category_id":4,"nr_in_category":4,"moderation":null,"num_unmoderated_posts":14,"num_moderated_posts":0,"created_at":{"block":1,"time":1568899668},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[20,{"id":20,"title":[84,114,111,117,98,108,101,115,104,111,111,116,105,110,103],"category_id":4,"nr_in_category":5,"moderation":null,"num_unmoderated_posts":7,"num_moderated_posts":0,"created_at":{"block":1,"time":1568899704},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[21,{"id":21,"title":[83,101,116,117,112,32,89,111,117,114,32,83,116,111,114,97,103,101,32,80,114,111,118,105,100,101,114],"category_id":5,"nr_in_category":1,"moderation":null,"num_unmoderated_posts":25,"num_moderated_posts":0,"created_at":{"block":1,"time":1568899968},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[22,{"id":22,"title":[84,114,111,117,98,108,101,115,104,111,111,116,105,110,103],"category_id":5,"nr_in_category":2,"moderation":null,"num_unmoderated_posts":9,"num_moderated_posts":0,"created_at":{"block":1,"time":1568899992},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[23,{"id":23,"title":[82,101,103,105,115,116,101,114,105,110,103,32,70,111,114,32,77,101,109,98,101,114,115,104,105,112],"category_id":6,"nr_in_category":1,"moderation":null,"num_unmoderated_posts":3,"num_moderated_posts":0,"created_at":{"block":1,"time":1568900298},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[24,{"id":24,"title":[71,101,116,32,83,116,97,114,116,101,100,32,65,115,32,65,32,67,111,117,110,99,105,108,32,77,101,109,98,101,114],"category_id":6,"nr_in_category":2,"moderation":null,"num_unmoderated_posts":8,"num_moderated_posts":0,"created_at":{"block":1,"time":1568900322},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[25,{"id":25,"title":[84,114,111,117,98,108,101,115,104,111,111,116,105,110,103],"category_id":6,"nr_in_category":3,"moderation":null,"num_unmoderated_posts":1,"num_moderated_posts":0,"created_at":{"block":1,"time":1568900340},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[26,{"id":26,"title":[66,117,103,32,82,101,112,111,114,116,101,114,115],"category_id":11,"nr_in_category":1,"moderation":null,"num_unmoderated_posts":3,"num_moderated_posts":0,"created_at":{"block":1,"time":1568900400},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[27,{"id":27,"title":[66,117,105,108,100,101,114,115,32,40,67,111,110,116,114,105,98,117,116,111,114,115,41],"category_id":11,"nr_in_category":2,"moderation":null,"num_unmoderated_posts":1,"num_moderated_posts":0,"created_at":{"block":1,"time":1568900484},"author_id":"5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd"}],[28,{"id":28,"title":[74,111,121,115,116,114,101,97,109,32,102,111,114,117,109,32,105,115,32,97,119,101,115,111,109,101],"category_id":1,"nr_in_category":6,"moderation":null,"num_unmoderated_posts":1,"num_moderated_posts":0,"created_at":{"block":1,"time":1576639110},"author_id":"5F3j33mjoyVphsZvBCpgHwveHSfYF52PaiSLAJffKFW2gRJv"}],[29,{"id":29,"title":[72,111,119,32,99,97,110,32,119,101,32,98,101,32,100,105,115,116,114,105,98,117,116,111,114,63],"category_id":9,"nr_in_category":1,"moderation":null,"num_unmoderated_posts":1,"num_moderated_posts":0,"created_at":{"block":1,"time":1576761648},"author_id":"5CZ1SFjDJZzCmRjqMwFdmzGVicNvbKhV1GZ8pDEmHdAiuxuT"}],[30,{"id":30,"title":[84,101,115,116,32,116,104,114,101,97,100],"category_id":1,"nr_in_category":7,"moderation":null,"num_unmoderated_posts":3,"num_moderated_posts":0,"created_at":{"block":1,"time":1579627500},"author_id":"5G9jLNPdnfPR6zuLroCgLu25TmcErbCinutRop1KPhnMUmkC"}],[31,{"id":31,"title":[84,101,115,116,32,116,104,114,101,97,100,32,98,101,116,97],"category_id":1,"nr_in_category":8,"moderation":null,"num_unmoderated_posts":2,"num_moderated_posts":0,"created_at":{"block":1,"time":1579636566},"author_id":"5G9jLNPdnfPR6zuLroCgLu25TmcErbCinutRop1KPhnMUmkC"}]]}
\ No newline at end of file
diff --git a/node/res/forum_data_empty.json b/node/res/forum_data_empty.json
new file mode 100644
index 0000000000..22599fb4b7
--- /dev/null
+++ b/node/res/forum_data_empty.json
@@ -0,0 +1 @@
+{ "categories":[], "posts":[], "threads":[] }
\ No newline at end of file
diff --git a/node/src/chain_spec.rs b/node/src/chain_spec.rs
new file mode 100644
index 0000000000..c11a033d4c
--- /dev/null
+++ b/node/src/chain_spec.rs
@@ -0,0 +1,301 @@
+// Copyright 2019 Joystream Contributors
+// This file is part of Joystream node.
+
+// Joystream node 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.
+
+// Joystream node 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 Joystream node. If not, see .
+
+use node_runtime::{
+ versioned_store::InputValidationLengthConstraint as VsInputValidation, ActorsConfig,
+ AuthorityDiscoveryConfig, BabeConfig, Balance, BalancesConfig, ContentWorkingGroupConfig,
+ CouncilConfig, CouncilElectionConfig, DataObjectStorageRegistryConfig,
+ DataObjectTypeRegistryConfig, ElectionParameters, GrandpaConfig, ImOnlineConfig, IndicesConfig,
+ MembersConfig, Perbill, SessionConfig, SessionKeys, Signature, StakerStatus, StakingConfig,
+ SudoConfig, SystemConfig, VersionedStoreConfig, DAYS, WASM_BINARY,
+};
+pub use node_runtime::{AccountId, GenesisConfig};
+use primitives::{sr25519, Pair, Public};
+use runtime_primitives::traits::{IdentifyAccount, Verify};
+
+use babe_primitives::AuthorityId as BabeId;
+use grandpa_primitives::AuthorityId as GrandpaId;
+use im_online::sr25519::AuthorityId as ImOnlineId;
+use serde_json as json;
+use substrate_service;
+
+type AccountPublic = ::Signer;
+
+/// Specialized `ChainSpec`. This is a specialization of the general Substrate ChainSpec type.
+pub type ChainSpec = substrate_service::ChainSpec;
+
+/// The chain specification option. This is expected to come in from the CLI and
+/// is little more than one of a number of alternatives which can easily be converted
+/// from a string (`--chain=...`) into a `ChainSpec`.
+#[derive(Clone, Debug)]
+pub enum Alternative {
+ /// Whatever the current runtime is, with just Alice as an auth.
+ Development,
+ /// Whatever the current runtime is, with simple Alice/Bob auths.
+ LocalTestnet,
+}
+
+/// Helper function to generate a crypto pair from seed
+pub fn get_from_seed(seed: &str) -> ::Public {
+ TPublic::Pair::from_string(&format!("//{}", seed), None)
+ .expect("static values are valid; qed")
+ .public()
+}
+
+/// Helper function to generate an account ID from seed
+pub fn get_account_id_from_seed(seed: &str) -> AccountId
+where
+ AccountPublic: From<::Public>,
+{
+ AccountPublic::from(get_from_seed::(seed)).into_account()
+}
+
+/// Helper function to generate stash, controller and session key from seed
+pub fn get_authority_keys_from_seed(
+ seed: &str,
+) -> (AccountId, AccountId, GrandpaId, BabeId, ImOnlineId) {
+ (
+ get_account_id_from_seed::(&format!("{}//stash", seed)),
+ get_account_id_from_seed::(seed),
+ get_from_seed::(seed),
+ get_from_seed::(seed),
+ get_from_seed::(seed),
+ )
+}
+
+fn session_keys(grandpa: GrandpaId, babe: BabeId, im_online: ImOnlineId) -> SessionKeys {
+ SessionKeys {
+ grandpa,
+ babe,
+ im_online,
+ }
+}
+
+impl Alternative {
+ /// Get an actual chain config from one of the alternatives.
+ pub(crate) fn load(self) -> Result {
+ Ok(match self {
+ Alternative::Development => ChainSpec::from_genesis(
+ "Development",
+ "dev",
+ || {
+ testnet_genesis(
+ vec![get_authority_keys_from_seed("Alice")],
+ get_account_id_from_seed::("Alice"),
+ vec![
+ get_account_id_from_seed::("Alice"),
+ get_account_id_from_seed::("Bob"),
+ get_account_id_from_seed::("Alice//stash"),
+ get_account_id_from_seed::("Bob//stash"),
+ ],
+ )
+ },
+ vec![],
+ None,
+ None,
+ Some(chain_spec_properties()),
+ None,
+ ),
+ Alternative::LocalTestnet => ChainSpec::from_genesis(
+ "Local Testnet",
+ "local_testnet",
+ || {
+ testnet_genesis(
+ vec![
+ get_authority_keys_from_seed("Alice"),
+ get_authority_keys_from_seed("Bob"),
+ ],
+ get_account_id_from_seed::("Alice"),
+ vec![
+ get_account_id_from_seed::("Alice"),
+ get_account_id_from_seed::("Bob"),
+ get_account_id_from_seed::("Charlie"),
+ get_account_id_from_seed::("Dave"),
+ get_account_id_from_seed::("Eve"),
+ get_account_id_from_seed::("Ferdie"),
+ get_account_id_from_seed::("Alice//stash"),
+ get_account_id_from_seed::("Bob//stash"),
+ get_account_id_from_seed::("Charlie//stash"),
+ get_account_id_from_seed::("Dave//stash"),
+ get_account_id_from_seed::("Eve//stash"),
+ get_account_id_from_seed::("Ferdie//stash"),
+ ],
+ )
+ },
+ vec![],
+ None,
+ None,
+ Some(chain_spec_properties()),
+ None,
+ ),
+ })
+ }
+
+ pub(crate) fn from(s: &str) -> Option {
+ match s {
+ "dev" => Some(Alternative::Development),
+ "local" => Some(Alternative::LocalTestnet),
+ _ => None,
+ }
+ }
+}
+
+fn new_vs_validation(min: u16, max_min_diff: u16) -> VsInputValidation {
+ return VsInputValidation { min, max_min_diff };
+}
+
+pub fn chain_spec_properties() -> json::map::Map {
+ let mut properties: json::map::Map = json::map::Map::new();
+ properties.insert(
+ String::from("tokenDecimals"),
+ json::Value::Number(json::Number::from(0)),
+ );
+ properties.insert(
+ String::from("tokenSymbol"),
+ json::Value::String(String::from("JOY")),
+ );
+ properties
+}
+
+pub fn testnet_genesis(
+ initial_authorities: Vec<(AccountId, AccountId, GrandpaId, BabeId, ImOnlineId)>,
+ root_key: AccountId,
+ endowed_accounts: Vec,
+) -> GenesisConfig {
+ const CENTS: Balance = 1;
+ const DOLLARS: Balance = 100 * CENTS;
+ const STASH: Balance = 20 * DOLLARS;
+ const ENDOWMENT: Balance = 100_000 * DOLLARS;
+
+ GenesisConfig {
+ system: Some(SystemConfig {
+ code: WASM_BINARY.to_vec(),
+ changes_trie_config: Default::default(),
+ }),
+ balances: Some(BalancesConfig {
+ balances: endowed_accounts
+ .iter()
+ .cloned()
+ .map(|k| (k, ENDOWMENT))
+ .chain(initial_authorities.iter().map(|x| (x.0.clone(), STASH)))
+ .collect(),
+ vesting: vec![],
+ }),
+ indices: Some(IndicesConfig { ids: vec![] }),
+ session: Some(SessionConfig {
+ keys: initial_authorities
+ .iter()
+ .map(|x| {
+ (
+ x.0.clone(),
+ session_keys(x.2.clone(), x.3.clone(), x.4.clone()),
+ )
+ })
+ .collect::>(),
+ }),
+ staking: Some(StakingConfig {
+ current_era: 0,
+ validator_count: 20,
+ minimum_validator_count: 1,
+ stakers: initial_authorities
+ .iter()
+ .map(|x| (x.0.clone(), x.1.clone(), STASH, StakerStatus::Validator))
+ .collect(),
+ invulnerables: initial_authorities.iter().map(|x| x.0.clone()).collect(),
+ slash_reward_fraction: Perbill::from_percent(10),
+ ..Default::default()
+ }),
+ sudo: Some(SudoConfig {
+ key: root_key.clone(),
+ }),
+ babe: Some(BabeConfig {
+ authorities: vec![],
+ }),
+ im_online: Some(ImOnlineConfig { keys: vec![] }),
+ authority_discovery: Some(AuthorityDiscoveryConfig { keys: vec![] }),
+ grandpa: Some(GrandpaConfig {
+ authorities: vec![],
+ }),
+ council: Some(CouncilConfig {
+ active_council: vec![],
+ term_ends_at: 1,
+ }),
+ election: Some(CouncilElectionConfig {
+ auto_start: true,
+ election_parameters: ElectionParameters {
+ announcing_period: 3 * DAYS,
+ voting_period: 1 * DAYS,
+ revealing_period: 1 * DAYS,
+ council_size: 12,
+ candidacy_limit: 25,
+ min_council_stake: 10 * DOLLARS,
+ new_term_duration: 14 * DAYS,
+ min_voting_stake: 1 * DOLLARS,
+ },
+ }),
+ members: Some(MembersConfig {
+ default_paid_membership_fee: 100u128,
+ members: crate::members_config::initial_members(),
+ }),
+ forum: Some(crate::forum_config::from_serialized::create(
+ endowed_accounts[0].clone(),
+ )),
+ data_object_type_registry: Some(DataObjectTypeRegistryConfig {
+ first_data_object_type_id: 1,
+ }),
+ data_object_storage_registry: Some(DataObjectStorageRegistryConfig {
+ first_relationship_id: 1,
+ }),
+ actors: Some(ActorsConfig {
+ enable_storage_role: true,
+ request_life_time: 300,
+ }),
+ versioned_store: Some(VersionedStoreConfig {
+ class_by_id: vec![],
+ entity_by_id: vec![],
+ next_class_id: 1,
+ next_entity_id: 1,
+ property_name_constraint: new_vs_validation(1, 99),
+ property_description_constraint: new_vs_validation(1, 999),
+ class_name_constraint: new_vs_validation(1, 99),
+ class_description_constraint: new_vs_validation(1, 999),
+ }),
+ content_wg: Some(ContentWorkingGroupConfig {
+ mint_capacity: 100000,
+ curator_opening_by_id: vec![],
+ next_curator_opening_id: 0,
+ curator_application_by_id: vec![],
+ next_curator_application_id: 0,
+ channel_by_id: vec![],
+ next_channel_id: 1,
+ channel_id_by_handle: vec![],
+ curator_by_id: vec![],
+ next_curator_id: 0,
+ principal_by_id: vec![],
+ next_principal_id: 0,
+ channel_creation_enabled: true, // there is no extrinsic to change it so enabling at genesis
+ unstaker_by_stake_id: vec![],
+ channel_handle_constraint: crate::forum_config::new_validation(5, 20),
+ channel_description_constraint: crate::forum_config::new_validation(1, 1024),
+ opening_human_readable_text: crate::forum_config::new_validation(1, 2048),
+ curator_application_human_readable_text: crate::forum_config::new_validation(1, 2048),
+ curator_exit_rationale_text: crate::forum_config::new_validation(1, 2048),
+ channel_avatar_constraint: crate::forum_config::new_validation(5, 1024),
+ channel_banner_constraint: crate::forum_config::new_validation(5, 1024),
+ channel_title_constraint: crate::forum_config::new_validation(5, 1024),
+ }),
+ }
+}
diff --git a/node/src/cli.rs b/node/src/cli.rs
new file mode 100644
index 0000000000..78339c7a65
--- /dev/null
+++ b/node/src/cli.rs
@@ -0,0 +1,128 @@
+use crate::chain_spec;
+use crate::new_full_start;
+use crate::service;
+use futures::{future, sync::oneshot, Future};
+use log::info;
+use std::cell::RefCell;
+pub use substrate_cli::{error, IntoExit, VersionInfo};
+use substrate_cli::{informant, parse_and_prepare, NoCustom, ParseAndPrepare};
+use substrate_service::{AbstractService, Configuration, Roles as ServiceRoles};
+use tokio::runtime::Runtime;
+
+/// Parse command line arguments into service configuration.
+pub fn run(args: I, exit: E, version: VersionInfo) -> error::Result<()>
+where
+ I: IntoIterator- ,
+ T: Into + Clone,
+ E: IntoExit,
+{
+ type Config = Configuration<(), T>;
+ match parse_and_prepare::(&version, "joystream-node", args) {
+ ParseAndPrepare::Run(cmd) => cmd.run(
+ load_spec,
+ exit,
+ |exit, _cli_args, _custom_args, config: Config<_>| {
+ info!("{}", version.name);
+ info!(" version {}", config.full_version());
+ info!(" by {}, 2019", version.author);
+ info!("Chain specification: {}", config.chain_spec.name());
+ info!("Node name: {}", config.name);
+ info!("Roles: {:?}", config.roles);
+ let runtime = Runtime::new().map_err(|e| format!("{:?}", e))?;
+ match config.roles {
+ ServiceRoles::LIGHT => run_until_exit(
+ runtime,
+ service::new_light(config).map_err(|e| format!("{:?}", e))?,
+ exit,
+ ),
+ _ => run_until_exit(
+ runtime,
+ service::new_full(config).map_err(|e| format!("{:?}", e))?,
+ exit,
+ ),
+ }
+ .map_err(|e| format!("{:?}", e))
+ },
+ ),
+ ParseAndPrepare::BuildSpec(cmd) => cmd.run::(load_spec),
+ ParseAndPrepare::ExportBlocks(cmd) => cmd.run_with_builder(
+ |config: Config<_>| Ok(new_full_start!(config).0),
+ load_spec,
+ exit,
+ ),
+ ParseAndPrepare::ImportBlocks(cmd) => cmd.run_with_builder(
+ |config: Config<_>| Ok(new_full_start!(config).0),
+ load_spec,
+ exit,
+ ),
+ ParseAndPrepare::PurgeChain(cmd) => cmd.run(load_spec),
+ ParseAndPrepare::RevertChain(cmd) => {
+ cmd.run_with_builder(|config: Config<_>| Ok(new_full_start!(config).0), load_spec)
+ }
+ ParseAndPrepare::CustomCommand(_) => Ok(()),
+ }?;
+
+ Ok(())
+}
+
+fn load_spec(id: &str) -> Result